Tagged Questions
0
votes
0answers
27 views
What library to use for Azure Table Storage on Windows Phone 8?
I'm looking to pull some data from azure table storage into a windows phone 8 app. I'm a huge newbie on this but it seems like the Phone.Storage library is outdated and attempting to use
nuget ...
1
vote
1answer
35 views
How to get the latest ID for a Windows Azure Table Insert
Is it possible to get the latest id which was insert into a table via windows azure?
my code looks like this:
private IMobileServiceTable<FooToo> MyTable = ...
-1
votes
1answer
27 views
How many tables can you put in one windows azure storage account? [closed]
The documentation I see says that there can be "Many" tables in one storage account.
Does anyone actually know the limit?
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 ...
1
vote
2answers
71 views
Migrating Azure Table storage
I have a cloud native app based on azure. The app uses azure table storage.
Due to a fantastic opportunity I have decided to also provide the app on-premises. So I have to replace the NoSql data ...
0
votes
0answers
51 views
Applying Dynamic LINQ on Azure table storage is thowing exception Value cannot be null
Im trying to query the azure table storage's Table using Dynamic LINQ Queries to get only subset of columns along dynamic constructed predicate. I was able to successfully generate predicate, but to ...
1
vote
2answers
45 views
Is it possible to have the Windows Azure emulator open the browser to a URL other than 127.0.0.1
Simple question but lots of meaning/discussion behind!!!
Is it possible to have the Windows Azure emulator open the browser to a URL other than 127.0.0.1 and port 81?
1
vote
1answer
69 views
Why Azure Table Storage has a different DateTime.MinValue limit than .NET
.NET DateTime.MinValue is 1/1/0001, however Windows Azure Table Storage does not accept this value, because it has a different lower limit: CloudTableClient.MinSupportedDateTime.
Why there is such a ...
0
votes
1answer
36 views
CloudTable.ExecuteQuery : how to get number of transactions
AFAIK the ExecuteQuery handles segmented queries internally. And every request (=call to storage) for a segment counts as a transaction to the storage (I mean billing transaction - ...
1
vote
1answer
59 views
How to do a bulk insert using WCF in a Worker Role
I have a WCF running in a Worker Role with a method that does an insert in Tables.
I have a lot of clients that will access this method to insert data in Tables, but I really need performance on ...
0
votes
1answer
36 views
azure table storage from outside
When using azure table storage from an app outside cloud does the speed of a transaction decrease and by how much?
0
votes
2answers
84 views
Optimize Windows Azure Table Storage?
I have about 28GB of Data-In for a little over 13.5 million rows stored in Windows Azure Table Storage.
6 Columns, all ints except 1 decimal and 1 datetime.
Partition Key is about 10 characters long.
...
1
vote
1answer
103 views
Does Azure TableQuery handle continuation tokens internally?
I'm trying to find a definitive answer to the question of continuation tokens and the Azure Storage Library 2.0, as there seems to be significant differences between pre-2.0 versions (StorageClient) ...
0
votes
1answer
48 views
Azure pricing for sorting or filtering table entities
I am very new to Windows azure. I was just curious how the calculation of number of transactions for sorting or filtering the azure storage tables work?
1
vote
1answer
76 views
Windows Azure Table Stoarge and Authentication, more than 100 hits per second
I need solution / recommendation from your expert opinion...
We are building an API solution where users will send us a unique code along with user name and password to get the authentication code ...
1
vote
1answer
133 views
Authorization Header for Windows Azure Storage REST API from Windows Store App
So I am just trying to list the tables in the storage account to test the authorization using the Query Tables method. I tried using the SDK, but the SDK was trying to reference DLLs that aren't ...
-1
votes
1answer
71 views
Which C# field creates an Azure Table Storage column as “binary” type
If you have bool, int, string or Guid types as members in your C# TableEntity class, these are converted to Azure Table columns with appropriate types.
It seems like an Azure Table column can be of ...
2
votes
1answer
250 views
Design of Partitioning for Azure Table Storage
I have some software which collects data over a large period of time, approx 200 readings per second. It uses an SQL database for this. I am looking to use Azure to move a lot of my old "archived" ...
0
votes
1answer
162 views
Transactions and Continuation tokens in Windows Azure Storage Tables
How many transactions are fired for retrieving 1200 entities in Azure Storage Tables, keeping continuation Tokens in mind.
I have read that " Windows Azure Tables returns up to a maximum of 1000 ...
1
vote
1answer
68 views
Not able to add entities to a azure storage table in node.js when deployed to cloud?
I am using socket.io in node.js to implement chat functionality in my azure cloud project. In it i have been adding the user chat history to tables using node.js. It works fine when i run it on my ...
0
votes
2answers
73 views
WADPerformanceCountersTable is not created
I am trying to collect some performance counters from a worker role and WADPerformanceCountersTable is never created.
public override bool OnStart()
{
// Set the maximum number of concurrent ...
0
votes
1answer
95 views
What is the azure table storage query equivalent of T-sql's LIKE command?
I'm querying Azure table storage using the Azure Storage Explorer. I want to find all messages that contain the given text, like this in T-SQL:
message like '%SysFn%'
Executing the T-SQL gives "An ...
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
2answers
55 views
Setup a partition and row key for user account database in Windows Azure
I'm just a little bit stumped at the moment on a small issue. I want to setup an accounts table where all the registered users data lives. This table will contain stuff like email, addresses, SRP ...
1
vote
1answer
177 views
The correct way to delete and recreate a WIndows Azure Storage Table = Error 409 Conflict - Code : TableBeingDeleted
Im really new to Windows Azure development and have a requirement to store some data in a windows azure storage table.
This table will really only exist to provide a quick lookup mechanism to some ...
0
votes
0answers
56 views
Table storage: $top broken after migration to Azure 1.8 SDK?
I use Data Services to query Azure Tables.
In 1.7 version of SDK any query to a table that had top > 1000 would be split into several queries and correct top was calculated for each one. For example ...
1
vote
1answer
170 views
Windows Azure Table Storage row size limit is less than the stated 1MB
I have done a lot of research on table storage and its size limitations, overhead etc. using these sources:
...
0
votes
0answers
81 views
Azure Table SDK 2 EntityResolver using reflection
I am trying to use EntityResolver to dynamically populate an empty object from an Azure TableResult.Execute, debug doesnt get into the Test method unless you omit the match.SetValue call. It throws an ...
0
votes
1answer
74 views
Azure Storage Table - Unable to add user-defined property/field
I have been starting work on using Microsoft Windows Azure storage tables. Everything seems to work fine -- I can create tables and insert rows, with one problem -- I can't seem to insert a row with ...
0
votes
0answers
66 views
Azure Storage for Windows Runtime and Bing Maps
I have developed an application for windows store Apps/Windows Runtime using azure storage library downloaded from these links.
Knowledge Articles including the location of Azure storage download ...
0
votes
4answers
233 views
The fastest way to purge/copy Azure Storage Table data to SQL Azure?
I have these worker roles that are aggregating incoming data and store the totals in the Azure Storage Tables. I need this data to be purged/copied (on specified interval) to SQL Server for reporting. ...
1
vote
2answers
73 views
Azure Table Storage inserting date properties incorrectly
Why do I have to create my entities' DateTime properties with DateTimeKind.Local?
For example, I need to set the following property like so before inserting it into my table:
...
0
votes
1answer
150 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
221 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
3answers
159 views
Azure Storage Table design with multiple query points
I have the following Azure Storage Table.
PositionData table:
PartitionKey: ClientID + VehicleID
RowKey: GUID
Properties: ClientID, VehicleID, DriverID, Date, GPSPosition
Each vehicle will log ...
0
votes
1answer
133 views
Change to AsTableServiceQuery() in Client Storage Library 2.0
When using the TableServiceContext to query Azure Table Storage I would perform a query like this:
var entities = context.CreateQuery<TEntity>(TableName)
...
3
votes
1answer
211 views
Storage Client Library 2.0 - Why is the API not as intuitive to use as 1.7?
I am migrating to using the new Storage Client Library for my Azure Table Storage.
Querying with the previous Storage Client Library 1.7 namespace:
var orders = serviceContext
...
1
vote
3answers
164 views
Azure Table Storage Parallel Query
If I don't specify a partition key and thus perform a scan of all partitions, do the scans automatically take place in parallel with each partition scanned concurrently?
Thanks.
0
votes
1answer
37 views
Links in Azure Tables
Can someone explain what links are useful for and how they are used?
The documentation in MSDN is a bit sparse, and I've tried to test them but just get errors back on SaveChanges()
1
vote
0answers
99 views
Button Event Code Behind not Firing on Azure
I have a fairly simple single page web application that I have fully tested locally. This application is a simple form submission, with the data being stored in a Azure Table Storage container.I have ...
1
vote
1answer
143 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 ...
0
votes
1answer
148 views
Azure performance between storage accounts
My Web Role is on StorageAccount1 and my Azure Storage Table on StorageAccountB.
My Web Role performs operations (inserts, updates, queries) on the Storage Table.
Both of these Storage Accounts are ...
3
votes
2answers
292 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
61 views
Azure Table Storage mirroring
I am proposing an Azure environment with the following:
VM SQL Server for core relational data
Table Storage for bulk data
I want to mirror the SQL Server database to another server so that
...
0
votes
1answer
73 views
Paging in Azure TableClient 2.0 using Segmented Execution
How to implement paging in Azure TableClient 2.0 using segmented execution?
is it possible to implement the below function
IEnumerable<Message> GetMessages(int currentPage, int pageSize)
...
0
votes
2answers
57 views
Performance of database partitioned across multiple Azure Data Disks
Would partitioning a SQL Server database across separate page blobs (Azure Data Disks) have a performance impact when querying partition 1 if partition 2 is under heavy load?
I understand the page ...
1
vote
1answer
180 views
Azure DiagnosticsMonitorTraceListener not working
Azure is starting to do my nut, I am trying to get diagnostics tracing working and have followed various guides (all pretty much say the same thing). I now can't debug locally (I get errors) and RDP ...
1
vote
1answer
124 views
High traffic, 500M+ hits per day (analytics like) application architecure on Azure
This question is for experienced architects - How do the big boys do it? :)
Overview
I am building this high traffic, analytics like solution based on .NET, it ultimately will hosted on Azure. Let's ...
1
vote
1answer
114 views
Massive test against azure getting connection refused or service unavailable
We have a cloud service that gets requests from users, passes the data (two params) to table entities and puts them into cloudtables (using BatchTableOperations to InsertOrReplace rows). The method is ...





