SAA-C03 • Practice Test 22
Free SAA-C03 practice test — 15 questions with explanations. Set 22. No signup required.
Based on the exhibit, a DynamoDB-backed event processing system is throttling during a promotion. The table uses tenantId as the partition key and eventTime as the sort key. One tenant accounts for most of the write traffic, and the application must preserve fast lookups for that tenant without relying on a single hot partition. What change is the best fix?
Table schema: - TableName: EventStore - PartitionKey: tenantId (String) - SortKey: eventTime (Number) CloudWatch metrics during promotion: - WriteThrottleEvents: increasing steadily - ConsumedWriteCapacityUnits: near provisioned limit - SuccessfulRequestLatency p95: 14 ms Sample traffic distribution: - tenantId=ACME: 82% of writes, 79% of reads - all other tenants combined: 18% of writes, 21% of reads Application note: - Queries must continue to support tenant-scoped lookups by time range.