Tagged Questions
0
votes
1answer
37 views
Not able to update an entity of type string in azure table storage to null
I have user table which has an attribute called "PictureUri" of string type. By default its null and then i update it to some text. Later if i try to update it to null again, it doesnt happen. The ...
0
votes
1answer
43 views
How can I view how many rows I have in each table in Windows Azure Table Storage?
Maybe I overlooked this in the Windows Azure Portal, but I can't find how many rows I currently have per table.
If I query for it, I assume a transaction cost will be incurred. Is there a way to ...
0
votes
1answer
53 views
Azure Table QuerySegmented no return
I am trying to pull a group of entities from an AzureTable and am using the following code to query it.
string partitionKey = string.Format(CultureInfo.InvariantCulture, "{0:d20}", accountId);
string ...
0
votes
1answer
151 views
Azure Table Storage batch inserts across multiple partitions?
The following method can be used to batch insert a collection of entities as a single transaction:
CloudTable.ExecuteBatch(TableBatchOperation batch)
If any of the entities fail during insert, then ...
1
vote
1answer
222 views
Azure Table Storage - RowKey design for ordered data
I store large quantities of GPS data in storage tables. Each partition can reach up to 1 million entities. Each GPS entity that is inserted into the table is actually sequential to the previous data ...
1
vote
1answer
146 views
Azure Table Storage partition limit
What is the limit on the number of partitions that can belong to an Azure table?
The only decent source of information regarding table storage limitations I have found are here (2012) and here(2010).
...
1
vote
1answer
71 views
Azure Storage Table transfer rate exceeded - how?
According to the new scalability targets for Azure, each partition in table storage is limited to 2000 entities/second.
I have been able to reach batch inserts of up to 16000 entities/second through ...
3
votes
2answers
296 views
Azure Table Storage partition individual performance
In the documentation it states that Azure Table Storage partitions have a minimum speed of 500 operations/second.
If my data is partitioned correctly, would parallel operations on each of these ...
0
votes
1answer
212 views
Azure SDK for TableStorage with .NET 4.5
I am searching for some examples or documentation on how to use the Azure SDK to store and retrieve data in Azure Table Storage.
I use C# with .NET 4.5 framework.
I found ...
2
votes
1answer
409 views
TableQuery<T> from Azure TableStorage that filters on PartitionKey
I'm trying to abstract geting all entities from a Table by partitionKey, like so:
public List<T> GetEntities<T>(string partitionKey, T entity) where T : TableEntity
{
try
...
1
vote
1answer
279 views
Projection in Azure table services october 2012 version without using string to refer to the column
In the previous version of of the table storage API, we had to use contexts and a new expression to handle projection on the server side to save bandwidth:
var result =
...
0
votes
1answer
149 views
Retreiving the etag on an Azure Table storage query
I need to be able to retrieve the etag from an Azure query, and attach them to my entities. The service will be updating the entities on a separate thread, so I need to store the etag of when the ...
0
votes
1answer
63 views
Cannot access Azure table with REST
Have a table that is called "datatags" in the development server. I can access it using the StorageClient. However when I try to use the REST API I get ResourceNotFound error.
I tried with the ...
2
votes
2answers
282 views
Is it possible to query a big Azure Table with specific search parameters but without PartitionKey?
Let say I have a table entity as it :
Partitionkey
Rowkey
table
userid
datecreated
Let's take a query which works great, with it I can retrieve all entries wich have a particular ID (which is used ...
0
votes
2answers
112 views
what would be the best way to migration data from SQL Azure to Azure Table
For a project, I am using both SQL Azure and Azure table. A requirement here is that for the first 7 days, all data are stored in SQL Azure. After the first 7 days, the data are migrated into Azure ...
0
votes
1answer
130 views
Why does Performance Degrade with multiple calls to TableServiceContext.SaveChanges
I was writing a quick client this morning to simply insert a bunch of data into table storage when I noticed that after subsequent saves, the performance would degrade.
public class MyObject : ...
7
votes
2answers
985 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 ...
0
votes
2answers
944 views
Windows Azure Table Storage query error - One of the request inputs is not valid
I am trying to query against the table storage but I am getting the following error:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<error
...
0
votes
1answer
424 views
Azure diagnostics and WadLogsTable
I deployed an application on Windows Azure, i activated the diagnostic monitor like follows :
public override bool OnStart()
{
CloudStorageAccount account = ...
0
votes
2answers
520 views
Metro JS/HTML5 app and Table Storage
I'm trying to find out if it is possible to create a Metro style app on Win 8 using JS/HTML5 that stores its data in an Windows Azure table storage.
Couldn't find any sample of that. The only thing I ...
1
vote
2answers
237 views
Entity not being added to Azure Table but row key and partition key are beind added correctly
i am trying to add an order entity to an Azure table. When i add the entity it only adds the values for partition key and row key. Any help is much appreciated. Here is my code.
class OrderEntity : ...
1
vote
2answers
332 views
Azure Storage Table Query, Which is faster?
Very simple lookup, use A to lookup B, A is unique value in whole table, B is unique value in whole table as well
method 1:
PartionKey => A
RowKey => B
lookup by TOP(1) PartionKey eq "A"
...
1
vote
1answer
227 views
How to control azure storage account costs in Azure when using WAD tables
We do not use our Azure storage account for anything except standard Azure infrastructure concerns (i.e. no application data). For example, the only tables we have are the WAD (Windows Azure ...
5
votes
2answers
654 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 ...
3
votes
2answers
973 views
Windows Azure - how do you change the region of a Table Storage account?
I've created a Hosted Service that talks to a Storage Account in Azure. Both have their regions set to Anywhere US but looking at the bills for the last couple of months I've found that I'm being ...
0
votes
2answers
650 views
Updating Disconnected Entity in Azure Table Storage
I am working a sample application using Windows Azure table storage. I will try to explain it using some code:
//GetStudent is a service call
StudentDetails student = this.GetStudent(studentID);
...
3
votes
2answers
532 views
Questions on the Azure scalability targets and the use of multiple Azure storage accounts?
The Windows Azure Storage Abstractions and their Scalability Targets blog post indicates there is a 5,000 entities/second transaction limit for a single storage account, and there is a 500 ...
0
votes
1answer
296 views
Howto add records to the Azure Table Storage without the relavant knowledge about such records?
Does anybody know how I can save a record to the azure table storage with the following in mind.
I have to read a CSV file line by line and save it line by line (as an object/record) to the table ...
3
votes
2answers
974 views
Updating an object to Azure Table Storage - is there any way to get the new Timestamp?
I'm updating an object in AzureTableStorage using the StorageClient library with
context.UpdateObject(obj);
context.SaveChangesWithRetries(obj);
when I do this, is there any way to get ...
3
votes
1answer
581 views
Azure Table Storage: Emtpy table query
I'm using Azure Table Storage and when I query a table that is empty with parameters other than PartitionKey and RowKey involved, I got exception. When I have at least one row, the exception goes ...
1
vote
5answers
1k views
Arrays in Azure Table Storage Entities (Non-Byte)
I'm looking to store arrays in Azure Table entities. At present, the only type of array supported natively is byte-array, limited to 64k length. The size is enough, but I'd like to store arrays of ...
