How should you choose a good partition key for a Table storage implementation? (Choose two.)
Question:
How should you choose a good partition key for a Table storage implementation?
Options:
They should always be unique, like a primary key in a SQL table.
You should always use the same partition key for all records.
Think about how you’re likely to update the data using batch transactions.
Find an even way to split them so that you have relatively even partition sizes.
Correct Answer
The Correct Answer for this Question is
Think about how you’re likely to update the data using batch transactions.
Find an even way to split them so that you have relatively even partition sizes.