QuestionQ34
Optimize an Azure Cosmos DB solutionYou have an Azure Cosmos DB for NoSQL account containing a container named container1.
You plan to use container1 as a key-value store that performs point reads using the item ID and partition key.
You must define an indexing policy for container1 that meets these requirements:
- Allows DefaultTimeToLive to be set for container1.
- Minimizes implementation time.
- Minimizes costs.
How should you complete the JSON indexing-policy definition?
Select
{ "indexingMode": , "automatic": false, "includedPaths": , "excludedPaths": [{"path": "/*"}] }
Community Discussion