848 questions
0
votes
1
answer
89
views
How to convert invalid blob type to a valid blob type?
I use the below code to copy the blob.
def _upload_small_block_blob(self, container_name, blob_name, new_block_blob_name):
try:
# Download the small blob using the SDK
...
0
votes
1
answer
25
views
blobstore.BlobstoreUploadHandler uploaded file not available on request.environ
I'm following the Google Blobstore api documentation for flask (which works as expected) and trying to get the uploaded file info:
class PhotoUploadHandler(blobstore.BlobstoreUploadHandler):
...
-2
votes
1
answer
82
views
What is the Correct Approach for Uploading Files to Google App Engine Blobstore Without a Browser? [closed]
I'm working on a file upload feature in a Java web application running on Google App Engine (GAE). The application uses the Blobstore API for handling file uploads. However, when trying to upload a ...
0
votes
1
answer
2k
views
How to add field mapping in Azure AI Search Indexer for nested Json Array
I want to use Azure AI Search to do a full-text search on JSON documents stored in Azure blob storage. Everything is working fine except field mappings for nested JSON arrays. Below is the structure ...
0
votes
1
answer
148
views
%SourceFileName% macro does not work with Blob Storage adapter bizTalk2020
I have a flow where receive location is blob storage and I use Azure Blob Storage adapter. Then I don't have any orchestrations, mapping and so on, just a send port as file share adapter.
In the file ...
0
votes
0
answers
55
views
blobstore in GAE in a cross-project scenario does not return blob_info
I have two projects on google cloud platform. The first, project A, in python 2, uses the standard google appengine runtime. The second, project B, in python 3, uses version 2 of google app engine. It ...
0
votes
1
answer
138
views
How much long period azure blobs can be archived?
I would like to archived the blobs. But not able to find the official period till when it will be archived (Max period of archival).Is it long life archived or will be deleted after some years ?
0
votes
1
answer
124
views
Using Azure BLOBs without waiting for them to be returned
I'm using Azure BLOBs for the first time in a serious way. I have used it in the fast as a CDN and one thing I remember is it has significant latency at times. So I want to avoind that latency ...
0
votes
0
answers
100
views
download images from server throws an error
I had uploaded my laravel project on hosting server, the images was stored in laravel/public folder then the generated url saved in my database like as: public/image.jpg, how can I retrieve the images ...
0
votes
1
answer
399
views
Can i change count limit of versions for azure blob storage?
By default one blob can have 1000 versions, but i need to storage only 10 versions. How can i do it?
I expected property or etc, for limit versions
0
votes
1
answer
366
views
Azure Function to get image from Blob Storage stopped working on Local Azure Emulator (Azurite)
Simple Azure function to get image from storage...
[FunctionName("GetImage")]
public static IActionResult GetImage(
[HttpTrigger(AuthorizationLevel.Anonymous, "...
0
votes
1
answer
52
views
Java blobstore method completeMultipartUpload throw null pointer exception for checkNotNull
I have a problem with saving .csv files by multi parts. In this part of the code:
@Override
public String completeMultipartUpload(MultipartUpload mpu, List<MultipartPart> parts) {
...
0
votes
1
answer
648
views
SFTP to Azure Blob Store
I am trying to copy file from SFTP to Azure Blob store using SFTPToWasbOperator. I am getting error. It seems like I'm doing something wrong, but I can't figure out what it is. Could someone please ...
0
votes
1
answer
5k
views
How to resolve Path Traversal vulnerability for the below code
const downloadFile = blobstoreRouter.get('/blobstore/download/:filename', (req, res) => {
var localFile = path.join(__dirname, '..', escape(req.params.filename));
var file = require('fs')....
0
votes
1
answer
153
views
Store details of Blobkey for images stored in google cloud storage
I am trying to migrate an application from the google app engine standard environment first generation(python 2.7 runtimes) to second-generation ( python 3 runtimes).
The application serves the user-...