QuestionQ126
Design and implement data distributionYou are designing an Azure Cosmos DB for NoSQL solution to store data from IoT devices. Devices will write every second, and the data will be retained indefinitely.
The following is a sample of the data.

You need to choose a partition key that meets these write requirements:
- Minimizes partition skew
- Avoids capacity limits
- Avoids hot partitions
What should you do?
- A Use deviceId as the partition key.
- B Create a new synthetic key that contains deviceId and timestamp.
- C Use sensor1value as the partition key.
- D Create a new synthetic key that contains deviceId and sensor1Value.
Community Discussion