I have a Windows Azure application in which all read queries in TableA are executed on separate sections for a series of rows. Partition classes that facilitate this storage scheme actually smooth out the names of objects in the hierarchy, so the partition key is formatted as {root}_{child1}_{child2}_{leaf} . I can understand how it would be useful to split this large table A into many tables using the root dimension of the partition keys in the table name (so the partition key will become {child1}_{child2}_{leaf} ).
What I want to do is to provide quick access to this data, as far as I can, from the total number of connections at the same time. It would also be unbelievable if I could understand what these limitations are or should be.
More specific questions about my proposed changes:
- Will it matter in scalability, i.e. the number of concurrent data access requests that can be served without a significant performance improvement? Served at the same time?
- Will it matter in average performance? Potential performance?
scalability azure partitioning azure-table-storage
user483679
source share