A healthcare organization is designing an Azure Cosmos DB Core (SQL) API container to store real-time telemetry from active medical wearables. The system ingests approximately write operations per second, with each document containing the fields `deviceId`, `patientId`, `timestamp` (ISO 8601 string format), `hospitalId`, and `vitalMetrics`.
The container must satisfy the following requirements:
- Ingestion & Storage: Prevent hot partitions. While overall writes are balanced, intensive care patients generate more telemetry packets than standard patients.
- Queries: Optimize read queries from clinicians retrieving a patient's telemetry for a single day (e.g., `SELECT * FROM c WHERE c.patientId = 'P-8802' AND c.timestamp STARTSWITH '2026-07-16'`).
- Transactional Scope: Stored procedures must execute transactional batches to atomically update a patient's daily summary document alongside new telemetry entries.
Which two design decisions should you implement to satisfy these requirements? (Select two.)
- Configure the container with a synthetic partition key created by concatenating the patientId and the date portion of the timestamp (for example, patientId_YYYY-MM-DD).Answer
- Store both the daily summary documents and the telemetry documents in the same container, using the synthetic partition key value to scope transactional batches.Answer
- CConfigure hospitalId as the partition key to group all regional telemetry and summaries within the same logical partition.
- DAppend a random suffix to the patientId (for example, patientId_N where N is a random integer from 1 to 5) to distribute writes, and configure the client to use Session consistency to execute transactional batches.