Windows Azure Storage is a highly-scalable, durable, cloud-based storage platform providing four core services: Blobs, Tables, Queues, and Azure Drives.
58
votes
4answers
9k views
How do I delete an Azure storage account containing a leased blob?
I was playing with Windows Azure durable virtual machines. In the end, I deleted the virtual machine (successfully) and tried to delete the associated storage account.
The request to delete the ...
33
votes
4answers
2k views
When should i use Sql Azure and when should I use table Storage?
When should i use Sql Azure and when should I use table Storage?
I was thinking , use table storage for transaction processing scenarios e.g. debit credit accounts kind of scenario and use Sql Azure ...
30
votes
6answers
9k views
Checking if a blob exists in Azure Storage
I've got a very simple question (I hope!) - I just want to find out if a blob (with a name I've defined) exists in a particular container. I'll be downloading it if it does exist, and if it doesn't ...
20
votes
6answers
5k views
Blob container creation exception
I get an exception every time I try to create a container for the blob
using the following code
CloudStorageAccount storageAccInfo;
CloudBlobClient blobStorageType;
CloudBlobContainer ContBlob;
...
18
votes
12answers
14k views
Could not load file or assembly 'msshrtmi' or one of its dependencies (Azure Table Storage Access)
I have an HTTPModule that I use to redirect traffic between a website in my data center and a website running on the Azure platform. This HTTPModule retrieves its redirect rules from Azure Table ...
16
votes
2answers
1k views
windows azure development storage blob service not starting
When I start development storage emulator, I get an error
The process cannot access the file because it is being used by another process
I guess this is happening only for BLOB, other services i.e. ...
15
votes
5answers
4k views
Windows Azure Storage vs. SQL Azure
I saw that there was a similar question asked several months back, but it really didn't address my situation well. Here it goes...
I'm in the process of building from scratch a web-based, .NET ...
14
votes
3answers
5k views
How to filter Azure logs, or WCF Data Services filters for Dummies
I am looking at my Azure logs in the WADLogsTable and would like to filter the results, but I'm clueless as to how to do so. There is a textbox that says:
"Enter a WCF Data Services filter to ...
12
votes
3answers
3k views
How to create a sub container in azure storage location
How to create a sub container in the azure storage location.
Please let us know
12
votes
4answers
3k views
Is it better to have many small Azure storage blob containers (each with some blobs) or one really large container with tons of blobs?
So the scenario is the following:
I have a multiple instances of a web service that writes a blob of data to Azure Storage. I need to be able to group blobs into a container (or a virtual directory) ...
12
votes
1answer
4k views
Where can I find my Azure account name and account key?
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 ...
11
votes
1answer
1k views
Microsoft.WindowsAzure.Storage vs Microsoft.WindowsAzure.StorageClient
What's the difference between these two assemblies and when should I use each? I find that there are class name collisions between them so I imagine that I should only use one.
Example
...
11
votes
1answer
1k views
Play 2.x : Reactive file upload with Iteratees
I will start with question: How to use Scala API's Iteratee to upload file to the cloud storage (Azure Blob Storage in my case, but I don't think it's most important now)
Background:
I need to chunk ...
10
votes
3answers
3k views
Azure Table Vs MongoDB on Azure
I want to use a NoSQL database on Windows Azure and the data volume will be very large. Whether a Azure Table storage or a MongoDB database running using a Worker role can offer better performance and ...
9
votes
2answers
345 views
EF with Azure - Mixing SQL Server and Windows Azure Storage
I want to use two different data sources in my Azure project:
a SQL Server that contains basic partial info regarding an item (allows indexable data and spatial search)
a Windows Azure Storage that ...
9
votes
3answers
1k views
Tools for viewing and managing Azure storage tables and queues
What tools are available for viewing and managing Azure storage tables and queues - and which do you recommend?
9
votes
2answers
237 views
Is Azure CloudTable thread-safe?
I'm writing to Azure Table storage using Storage SDK 2.0 from different threads (ASP.NET application).
Is CloudTable object thread-safe? Can I initialize CloudStorageAccount, CloudTableClient and ...
9
votes
4answers
2k views
How can I back up my Windows Azure table storage?
I would like to be able to back up my table storage and also I have a need to move the data (export and import) from my production to development environment on my desktop.
Does anyone know of any ...
9
votes
2answers
844 views
Generic class for performing mass-parallel queries. Feedback?
I don't understand why, but there appears to be no mechanism in the client library for performing many queries in parallel for Windows Azure Table Storage. I've created a template class that can be ...
9
votes
1answer
2k views
Perfomance - Table Service, SQL Azure - insert. Query speed on large amount of data
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.
...
9
votes
2answers
1k views
How do you exclude a property from being persisted in Azure Table storage?
If I have a class like this:
public class Facet : TableServiceEntity
{
public Guid ParentId { get; set; }
public string Name { get; set; }
public string Uri{ get; set; }
...
8
votes
1answer
2k views
Downloading Azure Blob files in MVC3
Our ASP.NET MVC 3 application is running on Azure and using Blob as file storage. I have the upload part figured out.
The View is going to have the File Name, which, when clicked will prompt the file ...
8
votes
2answers
953 views
Getting exception - “The property value is larger than allowed by the Table Service”, what is the max size of a row in azure storage table
Getting exception "The property value is larger than allowed by the Table Service" while trying to insert a record in azure table storage.
Follwing is my table structure,
string PartitionKey,String ...
7
votes
1answer
157 views
Is this a valid way to simplify my inherited classes?
I have many Azure classes containing fields for date and modified by tracking. Fields such as:
[DisplayName("Created By")]
public string CreatedBy { get; set; }
[DisplayName("Modified By")]
public ...
7
votes
6answers
4k views
Copying storage data from one Azure account to another
I would like to copy a very large storage container from one Azure storage account into another (which also happens to be in another subscription).
I would like an opinion on the following options:
...
7
votes
1answer
2k views
Azure Storage Table Paging
To implement simple paging in Azure Storage in relatively straight forward: Paging with Windows Azure Table Storage. This can be implemented with continuation token functionality.
But.
This is just ...
7
votes
4answers
1k views
How to fake Azure Table Storage in .NET for Unit Testing?
I am working on a system that uses Azure Table Storage. In other systems (e.g., SQL, File based, etc), I can write a fake that allows me to test my data persistence logic. However, I can't see an easy ...
7
votes
1answer
2k views
Azure: How to create the WADLogsTable for capturing diagnostics code?
I have a worker role that I would like to get diagnoistics feedback on... after adding the appropriate connection string to the ServiceConfiguration.cscfg and the following code:
...
7
votes
2answers
982 views
Do I use Azure Table Storage or SQL Azure for our CQRS Read System?
We are about to implement the Read portion of our CQRS system in-house with the goal being to vastly improve our read performance. Currently our reads are conducted through a web service which runs a ...
7
votes
1answer
203 views
Azure/AWS ORM Design Guidelines
I'm designing and implementing .Net ORM that must support both Azure Storage (tables, queues, blobs) and AWS Storage (EBS, SimpleDB, S3) and hide all implementation details behind a common interface. ...
6
votes
3answers
3k views
Azure Table Storage - Entity Design Best Practices Question
Im writing a 'proof of concept' application to investigate the possibility of moving a bespoke ASP.NET ecommerce system over to Windows Azure during a necessary re-write of the entire application.
Im ...
6
votes
6answers
1k views
Windows Azure Storage Explorer?
I would like to see the data in my Windows Azure tables but I am not sure what tool I can use. I looked on Google but it comes up with nothing other than a codeplex project that looks rather dated.
...
6
votes
8answers
4k views
Querying table storage data with Windows Azure
This question has 2 parts.
Is there a way to view the data that is stored locally. I understand that local table storage is actually done using SQLExpress behind the scenes. Where is that ...
6
votes
1answer
160 views
In Visual Studio, using Windows Azure Storage, where does “Remember Account Key” get saved?
Recently I reformatted my PC, which previously had Visual Studio installed on it.
In Visual Studio, under Server Explorer -> Windows Azure Storage, before reformatting, I had a storage account ...
5
votes
2answers
2k views
Is storing data in Windows Azure cheaper when using RavenDB rather than SQL Azure?
SQL Azure storage is a lot more expensive than Windows Azure Storage. Would implementing a no-sql solution like RavenDB allow me to store data on the cheaper Azure Storage?
Are there other things to ...
5
votes
6answers
5k views
How to download 100 million rows from Azure Table Storage FAST
I have been tasked with downloading around 100 million rows of data from Azure Table Storage. The important thing here being speed.
The process we are using is downloading 10,000 rows from Azure ...
5
votes
7answers
6k views
How do I upload some file into Azure blob storage without writing my own program?
I created an Azure Storage account. I have a 400 megabytes .zip file that I want to put into blob storage for later use.
How can I do that without writing code? Is there some interface for that?
5
votes
6answers
681 views
Azure Storage Queue - correlate response to request
When a Web Role places a message onto a Storage Queue, how can it poll for a specific, correlated response? I would like the back-end Worker Role to place a message onto a response queue, with the ...
5
votes
8answers
845 views
Cannot run Windows Azure project due to Error: Unable to find fileDFUI.exe please verify your install is correct
I am getting the following error, whenever I add an existing Asp.Net web application as existing web role project.
Microsoft Visual Studio
Unable to find fileDFUI.exe please verify your install is ...
5
votes
2answers
2k views
Download .vhd image from Azure to local machine
I'd like to download a VM image to my local machine, so I can use it locally and upload it to another credential of Azure. I know that there is blob URL but wget didn't help to download it, because it ...
5
votes
1answer
3k views
Limitations on Windows Azure Table Storage accounts
I am designing a multi-tennant web-based SaaS application that will be hosted on Windows Azure and use Table Storage.
The only limits I have found so far are:
5 storage accounts per subscription
...
5
votes
1answer
884 views
does multiple Azure worker role polling same Queue causes Dead Lock or Poison message
Scenario:
if I've spin off multiple Worker roles or ONE Worker role with multiple threads, which polls the new messages in Azure Queue.
Could someone please confirm if the this the correct design ...
5
votes
3answers
5k views
Windows Azure Trace Log not working
I'm sure I have missed something simple but I can't get simple Trace.WriteLine to work on Azure.
Steps I have taken:
Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString has been set up to ...
5
votes
1answer
751 views
Is Windows Azure Storage (Blob, Table, Queue) optimized for access from Windows Azure Roles?
I'm currently looking at Windows Azure to host an ElasticSearch implementation. Loading the application and running it under Java is not that difficult.
Currently, ElasticSearch only supports ...
5
votes
1answer
995 views
CloudBlob.DownloadToStream returns null
I'm trying to download a file from cloudBlob via stream. I refer to this article CloudBlob
Here is the code to download the blob
public Stream DownloadBlobAsStream(CloudStorageAccount account, ...
5
votes
2answers
426 views
What is the best strategy for using Windows Azure as a file storage system - with http download capabilities
I need to store multiple files that users upload, and then provide these users with the capability of accessing their files via http. There are two key considerations:
- Storage (which is my primary ...
5
votes
3answers
1k views
How do SQL Azure and Azure Table Storage compare? [closed]
Currently I have a prototype that runs in IIS on my local machine and uses SQL Server Express 2005 for storing data in three SQL tables. I run queries with transactions that employ up to two of those ...
5
votes
1answer
406 views
Azure SDK 1.8 CloudDrive
Where is CloudDrive in Azure SDK 1.8 (October 2012)?
In Azure SDK 1.8 the StorageClient namespace no longer exists. This is the namespace that contained CloudDrive.
I know that the StorageClient ...
5
votes
2answers
650 views
How to add a new column to an existing azure table storage
We are using azure table storage and have thousands of tables using the same schema. Now we are looking to add another column to these tables. How do we add another column to our existing tables ...
5
votes
5answers
2k views
How to start Azure Storage Emulator from within a program
I have some unit tests that use Azure Storage. When running these locally, I want them to use the Azure Storage emulator which is part of the Azure SDK v1.5. If the emulator isn't running, I want it ...