All Questions
Tagged with blobstore azure-blob-storage
14 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
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
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
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, "...
3
votes
1
answer
3k
views
Excel Power Query - Is it possible to connect to Azure Blob Storage with SAS authentication or Azure AD account
I am accessing a container from a Azure Blob Storage with Excel, we connect through "New Query" but only gives the option to access with the Account Key.
After logging the permissions are saved in ...
0
votes
1
answer
172
views
Unable to Read Blob Storage account Directories and sub Directories
I am trying to read directories and sub directories of the storage account and unable to read, below is the sample code and attached blob container structure snapshot
sample code:
...
2
votes
1
answer
2k
views
Interrupting a transfer from Azure Blob storage
I have rather large files to retrieve from blob storage and I'm thinking of resiliency. If it fails to download, e.g. the network connection suffers a temporary interruption, it needs to retry x ...
1
vote
1
answer
281
views
Image upload to Azure storage from xamarin.ios
How can I upload image blob to azure storage from xamarin.ios?
from the doc, i have studied this the method UploadFromFileAsync() works but it needs image as a string path, and i have image as a ...
-1
votes
1
answer
100
views
Micorsoft Azure blob storage secruity
We are using MS Azure and developing SAAS based Multi-Tenant Application.
For each Tenant we have BLOB Container Private and assigned to each Tenant.
Also there is a requirement that Client can ...
0
votes
1
answer
395
views
how to migrate google blobstore chunk files to azure blob store
I am migrating my google app engine project to windows azure app platform.Please help me to migrate the all google app engine blobstore files to Azure blobstore.
I have one solution with python.But I ...
48
votes
10
answers
60k
views
How to clean an Azure storage Blob container?
I just want to clean (dump, zap, del .) an Azure Blob container. How can I do that?
Note: The container is used by IIS (running Webrole) logs (wad-iis-logfiles).
1
vote
3
answers
5k
views
how to search for a specific file in blob storage
I am kind of new to Blob storage and i need to access a specific file from blob storage.
i.e when i type in a specific folder it should list out all the blobs underneath it.
Can anyone help me with ...