I have created a Cosmos DB collection with the partition key. Since it is a dev environment I have reduced the throughput to 1000. Now I'm getting the below error.
Message:
"Errors":["Partition key reached maximum size of 10 GB"]
Azure Cosmos DB containers can be created as fixed or unlimited. Fixed-size containers have a maximum limit of 10 GB and 10,000 RU/s throughput. To create a container as unlimited, you must specify a minimum throughput of 2,500 RU/s.
Now I have increased the throughput to 2500. But still, I'm getting the same error.
I have created a Cosmos DB collection with the partition key
. – Gaurav Mantri