az cosmosdb show --name <account> --resource-group <resource-group>Dedicated throughput container
A dedicated throughput container is an Azure Cosmos DB container with throughput provisioned directly on that container instead of sharing database-level throughput with other containers.
Source: Microsoft Learn - Provision standard throughput on an Azure Cosmos DB container Reviewed 2026-05-13
- Exam trap
- Changing production before checking the exact owner, scope, downstream dependency, monitoring evidence, and rollback impact.
- Production check
- Can you name the owner, parent resource, environment, and downstream dependency without guessing?
Article details and learning context
- Aliases
- dedicated container throughput, container-level throughput, Cosmos DB dedicated throughput container
- Difficulty
- intermediate
- CLI mappings
- 4
- Last verified
- 2026-05-13
Understand the concept
In plain English
Dedicated throughput container is a Cosmos DB container that receives its own provisioned request units instead of sharing throughput from the parent database. In Azure, it helps teams isolate performance and cost for important workloads so one noisy container does not starve other containers in the same database. Plainly, it is a named operating concept that connects design intent with live configuration, evidence, ownership, and production impact. A useful glossary entry should show where it lives, who controls it, what depends on it, and what signal proves it is working.
Why it matters
Dedicated throughput container matters because it turns architecture language into something teams can secure, monitor, troubleshoot, and explain under pressure. When it is documented shallowly, engineers may change the wrong resource, policy, identity, database, queue, workspace, or path while the real dependency remains untouched. In enterprise Azure projects, the value is shared language: platform, security, data, finance, and operations teams can discuss the same object without guessing. That reduces incident time, improves audit evidence, prevents avoidable rework, and makes migrations safer because downstream consumers and failure modes are visible before release. Treat Dedicated throughput container as production owned when scheduled jobs, regulated data, customer traffic, or security monitoring depends on it.
Technical context
Technically, Dedicated throughput container appears in Cosmos DB account resources, SQL database definitions, container throughput settings, autoscale or manual RU/s configuration, metrics, and ARM templates and interacts with Azure Cosmos DB, Cosmos DB for NoSQL, Cosmos DB container, and Azure Monitor. Configuration is reviewed through container throughput mode, RU/s value, autoscale maximum, and partition key, while operators validate live state through provisioned RU/s, normalized RU consumption, 429 rate-limit metrics, and partition storage. Scope matters because the same word can refer to a portal setting, API property, runtime behavior, or governance control.
Exam context
Compare with
Where it is used
Where you see it
- In the Cosmos DB portal, container throughput appears on the container scale settings instead of being inherited from database throughput during production review before an approved change.
- In Azure Monitor, it appears through normalized RU consumption, throttled requests, partition metrics, and request charges for that specific container during production review before an approved change.
- In architecture reviews, it appears when a critical container needs predictable capacity separate from lower-priority containers in the same database during production review before an approved change.
Common situations
- Give a high-priority Cosmos DB container predictable RU/s independent from shared database throughput.
- Investigate throttling by checking container-level RU consumption, partition distribution, and indexing behavior.
- Control cost by moving low-traffic containers to shared throughput while keeping critical containers dedicated.
Illustrative Azure scenarios
These examples show how the concept can affect design and operations. They are illustrative scenarios, not customer claims.
Scenario 01 Dedicated throughput container in action for payments technology Scenario, objectives, solution, measured impact, and takeaway.
PulsePay Mobile, a payments technology organization, needed to address fraud-score reads were throttled when low-priority audit containers consumed shared database throughput. The architecture team used Dedicated throughput container as the control point for a measurable production improvement.
- Keep fraud point reads below 20 ms
- Reduce 429 throttling during peak checkout
- Tie RU spend to the fraud platform owner
The team moved the fraud decisions container to a Dedicated throughput container with autoscale throughput sized from observed request charges. Other audit containers remained on shared database throughput. Azure Monitor alerts watched normalized RU consumption and hot partition signals, while owner tags connected the dedicated capacity to the fraud cost center. Engineers captured before-and-after evidence, updated the runbook, and tied the change to named owners, monitoring signals, and rollback steps. The design was tested in a lower environment so security, operations, and finance teams could review the impact before production rollout. Support staff received clear checks for resource state, identity, cost, telemetry, and downstream dependency health.
- Peak 429 responses fell 91 percent
- P95 fraud lookup latency improved from 74 ms to 18 ms
- RU spend was allocated to the correct platform owner
Dedicated throughput container isolates critical Cosmos DB workloads from noisy neighbors in the same database.
Scenario 02 Dedicated throughput container in action for fleet management Scenario, objectives, solution, measured impact, and takeaway.
TerraFleet Logistics, a fleet management organization, needed to address vehicle telemetry queries competed with archival metadata in a shared Cosmos DB database. The architecture team used Dedicated throughput container as the control point for a measurable production improvement.
- Reserve throughput for live telemetry
- Avoid overprovisioning every container
- Improve partition-key review evidence
Architects used Dedicated throughput container for the live vehicle-state container and left archival containers on shared throughput. They reviewed partition distribution, point-read rates, and indexing policy before setting RU/s. A dashboard compared container request charges with cost tags so capacity reviews were based on evidence rather than guesses. Engineers captured before-and-after evidence, updated the runbook, and tied the change to named owners, monitoring signals, and rollback steps. The design was tested in a lower environment so security, operations, and finance teams could review the impact before production rollout. Support staff received clear checks for resource state, identity, cost, telemetry, and downstream dependency health. Engineers captured before-and-after evidence, updated the runbook, and tied the change to named owners, monitoring signals, and rollback steps.
- Telemetry query throttling dropped 84 percent
- Total database RU allocation fell 22 percent
- Partition hot spots were identified before rollout
Dedicated throughput container is useful when one container deserves predictable capacity but the whole database does not.
Scenario 03 Dedicated throughput container in action for ecommerce Scenario, objectives, solution, measured impact, and takeaway.
BrightCart Commerce, a ecommerce organization, needed to address promotion campaigns caused customer cart writes to throttle during flash-sale launches. The architecture team used Dedicated throughput container as the control point for a measurable production improvement.
- Protect cart-write throughput during campaigns
- Scale without changing unrelated containers
- Reduce abandoned checkout incidents
The commerce team configured Dedicated throughput container on the carts container with autoscale maximum RU/s aligned to campaign load tests. Product browsing and personalization containers stayed separate. Alerts tracked RU consumption, 429s, and partition-key distribution, while deployment gates required evidence from a realistic flash-sale simulation. Engineers captured before-and-after evidence, updated the runbook, and tied the change to named owners, monitoring signals, and rollback steps. The design was tested in a lower environment so security, operations, and finance teams could review the impact before production rollout. Support staff received clear checks for resource state, identity, cost, telemetry, and downstream dependency health. Engineers captured before-and-after evidence, updated the runbook, and tied the change to named owners, monitoring signals, and rollback steps.
- Campaign write throttling fell below 1 percent
- Abandoned checkout incidents decreased 36 percent
- No unrelated container received unnecessary RU capacity
Dedicated throughput container lets teams pay for predictable Cosmos DB performance where business impact is highest.
Azure CLI
CLI checks for Dedicated throughput container are useful because they turn portal assumptions into repeatable evidence. Start with read-only commands that show the resource, definition, permissions, metrics, or runtime state, then compare the output with the intended design. Use mutating commands only through an approved change process with owner, rollback, and impact notes. For Dedicated throughput container, evidence should be captured before and after production changes.
Useful for
- Give a high-priority Cosmos DB container predictable RU/s independent from shared database throughput.
- Investigate throttling by checking container-level RU consumption, partition distribution, and indexing behavior.
- Control cost by moving low-traffic containers to shared throughput while keeping critical containers dedicated.
Before you run a command
- Run az account show, confirm tenant and subscription, and verify the operator identity has approved read access for the exact scope.
- Confirm the resource group, workspace, account, queue, container, file system, app registration, or security plan name before collecting evidence.
- Prefer read-only commands first; review any command that changes access, cost, compute state, network exposure, message settlement, or production data.
What the output tells you
- Whether the object exists in the expected Azure resource, tenant, workspace, account, namespace, or governance boundary.
- Which owner, identity, permission, status, metric, endpoint, throughput setting, ACL, security plan, or runtime value is visible to the current operator.
- Whether the issue is missing scope, permission drift, wrong environment, network misconfiguration, stale deployment, service health, or resource state.
Mapped commands
Dedicated throughput container operational checks
directaz cosmosdb sql database show --account-name <account> --resource-group <resource-group> --name <database>az cosmosdb sql container throughput show --account-name <account> --resource-group <resource-group> --database-name <database> --name <container>az cosmosdb sql container throughput update --account-name <account> --resource-group <resource-group> --database-name <database> --name <container> --throughput <ru-per-second>Architecture context
Dedicated throughput container belongs to Databases architecture decisions where identity, networking, monitoring, cost ownership, and production support need shared evidence.
- Security
- Security for Dedicated throughput container starts with least privilege, identity clarity, and evidence that access matches the workload classification. Review Cosmos DB RBAC, account keys, managed identity access, private endpoint, and least-privilege data-plane roles before approving production use. A common failure is assuming that a successful portal action, query, message receive, or scan result proves the design is secure. Use Microsoft Entra groups, managed identities, role assignments, private connectivity, audit logs, and service-specific privileges where applicable. Keep exceptions ticketed, time-bounded, and tied to a named owner. For regulated workloads, align the configuration with classification, retention, break-glass, and incident-response procedures. Remove broad access, stale secrets, unreviewed public paths, and undocumented administrator permissions before Dedicated throughput container becomes an incident path.
- Cost
- Cost for Dedicated throughput container appears through compute duration, request units, protected endpoints, storage growth, diagnostic retention, operational toil, and the downstream work triggered by bad configuration. Review reserved RU/s, autoscale maximum RU/s, underused dedicated capacity, shared versus dedicated tradeoff, and per-container owner tags before expanding production use. Some costs are direct, such as DWU compute, container app profile instances, Cosmos DB throughput, security plan coverage, or storage; others are indirect, such as retries, manual evidence collection, delayed restores, and failed jobs. Tag related Azure resources, monitor usage, and separate exploratory work from production workloads. A cost review should connect spend to a real owner and measurable value.
- Reliability
- Reliability for Dedicated throughput container depends on repeatable configuration, tested dependencies, and clear failure signals. Watch RU starvation, hot partitions, regional failover, autoscale limits, and container-level backups because drift often appears later as missed schedules, failed restores, broken private connectivity, stuck messages, slow queries, or incomplete security coverage. Use lower environments, source-controlled definitions where possible, deployment checks, monitoring, and rollback notes before changing production. Operators should know which resource, endpoint, identity, data path, queue, database, or downstream system fails first and which log or metric proves the failure. The goal is predictable recovery: detect Dedicated throughput container drift, protect data, restore service, and explain the incident without guessing.
- Performance
- Performance for Dedicated throughput container depends on workload shape, data layout, network path, scale limits, governance choices, and the compute or broker path used to access it. Review request unit consumption, partition-key distribution, indexing policy, query fan-out, and point-read ratio before increasing capacity. The better fix might be scheduling, query tuning, partition design, throughput allocation, lock handling, file compaction, path validation, or clearer orchestration. Measure with representative traffic and data, not a tiny sample that hides production behavior. Operators should connect symptoms to evidence: latency, queue depth, RU consumption, CPU, scan volume, failed stages, status changes, or run duration. Good performance work ties Dedicated throughput container measurements to user impact and avoids hiding design issues behind larger resources.
- Operations
- Operations for Dedicated throughput container should focus on ownership, observability, and safe repeatability. Standardize naming, tags, owner groups, environment labels, diagnostic destinations, runbook links, and change approvals so support teams do not reverse-engineer the design during an incident. Use read-only CLI, API, SQL, or portal checks first, then compare live state with the intended configuration. For production, connect alerts, audit events, cost records, access reviews, and release notes to the same term. The support question should be simple: who owns it, what changed, and what proves the current state?. Capture owner, scope, evidence, and rollback before changing Dedicated throughput container in a production environment.
Common mistakes
- Changing production before checking the exact owner, scope, downstream dependency, monitoring evidence, and rollback impact.
- Using a portal screenshot as the only record when CLI, API, audit logs, SQL, or source-controlled configuration can provide repeatable evidence.
- Assuming management-plane permissions, data-plane permissions, and service-specific privileges are granted and reviewed by the same team.