azure-storage Questions
4
Solved
I have these two objects for Azure Blob Storage access and want to use them in ASP.NET MVC application.
CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
CloudBlobContainer cont...
Teeny asked 29/3, 2012 at 21:52
3
Solved
Azure billing is based on the size of used space. Now I need to know the details. What is the size of each storage object in my storage (blob container, single table)?
It's easy to write a code th...
Sisterinlaw asked 30/11, 2012 at 9:0
4
Solved
I got this exception when I run my application. It happens also in the real Azure blob storage.
I've caught with Fiddler the request that creates this problem:
GET http://127.0.0.1:10000/devstore...
Ashely asked 23/2, 2011 at 16:55
2
I have so far only found examples on how to create a volume on the host machine, e.g:
version: "3.3"
services:
mysql:
image: mysql
volumes:
- db-data:/var/lib/mysql/data
volumes:
db-data:
S...
Licentiate asked 20/6, 2018 at 10:35
4
Solved
Previously when using Azure Blob Storage SDK V11, if you wanted to Create a container but were unsure if the container existed you could use CreateIfNotExists.
However in version V12, CreateIfNotE...
Deontology asked 9/4, 2020 at 19:28
8
Solved
In the old 1.7 storage client there was a CloudBlob.CopyFromBlob(otherBlob) method, but it does not seem to be present in the 2.0 version. What is the recommended best practice for copying blobs? I...
Prospect asked 4/1, 2013 at 6:17
3
I have created the storage account along container in Azure using ARM templates. But I want to create folder structure inside the container using PowerShell script.
For example:
Folder1>SubFolde...
Drypoint asked 24/9, 2020 at 15:27
7
I understand that MS Azure Queue service document http://msdn.microsoft.com/en-us/library/windowsazure/dd179363.aspx says first out (FIFO) behavior is not guaranteed.
However, our application is s...
Secondguess asked 15/9, 2011 at 11:27
2
I am using Azure Storage SDK v12 and I am looking for a way to open a stream to specific Blob, like in the previous versions:
CloudBlobClient cloudBlobClient = account.CreateCloudBlobClient();
Clo...
Macdonald asked 27/7, 2020 at 20:16
6
Solved
I know that the Azure Storage entities (blobs, tables and queues) have a built-in resiliency, meaning that they are replicated to 3 different servers in the same datacenter. On top of that they may...
Bridging asked 19/7, 2012 at 13:24
3
Solved
I have a container named "pictures", and have some folders named "Folder1", "Folder2" inside of it. So files of my blob will be addressed like this "http://optimus.blob.core.windows.net/pictures/Fo...
Regression asked 29/5, 2015 at 7:14
2
Solved
I am implementing an API to store files in Azure Blob Storage.
I am using the Microsoft library to validate the container and blob name.
NameValidator.ValidateContainerName(containerName);
NameV...
Morley asked 18/10, 2018 at 15:38
2
Solved
I have a Use Case where I need to queue a select number of messages when the current queue length drops below a specified value. Since I'm running in Azure, I'm trying to use the RetrieveApproximat...
Flute asked 20/6, 2012 at 23:49
1
Solved
I have a requirement to get the files from Azure storage in the byte array format using new package Azure.Storage.Blobs. I am unable to find the way to do it in a C#.
public byte[] GetFileFromAzure...
Equivoque asked 2/12, 2020 at 21:53
3
Solved
To see how static websites work in Azure storage, I created a basic angular app and uploaded the files in dist folder to the static website. But when I try to access the URL, I get a 404 error mess...
Warfore asked 9/5, 2019 at 10:40
2
Solved
In my app i want all the blob of my container but in my code (as below) there is not Listblob() method in CloudBlobContainer variable container. Am i missing something?
var credentials = new Stora...
Barrow asked 16/10, 2014 at 4:54
6
Solved
Is it possible to save a blob with a name of a GUID (or anything else) but when a user requests the files URI http://me.blob.core.windows.net/mycontainer/9BB34783-8F06-466D-AC20-37A03E504E3F the do...
Submarginal asked 11/8, 2011 at 14:28
3
I have initialized a azure storage emulator on my local box but I am unable to connect to it from either visual studio or Azure storage explorer. What am i missing?
Error when i try to connect to ...
Aeon asked 14/1, 2019 at 5:32
5
Solved
How can I get a size of container in Azure Storage? I access Azure storage via C# API:
var account = CloudStorageAccount.Parse(ConfigurationManager.AppSettings["AzureStoragePrimary"]);
var client ...
Lentha asked 17/1, 2013 at 10:1
4
Solved
I am starting with Windows Azure. I have an Azure account with Microsoft and would like to use it from my Visual Studio project
In the Azure management portal, I can see the primary access key and...
Ragland asked 8/8, 2011 at 17:18
4
Solved
Since a while I am facing the following error when trying to launch any kind of application with the Azure Emulator:
Microsoft Azure Tools: Method not found: 'Void Microsoft.WindowsAzure.ServiceMo...
Interpreter asked 22/3, 2019 at 14:51
3
Solved
I'm trying to pass an Azure Storage blob through an ashx. On the blockBlob.DownloadToStream(memoryStream) it's throwing the following Exception: Microsoft.WindowsAzure.Storage.StorageException: Cal...
Magdau asked 12/12, 2013 at 14:36
1
These are great guides for migrating between the different versions of NuGet package:
https://github.com/Azure/azure-sdk-for-net/blob/Azure.Storage.Blobs_12.6.0/sdk/storage/Azure.Storage.Blobs/READ...
Hammers asked 22/10, 2020 at 10:28
2
I'd read many posts and articles about comparing SQL Azure and Table Service and most of them told that Table Service is more scalable than SQL Azure.
http://www.silverlight-travel.com/blog/2010/0...
Charleton asked 6/10, 2010 at 12:31
4
Is there a feature in Azure to move blobs in Hot/Cool tiers to Archive automatically if they haven't been used in a period of time?
For example, if I have a blob stored in Archive, I access it by ...
Elva asked 18/1, 2018 at 21:37
© 2022 - 2024 — McMap. All rights reserved.