Are there any limits on the number of Azure Storage Tables allowed in one account?
I'm currently trying to store a fairly large and dynamic data set.
My current design is tending towards a solution where I will create a 开发者_高级运维new table every few minutes - this means every table will be quite compact, it will be easy for me to search my data (I don't need everything in one table) and it should make it easy for me to delete stale data.
I've looked and I can't see any documented limits - but I wanted to check:
- Is there any limit on the number of tables allowed within one Azure storage account?
- Or can I keep adding potentially thousands of tables without any concern?
There are no published limits to the number of tables, only the 100TB 500TB limit on a given storage account. Combined with partition+row, it sounds like you'll have a direct link to your data without running into any table-scan issues.
This MSDN article explicitly calls out: "You can create any number of tables within a given storage account, as long as each table is uniquely named." Have fun!
精彩评论