6

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?
4

1 回答 1

12

表的数量没有公布的限制,只有给定存储帐户的100TB 500TB 限制。结合分区+行,听起来您将直接链接到您的数据,而不会遇到任何表扫描问题。

这篇MSDN 文章明确指出:“您可以在给定的存储帐户中创建任意数量的表,只要每个表的名称都是唯一的。” 玩得开心!

于 2011-03-30T16:38:09.567 回答