An organization is deploying an inventory tracking application using an Azure Cosmos DB SQL API account. The account is configured with a single write region in East US and a read replica in West US. To group inventory by availability, the container is partitioned using the /availabilityStatus property, which has only three possible values: 'InStock', 'LowStock', and 'OutOfStock'. The application must meet the following requirements:
- Users must always read their own updates immediately, regardless of which regional application instance they connect to.
- The solution must support stateless web client instances without requiring the application layer to manage or pass session tokens between requests.
During load testing, the application encounters frequent request rate limiting (HTTP status code 429) on write operations.
Which default consistency level must you configure for the Cosmos DB account to meet the consistency and session requirements?
- StrongAnswer
- BSession
- CEventual
- DBounded Staleness