Join us Sept 17 at .local NYC! Use code WEB50 to save 50% on tickets. Learn more >
MongoDB Jokes
Docs Menu
Docs Home
/ / / /

Define Field Mappings

When you create a MongoDB Search index, you can specify which fields to index using the following methods:

  • Dynamic mappings: Enable MongoDB Search to automatically index all fields based on a default or configured set of field types (typeSet).

  • Static mappings: Enable you to specify which fields to index.

By default, MongoDB Search stops replicating changes for indexes larger than 2.1 billion index objects on a replica set or single shard, where each indexed document or nested embeddedDocument counts as a single object. This means that your index remains queryable, but you might get stale results.

If you plan to index fields that might exceed 2.1 billion objects, where an index object is a top-level document or an embedded document, use the numPartitions index option to partition your index (supported only on Search Nodes deployment) or shard your cluster.

You can't index fields that contain the dollar ($) sign at the start of the field name.

The following syntax demonstrates how to enable MongoDB Search to index fields using dynamic and static mappings. To learn more about dynamic and static mappings, see Dynamic and Static Mappings.

1{
2 "mappings": {
3 "dynamic": true|false | {
4 "typeSet": "<typeset-name>"
5 },
6 "fields": {
7 "<field-name>": {
8 "type": "<field-type>",
9 ...
10 },
11 ...
12 }
13 },
14 "typeSets": [
15 {
16 "name": "<typeset-name>",
17 "types": [
18 {
19 "type": "<field-type>",
20 ...
21 },
22 ...
23 ]
24 },
25 ...
26 ]
27}

You can configure MongoDB Search with:

  • Dynamic mappings to automatically index fields based on a default or configured set of types (typeSet)

  • Static mappings to only index specified fields

You can also use dynamic mappings with static mappings. Static mappings override the dynamic mappings configuration.

MongoDB Search dynamic mappings allow you to configure MongoDB Search to automatically and recursively index fields in your data. Fields can be indexed based on the default set of types or by configuring a typeSet.

You can enable or configure dynamic mappings:

  • At the root mappings level to apply to the entire document.

  • [Recommended] Within a document field type to apply to a specified object.

  • [Recommended] Within an embeddedDocuments field type to apply to a specified array of objects that require element-wise query comparisons (similar to $elemMatch).

Note

Best Practices

Dynamic mappings might result in indexing a high number of unique fields, which will occupy more disk space and might be less performant. Only use dynamic mappings if you need to index fields that change regularly or that are unknown. Always use dynamic mappings within a document, not at the parent document level.

When you use dynamic mappings to index your data:

  • MongoDB Search also dynamically indexes all nested fields supported by the typeSet in a document object in your data.

  • If a field contains polymorphic data, MongoDB Search automatically indexes the field as all of the types supported by the typeSet used in the index. If a field contains data of a type not supported by the typeSet, MongoDB Search won't index that data.

MongoDB Search uses the default typeSet when dynamic is set to true. In the default typeSet, MongoDB Search indexes the BSON types as MongoDB Search field types. The following table shows the BSON types that MongoDB Search automatically indexes as MongoDB Search field types when you use the default typeSet. MongoDB Search also automatically indexes the following BSON types when they are contained within arrays and objects.

BSON Type
MongoDB Search Field Type

Boolean

Date

Double, 32-bit Integer, 64-Bit Integer

ObjectId

String

UUID

Null

The following is the syntax for enabling default type set for dynamic mappings:

1{
2 "mappings": {
3 "dynamic": true
4 }
5}

For index examples that demonstrate indexing all fields using the default typeSet, see Dynamic Mapping Examples.

Important

Configurable dynamic mappings is in Preview. The feature and corresponding documentation might change at any time during the Preview period. To learn more, see Preview Features.

Specify the MongoDB Search field types to index dynamically by configuring a typeSet. You can configure any BSON type to be automatically indexed as any MongoDB Search field type except document, embeddedDocuments, or deprecated field types.

A typeSet has the following syntax:

1{
2 "mappings": {
3 "dynamic": {
4 "typeSet": "<typeset-name>"
5 },
6 "fields": {
7 "<field-name>": {
8 "type": "<field-type>",
9 ...
10 },
11 ...
12 }
13 },
14 "typeSets": [
15 {
16 "name": "<typeset-name>",
17 "types": [
18 {
19 "type": "<field-type>"
20 },
21 ...
22 ]
23 },
24 ...
25 ]
26}

Before configuring a typeSet, consider the following:

  • You cannot define the same field type multiple times in the same typeSet object. You can configure only one typeSet definition for each field type.

    For example, you can't define multiple configurations for the number type in the same typeSet definition.

  • You can configure dynamic mappings with the multi analyzer.

You can't configure a typeSet from the Atlas UI Visual Editor. Use the Atlas UI JSON Editor instead.

For index examples that demonstrate using custom typeSet configuration, see Dynamic Mapping Examples.

Use static mappings to configure index options for fields that you don't want indexed dynamically, or to configure a single field independently from others in an index. When you use static mappings, MongoDB Search indexes only the fields that you specify in mappings.fields. You can also use static mappings to exclude fields from being indexed.

To use static mappings to configure index options for only some fields, set mappings.dynamic to false and specify the field name, data type, and other configuration options for each field that you want to index. You can specify the fields in any order.

If you omit the mappings.dynamic field, it defaults to false.

1{
2 "mappings": {
3 "dynamic": true|false,
4 "fields": {
5 "<field-name>": {
6 "type": "<field-type>",
7 ...
8 },
9 ...
10 }
11 }
12}

To define the index for a nested field, you must define the mappings for each parent field of that nested field. You can't use dot notation to statically index nested fields. For examples, see the Examples or Combined Mapping Example below.

You can use static mappings to index fields as multiple types. To index a field as multiple types, define the types in the field definition array for the field. You can index any field as any supported types using static mappings. To learn more, see MongoDB Search Field Types.

The following example shows the field definition for indexing a field as multiple types.

1{
2 "mappings": {
3 "dynamic": true|false | {
4 "typeSet": "<type-set-name>"
5 },
6 "fields": {
7 "<field-name>": [
8 {
9 "type": "<field-type>",
10 ...
11 },
12 {
13 "type": "<field-type>",
14 ...
15 },
16 ...
17 ],
18 ...
19 }
20 }.
21 "typeSets": [
22 {
23 "name": "<typeset-name>",
24 "types": [
25 {
26 "type": "<field-type>"
27 },
28 ...
29 ]
30 },
31 ...
32 ]
33}

For other index examples that demonstrate static mappings, see Static Mapping Example.

MongoDB Search doesn't support the following BSON data types:

  • Decimal128

  • JavaScript code with scope

  • Max key

  • Min key

  • Regular Expression

  • Timestamp

MongoDB Search automatically stores fields of type string on mongot. You can store fields of all supported data types on MongoDB Search using the Define Stored Source Fields in Your MongoDB Search Index option in your index definition. To learn more about mongot and MongoDB Search node architecture, see MongoDB Search Deployment Options.

The following table enumerates the supported BSON data types and the MongoDB Search field types that you can use to index the BSON data types. The table also lists the operators and collectors that you can use to query the field values.

BSON Type
MongoDB Search Field Type
Operators and Collectors

Operators that support the data type in the array.

Boolean

Date

Date

Double

Double

Double

32-bit integer

32-bit integer

64-bit integer

64-bit integer

Null

N/A

Object

Operators that support the field types in the object.

Object

embeddedDocument (for array of objects)

ObjectId

String

String

String

String

These operators do not support an array of strings.

MongoDB Search doesn't include a field type for indexing null values because MongoDB Search automatically indexes null values for both statically and dynamically indexed fields.

Deprecated. To learn more about the deprecated facet field types and their updated counterparts, see Comparing Field Types for Facet.

Note

You can store fields of all supported data types on MongoDB Search using the storedSource option.

The following examples use the sample_mflix.movies collection to demonstrate how to configure the fields to index using dynamic and static mappings. If you load the sample data, you can create these indexes on the collection. To learn how to create MongoDB Search indexes, see MongoDB Search Quick Start.

The following index definition examples demonstrate dynamic mappings.

The following index definition example demonstrates static mappings.

The following index definition examples combine dynamic mappings with static mappings.

Back

Token Filters