0
votes

What is the maximum partition key we can have in 1 Azure Storage table

1
What do you mean by maximum?Gaurav Mantri
How many partition key we can have in 1 table storage. ie. can we have 10000 unique partition key?Lenroy Yeung
As such there’s no limit on the number of the partitions you can have.Gaurav Mantri

1 Answers

0
votes

There is no limit on the number of partition keys in a single table per se.

From the docs:

Locate data that your client application does not insert, update, or query in the same logical unit of work (that is, in a single query or batch update) in separate partitions. Keep in mind that there is no limit to the number of partition keys in a single table, so having millions of partition keys is not a problem and will not impact performance. For example, if your application is a popular website with user login, using the User ID as the partition key could be a good choice.

Check Performance and scalability checklist for Table storage for more details.