Service Limits in Azure Cosmos DB for MongoDB vCore

This document outlines the current hard and soft limits for Azure Cosmos DB for MongoDB vCore. Many of these limitations are temporary and will evolve over time as the service continues to improve. If any of these limits are an issue for your organization, reach out to our team for assistance.

Query and Execution Limits

MongoDB Execution Limits

  • Maximum transaction lifetime: 30 seconds.
  • Cursor lifetime: 10 minutes. Note: A cursorNotFound error might occur if the cursor exceeds its lifetime.
  • Default query execution limit: 120 seconds. This can be overridden on a per-query basis using maxTimeMS in the respective MongoDB driver.

Example:

db.collection.find({ field: "value" }).maxTimeMS(5000)

Maximum MongoDB Query Size

  • The maximum memory size for MongoDB queries depends on the tier. For example, for M80, the query memory size limit is approximately 150 MiB.
  • In sharded clusters, if a query pulls data across nodes, the limit on that data size is 1 GB.

Indexing Limits

General Indexing Limits

  • Maximum number of compound index fields: 32.
  • Maximum size for _id field value: 2 KB.
  • Maximum size for index path: 256B.
  • Default maximum: 64.
    • Configurable up to: 300 indexes per collection.
  • Sorting is done in memory and doesn't push down to the index.
  • Maximum level of nesting for embedded objects/arrays on index definitions: 6.
  • Background index builds are in preview. To enable, reach out to our team for assistance.
    • A single index build can be in progress on the same collection.
    • The number of simultaneous index builds on different collections is configurable (default: 2).
    • Use the currentOp command to view the progress of long-running index builds.
    • Unique index builds are done in the foreground and block writes in the collection.

Wildcard Indexing Limits

  • For wildcard indexes, if the indexed field is an array of arrays, the entire embedded array is taken as a value instead of traversing its contents.

Geospatial Indexing Limits

  • No support for BigPolygons.
  • Composite indexes don't support geospatial indexes.
  • $geoWithin query doesn't support polygons with holes.
  • The key field is required in the $geoNear aggregation stage.
  • Indexes are recommended but not required for $near, $nearSphere query operators, and the $geoNear aggregation stage.

Text Index Limits

  • Only one text index can be defined on a collection.
  • Supports simple text searches only; advanced search capabilities like regular expression searches aren't supported.
  • hint() isn't supported in combination with a query using $text expression.
  • Sort operations can't use the ordering of the text index.
  • Tokenization for Chinese isn't supported yet.
  • Case insensitive tokenization isn't supported yet.

Vector Search Limits

  • Indexing vectors up to 2,000 dimensions in size.
  • Indexing applies to only one vector per path.
  • Only one index can be created per vector path.

Cluster and Shard Limits

Cluster Tier

Shards

Collection and index limits

  • Collections per cluster: 1,000
  • Collection size: 4 TiB
  • Indexes per cluster: 100
  • Total index size: 100 GiB

Reach out to our team for the higher values support.

Secondary Regions

Free Tier Limits

The following limitations can be overridden by upgrading to a paid tier

  • Maximum storage: 32 GiB.
  • Backup / Restore not supported (available in M25+)
  • High availability (HA) not supported (available in M30+)
  • HNSW vector indexes not supported (available in M40+)
  • Diagnostic logging not supported (available in M40+)
  • No service-level-agreement provided (requires HA to be enabled)
  • Free tier clusters are paused after 60 days of inactivity where there are no connections to the cluster.

Replication and HA (high availability) Limits

Cross-Region Replication (preview)

  • Supported only on single shard (node) vCore clusters.
  • The following configurations are the same on both primary and replica clusters and can't be changed on the replica cluster:
    • Compute configuration
    • Storage and shard count
    • User accounts
  • HA isn't supported on replica clusters.
  • The following features aren't available when cross-replication preview is enabled:
    • Private endpoints (Private Link).
    • Diagnostic settings.
    • Point-in-time restore preview.
  • Cross-region replication isn't available on clusters with burstable compute or Free tier clusters.

Miscellaneous Limits

Portal Mongo Shell Usage

  • The Portal Mongo Shell can be used for 120 minutes within a 24-hour window.

Next steps