You are designing a globally distributed package delivery tracking application. The solution has the following requirements:
- Save package telemetry (JSON documents) in an Azure Cosmos DB for NoSQL database. The data must be partitioned to prevent hot partitions and scale horizontally. Telemetry contains (GUID), (10 unique values), and (190 unique values).
- Replicate the database to three regions (East US, West Europe, and East Asia) with multi-region writes enabled to ensure sub- read/write latency.
- Store high-resolution photos of delivered packages (up to each) in an Azure Blob Storage account. The photo storage must survive regional outages and allow read access from a secondary region if the primary region fails.
Which two configurations should you include in the design?
- Partition the Azure Cosmos DB container using PackageId.Cevap
- Configure the Azure Blob Storage account to use Read-Access Geo-Redundant Storage (RA-GRS).Cevap
- CPartition the Azure Cosmos DB container using LogisticsHubId.
- DConfigure the Azure Blob Storage account to use Locally Redundant Storage (LRS).