You are designing a globally distributed data storage solution for a delivery tracking platform. The solution has the following requirements:
- A NoSQL database must store real-time package delivery telemetry. The telemetry ingestion is write-heavy ( writes, reads) with an expected load of millions of updates daily.
- The telemetry database must support a read and write availability SLA and sub- latency.
- Delivery confirmation images must be stored in object storage. External delivery agents must be granted temporary access to upload confirmation images directly to the storage.
- The entire solution must be resilient to regional datacenter outages.
Which of the following configurations should you select to meet these requirements? (Select TWO.)
- Configure Azure Cosmos DB with multi-region writes enabled across the target regions, and use OrderId as the partition key for the telemetry container.Answer
- Configure Azure Blob Storage with Geo-Zone-Redundant Storage (GZRS) and generate short-lived Shared Access Signature (SAS) tokens associated with a Stored Access Policy for image uploads.Answer
- CConfigure Azure Cosmos DB with single-region writes, and use StoreId as the partition key for the telemetry container.
- DConfigure Azure Blob Storage with Locally Redundant Storage (LRS) and generate long-lived Shared Access Signature (SAS) tokens with a one-year lifespan directly in the URI.