An international healthcare organization is designing a telemonitoring platform to ingest telemetry data from wearable medical devices globally. The platform requires a globally distributed Azure Cosmos DB for NoSQL database. The workload is write-heavy, with a write-to-read ratio of , and requires a read and write availability SLA.
The design must meet the following requirements:
- Support multi-region writes to provide sub- ms write latency for patients worldwide.
- Ensure the backup data can survive a regional primary datacenter outage.
- Prevent hot partitions under heavy write load.
- Authorize external research partners to access specific patient telemetry using temporary credentials that automatically expire after hours, without exposing the database's master keys.
Which two configuration options should you include in the storage design? (Select two.)
- Partition the Cosmos DB container using a high-cardinality composite key such as deviceId-YYYYMMDD and configure the database account with Session consistency.Cevap
- Deploy a custom token broker service to issue Azure Cosmos DB resource tokens with a maximum lifetime of 24 hours to the external research partners.Cevap
- CPartition the Cosmos DB container using deviceType as the partition key to group similar telemetry schemas into the same logical partition.
- DConfigure the database backup redundancy to use Locally Redundant Storage (LRS) and enable manual failover to survive regional primary datacenter outages.