What is the limit on the amount of collections a single database on DocumentDB can have? I keep landing on this link for general DocumentDB limits, but nothing on here goes into that detail:
https://docs.microsoft.com/en-us/azure/documentdb/documentdb-limits
I may need up to 200 collections running on 1 DocumentDB database at a given time. This is to partition customer data by collection. If this is not possible then I'll have to partition across multiple databases but I can't find the information I need to figure out the proper partitioning strategy!
Also, do I get charged for empty databases, or not until the first collection is created?
Also, do I get charged for empty databases, or not until the first collection is created?
- No you don't get charged for empty databases. Only for the collections you create inside a database. - Gaurav Mantri