Docs Menu

Docs HomeDevelop ApplicationsMongoDB Manual

Time Series Collection Limitations

On this page

  • Unsupported Features
  • Constraints
  • Aggregation $out and $merge
  • Updates and Deletes
  • Secondary Indexes
  • Capped Collections
  • Modification of Collection Type
  • Modification of timeField and metaField
  • Modification of granularity
  • Sharding
  • Sharding Administration Commands
  • Transactions

The following features are not supported for time series collections.

The maximum size of a measurement document is 4 MB.

You can't use aggregation pipeline stages $out and $merge to output or merge into to time series collections from another collection.

Starting in MongoDB 5.0.5, you can perform some delete and update operations.

Delete commands must meet the following requirements:

  • The query may only match on metaField field values.

  • The delete command may not limit the number of documents to be deleted. You must use a delete command with justOne: false or the deleteMany() method.

Update commands must meet the following requirements:

  • The query may only match on metaField field values.

  • The update command may only modify the metaField field value.

  • The update must be performed with an update document that contains only update operator expressions.

  • The update command may not limit the number of documents to be updated. You must use an update command with multi: true or the updateMany() method.

  • The update command may not set upsert: true.

To automatically delete old data, set up automatic removal (TTL).

To remove all documents from a collection, use the drop() method to drop the collection.

If a time series collection contains documents with timeField timestamps before 1970-01-01T00:00:00.000Z or after 2038-01-19T03:14:07.000Z, no documents are deleted from the collection by the TTL "time to live" feature.

For details on TTL deletes, see Expire Data from Collections by Setting TTL.

You can add secondary indexes on the fields specified as the timeField and the metaField. If the field value for the metaField field is a document, you can also create secondary indexes on fields inside that document.

The metaField doesn't support the following index types:

Secondary indexes don't support the following index properties:

A time series collection can't be created as a capped collection.

A collection's type can only be set when creating the collection:

To move data from an existing collection to a time series collection, migrate data into a time series collection.

You can only set a collection's timeField and metaField parameters when creating the collection. After creation these parameters can't be modified.

Once the granularity is set it can only be increased by one level at a time. From "seconds" to "minutes" or from "minutes" to "hours". Other changes are not allowed. If you need to change the granularity from "seconds" to "hours", first increase the granularity to "minutes" and then to "hours".

Starting in MongoDB 5.0.6, sharded time series collections are supported. When using sharded time series collections, you cannot modify the granularity of a sharded time series collection.

In versions earlier than MongoDB 5.0.6, you cannot shard time series collections.

You cannot run sharding administration commands on sharded time series collections.

You can't write to time series collections in transactions.

Note

Reads from time series collections are supported in transactions.

← Time Series Collections