createIndexes
Definition
The createIndexes
command takes the following form:
- db.runCommand(
- {
- createIndexes: <collection>,
- indexes: [
- {
- key: {
- <key-value_pair>,
- <key-value_pair>,
- ...
- },
- name: <index_name>,
- <option1>,
- <option2>,
- ...
- },
- { ... },
- { ... }
- ],
- writeConcern: { <write concern> }
- }
- )
The createIndexes
command takes the following fields:
FieldTypeDescriptioncreateIndexes
stringThe collection for which to create indexes.indexes
arraySpecifies the indexes to create. Each document in the array specifies aseparate index.writeConcern
documentOptional. A document expressing the write concern. Omit to use the default write concern.
New in version 3.4.
Each document in the indexes
array can take the following fields:
Changed in version 3.0: The dropDups
option is no longer available.
FieldTypeDescriptionkey
documentSpecifies the index’s fields. For each field, specify a key-value pairin which the key is the name of the field to index and the value iseither the index direction or index type. Ifspecifying direction, specify 1
for ascending or -1
fordescending.
MongoDB supports several different index types includingtext, geospatial, and hashed indexes. See index typesfor more information.
Changed in version 4.2: MongoDB 4.2 wildcard indexessupport workloads where users query against custom fields or alarge variety of fields in a collection:
- To create a wildcard index on all fields and subfields in adocument, specify
{ "$**" : 1 }
as the index key. Youcannot specify a descending index key when creating a wildcardindex.
You can also either include or exclude specific fields andtheir subfields from the index using the optionalwildcardProjection
parameter.
Wildcard indexes omit the _id
field by default. To include the_id
field in the wildcard index, you must explicitly include itin the wildcardProjection
document (i.e. { "_id" : 1 }
).
- You can create a wildcard index on a specific fieldand its subpaths by specifying the full path to that field as theindex key and append
"$**"
to the path:
{ "path.to.field.$**" : 1 }
You cannot specify a descending index key when creating awildcard index.
The path-specific wildcard index syntax is incompatible with thewildcardProjection
option. You cannot specify additionalinclusions or exclusions on the specified path.
The wildcard index key must use one of the syntaxes listedabove. For example, you cannot specify acompound index key. For morecomplete documentation on wildcard indexes, including restrictionson their creation, see Wildcard Index Restrictions.
The mongod
featureCompatibilityVersion must be 4.2
tocreate wildcard indexes. For instructions on setting the fCV, seeSet Feature Compatibility Version on MongoDB 4.2 Deployments.
For examples of wildcard index creation, seeCreate a Wildcard Index.name
stringA name that uniquely identifies the index.background
booleanOptional. Deprecated in MongoDB 4.2.
For feature compatibility version (fcv)
"4.0"
,specifyingbackground: true
directs MongoDB to build theindex in the background. Background builds donot block operations on the collection. The default value isfalse
.
Changed in version 4.2.
For feature compatibility version (fcv) "4.2"
,all index builds use an optimizedbuild process that holds the exclusivelock only at the beginning and end of the build process. The rest ofthe build process yields to interleaving read and write operations.MongoDB ignores the background
option if specified.unique
booleanOptional. Creates a unique index so that the collection will not acceptinsertion or update of documents where the index key value matches an existingvalue in the index.
Specify true
to create a unique index. Thedefault value is false
.
The option is unavailable for hashedindexes.partialFilterExpression
documentOptional. If specified, the index only references documents that match thefilter expression. See Partial Indexes for more information.
A filter expression can include:
- equality expressions (i.e.
field: value
or using the$eq
operator), $exists: true
expression,$gt
,$gte
,$lt
,$lte
expressions,$type
expressions,$and
operator at the top-level onlyYou can specify apartialFilterExpression
option for all MongoDBindex types.
New in version 3.2.
sparse
booleanOptional. If true
, the index only references documents with the specifiedfield. These indexes use less space but behave differently in somesituations (particularly sorts). The default value is false
.See Sparse Indexes for more information.
Changed in version 3.2: Starting in MongoDB 3.2, MongoDB provides the option to createpartial indexes. Partial indexesoffer a superset of the functionality of sparse indexes. If youare using MongoDB 3.2 or later, partial indexes should be preferred over sparse indexes.
Changed in version 2.6: 2dsphere indexes are sparse by default andignore this option. For a compound index that includes2dsphere
index key(s) along with keys of other types, only the2dsphere
index fields determine whether the index references adocument.
2d, geoHaystack, andtext indexes behave similarly to the2dsphere indexes.
expireAfterSeconds
integerOptional. Specifies a value, in seconds, as a TTL to control how longMongoDB retains documents in this collection. SeeExpire Data from Collections by Setting TTL for more information on thisfunctionality. This applies only to TTL indexes.storageEngine
documentOptional. Allows users to configure the storage engine on aper-index basis when creating an index.
The storageEngine
option should take the following form:
- storageEngine: { <storage-engine-name>: <options> }
Storage engine configuration options specified when creating indexes arevalidated and logged to the oplog during replication tosupport replica sets with members that use different storageengines.
New in version 3.0.
weights
documentOptional. For text indexes, a document that containsfield and weight pairs. The weight is an integer ranging from 1 to99,999 and denotes the significance of the field relative to theother indexed fields in terms of the score. You can specify weightsfor some or all the indexed fields. SeeControl Search Results with Weights to adjust the scores.The default value is 1
.default_language
stringOptional. For text indexes, the language thatdetermines the list of stop words and the rules for the stemmer andtokenizer. See Text Search Languages for the availablelanguages and Specify a Language for Text Index formore information and examples. The default value is english
.language_override
stringOptional. For text indexes, the name of the field, inthe collection’s documents, that contains the override language forthe document. The default value is language
. SeeUse any Field to Specify the Language for a Document for an example.textIndexVersion
integerOptional. The text
index version number. Users can use this option tooverride the default version number.
For available versions, see Versions.
New in version 2.6.
2dsphereIndexVersion
integerOptional. The 2dsphere
index version number. Users can use this option tooverride the default version number.
For the available versions, see Versions.
New in version 2.6.
bits
integerOptional. For 2d indexes, the number of precision of thestored geohash value of the location data.
The bits
value ranges from 1 to 32 inclusive. The default valueis 26
.min
numberOptional. For 2d indexes, the lower inclusive boundary forthe longitude and latitude values. The default value is -180.0
.max
numberOptional. For 2d indexes, the upper inclusive boundary forthe longitude and latitude values. The default value is 180.0
.bucketSize
numberFor geoHaystack indexes, specify thenumber of units within which to group the location values; i.e. groupin the same bucket those location values that are within thespecified number of units to each other.
The value must be greater than 0.collation
documentOptional. Specifies the collation for the index.
Collation allows users to specifylanguage-specific rules for string comparison, such as rules forlettercase and accent marks.
If you have specified a collation at the collection level, then:
- If you do not specify a collation when creating the index, MongoDBcreates the index with the collection’s default collation.
- If you do specify a collation when creating the index, MongoDBcreates the index with the specified collation.The collation option has the following syntax:
- collation: {
- locale: <string>,
- caseLevel: <boolean>,
- caseFirst: <string>,
- strength: <int>,
- numericOrdering: <boolean>,
- alternate: <string>,
- maxVariable: <string>,
- backwards: <boolean>
- }
When specifying collation, the locale
field is mandatory; allother collation fields are optional. For descriptions of the fields,see Collation Document.
New in version 3.4.
wildcardProjection
documentOptional. Allows users to include or exclude specific field paths froma wildcard index using the{ "$" : 1}
key pattern. This option is onlyvalid if creating a wildcard index onall document fields. You cannot specify this option if creatinga wildcard index on a specific field path and its subfields, e.g.{ "path.to.field.$
" : 1 }
The wildcardProjection
option takes the following form:
- wildcardProjection: {
- "path.to.field.a" : <value>,
- "path.to.field.b" : <value>
- }
The <value>
can be either of the following:
1
ortrue
to include the field in the wildcard index.0
orfalse
to exclude the field from the wildcard index.AwildcardProjection
cannot contain both include and excludespecifications, with the exception of including the_id
fieldwhile excluding other fields.
Note
As MongoDB includes an index on _id
by default, wildcardindexes omit the _id
field. To include the _id
field in thewildcard index, you must explicitly include it in thewildcardProjection
document:
- "wildcardProjection" : {
- "_id" : 1
- }
The _id
field is the only field you can specify along withfield exclusions.
The mongo
shell provides the methodsdb.collection.createIndex()
anddb.collection.createIndexes()
as wrappers for thecreateIndexes
command.
Considerations
Changed in version 3.2: MongoDB disallows the creation of version 0 indexes. To upgrade existing version 0indexes, see Version 0 Indexes.
Index Names
Changed in MongoDB 4.2
Starting in version 4.2, for featureCompatibilityVersion set to "4.2"
or greater, MongoDB removes theIndex Name Length
limit of 127 byte maximum. In previousversions or MongoDB versions withfeatureCompatibilityVersion (fCV) set to"4.0"
, index names must fall within thelimit
.
Starting in version 4.2, the createIndexes
command andthe mongo
shell helpersdb.collection.createIndex()
anddb.collection.createIndexes()
report an error if youcreate an index with one name, and then try to create the same indexagain but with another name.
- {
- "ok" : 0,
- "errmsg" : "Index with name: x_1 already exists with a different name",
- "code" : 85,
- "codeName" : "IndexOptionsConflict"
- }
In previous versions, MongoDB did not create the index again, butwould return a response object with ok
value of 1
and a notethat implied that the index was not recreated. For example:
- {
- "numIndexesBefore" : 2,
- "numIndexesAfter" : 2,
- "note" : "all indexes already exist",
- "ok" : 1
- }
Replica Sets and Sharded Clusters
To minimize the impact of building an index on replica sets and shardedclusters, use a rolling index build procedureas described on Build Indexes on Replica Sets.
Collation and Index Types
The following indexes only support simple binary comparison and donot support collation:
- text indexes,
- 2d indexes, and
- geoHaystack indexes.
Tip
To create a text
, a 2d
, or a geoHaystack
index on acollection that has a non-simple collation, you must explicitlyspecify {collation: {locale: "simple"} }
when creating theindex.
Behavior
Concurrency
Changed in version 4.2.
For featureCompatibilityVersion "4.2"
, createIndexes
uses an optimized build process that obtains and holds an exclusive lock onthe specified collection at the start and end of the index build. Allsubsequent operations on the collection must wait until createIndexes
releasesthe exclusive lock. createIndexes
allows interleaving read and writeoperations during the majority of the index build.
For featureCompatibilityVersion "4.0"
, createIndexes
uses the pre-4.2 index build process which by default obtains an exclusivelock on the parent database for the entire duration of the build process. Thepre-4.2 build process blocks all operations on the database and all itscollections until the operation completed. background
indexes do not takean exclusive lock.
For more information on the locking behavior of createIndexes
, seeIndex Builds on Populated Collections.
Memory Usage Limit
Changed in version 3.4: createIndexes
supports building one or more indexes on acollection. createIndexes
uses a combination of memory andtemporary files on disk to complete index builds. The default limit onmemory usage for createIndexes
is 500 megabytes, sharedbetween all indexes built using a single createIndexes
command. Once the memory limit is reached, createIndexes
uses temporary disk files in a subdirectory named _tmp
within the—dbpath
directory to complete the build.
You can override the memory limit by setting themaxIndexBuildMemoryUsageMegabytes
server parameter. Settinga higher memory limit may result in faster completion of index buildslarger than 500 megabytes. However, setting this limit too high relativeto the unused RAM on your system can result in memory errors.
Index Options
With the exception of the collation option, if you create an index with one setof index options and then try to recreate the same index but withdifferent index options, MongoDB will not change the options norrecreate the index.
To change these index options, drop the existing index withdb.collection.dropIndex()
before runningcreateIndexes
with the new options.
Collation Option
New in version 3.4.
Unlike other index options, you can create multiple indexes on the samekey(s) with different collations. To create indexes with the same keypattern but different collations, you must supply unique index names.
If you have specified a collation at the collection level, then:
- If you do not specify a collation when creating the index, MongoDBcreates the index with the collection’s default collation.
- If you do specify a collation when creating the index, MongoDBcreates the index with the specified collation.
Tip
By specifying a collation strength
of 1
or 2
, you cancreate a case-insensitive index. Index with a collation strength
of 1
is both diacritic- and case-insensitive.
To use an index for string comparisons, an operation must alsospecify the same collation. That is, an index with a collationcannot support an operation that performs string comparisons on theindexed fields if the operation specifies a different collation.
For example, the collection myColl
has an index on a stringfield category
with the collation locale "fr"
.
- db.myColl.createIndex( { category: 1 }, { collation: { locale: "fr" } } )
The following query operation, which specifies the same collation asthe index, can use the index:
- db.myColl.find( { category: "cafe" } ).collation( { locale: "fr" } )
However, the following query operation, which by default uses the“simple” binary collator, cannot use the index:
- db.myColl.find( { category: "cafe" } )
For a compound index where the index prefix keys are not strings,arrays, and embedded documents, an operation that specifies adifferent collation can still use the index to support comparisonson the index prefix keys.
For example, the collection myColl
has a compound index on thenumeric fields score
and price
and the string fieldcategory
; the index is created with the collation locale"fr"
for string comparisons:
- db.myColl.createIndex(
- { score: 1, price: 1, category: 1 },
- { collation: { locale: "fr" } } )
The following operations, which use "simple"
binary collationfor string comparisons, can use the index:
- db.myColl.find( { score: 5 } ).sort( { price: 1 } )
- db.myColl.find( { score: 5, price: { $gt: NumberDecimal( "10" ) } } ).sort( { price: 1 } )
The following operation, which uses "simple"
binary collationfor string comparisons on the indexed category
field, can usethe index to fulfill only the score: 5
portion of the query:
- db.myColl.find( { score: 5, category: "cafe" } )
Wildcard Indexes
New in version 4.2.
Wildcard indexes omit the
_id
field by default. To include the_id
field in the wildcard index, you must explicitly include itin thewildcardProjection
document (i.e.{ "_id" : 1 }
).The
mongod
featureCompatibilityVersion must be4.2
tocreate wildcard indexes. For instructions on setting the fCV, seeSet Feature Compatibility Version on MongoDB 4.2 Deployments.Wildcard indexes do not support the following index types orproperties:
Note
Wildcard Indexes are distinct from and incompatible withWildcard Text Indexes. Wildcard indexes cannot supportqueries using the $text
operator.
For complete documentation on wildcard index restrictions, seeWildcard Index Restrictions.
For examples of wildcard index creation, seeCreate a Wildcard Index. For completedocumentation on Wildcard Indexes, see Wildcard Indexes.
Example
The following command builds two indexes on the inventory
collection ofthe products
database:
- db.getSiblingDB("products").runCommand(
- {
- createIndexes: "inventory",
- indexes: [
- {
- key: {
- item: 1,
- manufacturer: 1,
- model: 1
- },
- name: "item_manufacturer_model",
- unique: true
- },
- {
- key: {
- item: 1,
- supplier: 1,
- model: 1
- },
- name: "item_supplier_model",
- unique: true
- }
- ],
- writeConcern: { w: "majority" }
- }
- )
When the indexes successfully finish building, MongoDB returns a resultsdocument that includes a status of "ok" : 1
.
Create a Wildcard Index
New in version 4.2: The mongod
featureCompatibilityVersion must be 4.2
tocreate wildcard indexes. For instructions on setting the fCV, seeSet Feature Compatibility Version on MongoDB 4.2 Deployments.
For complete documentation on Wildcard Indexes, seeWildcard Indexes.
The following lists examples of wildcard index creation:
- Create a Wildcard Index on a Single Field Path
- Create a Wildcard Index on All Field Paths
- Create a Wildcard Index on Multiple Specific Field Paths
- Create a Wildcard Index that Excludes Multiple Specific Field Paths
Create a Wildcard Index on a Single Field Path
Consider a collection products_catalog
where documents may contain aproduct_attributes
field. The product_attributes
field cancontain arbitrary nested fields, including embeddeddocuments and arrays:
- {
- "_id" : ObjectId("5c1d358bf383fbee028aea0b"),
- "product_name" : "Blaster Gauntlet",
- "product_attributes" : {
- "price" : {
- "cost" : 299.99
- "currency" : USD
- }
- ...
- }
- },
- {
- "_id" : ObjectId("5c1d358bf383fbee028aea0c"),
- "product_name" : "Super Suit",
- "product_attributes" : {
- "superFlight" : true,
- "resistance" : [ "Bludgeoning", "Piercing", "Slashing" ]
- ...
- },
- }
The following operation creates a wildcard index on theproduct_attributes
field:
- use inventory
- db.runCommand(
- {
- createIndexes: "products_catalog",
- indexes: [
- {
- key: { "product_attributes.$**" : 1 },
- name: "wildcardIndex"
- }
- ]
- }
- )
With this wildcard index, MongoDB indexes all scalar values ofproduct_attributes
. If the field is a nested document or array, thewildcard index recurses into the document/array and indexes all scalarfields in the document/array.
The wildcard index can support arbitrary single-field queries onproduct_attributes
or one of its nested fields:
- db.products_catalog.find( { "product_attributes.superFlight" : true } )
- db.products_catalog.find( { "product_attributes.maxSpeed" : { $gt : 20 } } )
- db.products_catalog.find( { "product_attributes.elements" : { $eq: "water" } } )
Create a Wildcard Index on All Field Paths
Consider a collection products_catalog
where documents may contain aproduct_attributes
field. The product_attributes
field cancontain arbitrary nested fields, including embeddeddocuments and arrays:
- {
- "_id" : ObjectId("5c1d358bf383fbee028aea0b"),
- "product_name" : "Blaster Gauntlet",
- "product_attributes" : {
- "price" : {
- "cost" : 299.99
- "currency" : USD
- }
- ...
- }
- },
- {
- "_id" : ObjectId("5c1d358bf383fbee028aea0c"),
- "product_name" : "Super Suit",
- "product_attributes" : {
- "superFlight" : true,
- "resistance" : [ "Bludgeoning", "Piercing", "Slashing" ]
- ...
- },
- }
The following operation creates a wildcard index on all scalar fields(excluding the _id
field):
- use inventory
- db.runCommand(
- {
- createIndexes: "products_catalog",
- indexes: [
- {
- key: { "$**" : 1 },
- name: "wildcardIndex"
- }
- ]
- }
- )
With this wildcard index, MongoDB indexes all scalar fields for eachdocument in the collection. If a given field is a nested document orarray, the wildcard index recurses into the document/array and indexesall scalar fields in the document/array.
The created index can support queries on any arbitrary fieldwithin documents in the collection:
- db.products_catalog.find( { "product_price" : { $lt : 25 } } )
- db.products_catalog.find( { "product_attributes.elements" : { $eq: "water" } } )
Wildcard indexes omit the _id
field by default. To include the_id
field in the wildcard index, you must explicitly include itin the wildcardProjection
document (i.e. { "_id" : 1 }
).
Create a Wildcard Index on Multiple Specific Field Paths
Consider a collection products_catalog
where documents may contain aproduct_attributes
field. The product_attributes
field cancontain arbitrary nested fields, including embeddeddocuments and arrays:
- {
- "_id" : ObjectId("5c1d358bf383fbee028aea0b"),
- "product_name" : "Blaster Gauntlet",
- "product_attributes" : {
- "price" : {
- "cost" : 299.99
- "currency" : USD
- }
- ...
- }
- },
- {
- "_id" : ObjectId("5c1d358bf383fbee028aea0c"),
- "product_name" : "Super Suit",
- "product_attributes" : {
- "superFlight" : true,
- "resistance" : [ "Bludgeoning", "Piercing", "Slashing" ]
- ...
- },
- }
The following operation creates a wildcard index and usesthe wildcardProjection
option to include only scalar values of theproduct_attributes.elements
and product_attributes.resistance
fields in the index.
- use inventory
- db.runCommand(
- {
- createIndexes: "products_catalog",
- indexes: [
- {
- key: { "$**" : 1 },
- "wildcardProjection" : {
- "product_attributes.elements" : 1,
- "product_attributes.resistance" : 1
- },
- name: "wildcardIndex"
- }
- ]
- }
- )
While the key pattern "$**"
covers all fields in the document, thewildcardProjection
field limits the index to only the includedfields and their nested fields.
If a field is a nested document or array, the wildcardindex recurses into the document/array and indexes all scalar fields inthe document/array.
The created index can support queries on any scalar fieldincluded in the wildcardProjection
:
- db.products_catalog.find( { "product_attributes.elements" : { $eq: "Water" } } )
- db.products_catalog.find( { "product_attributes.resistance" : "Bludgeoning" } )
Wildcard indexes omit the _id
field by default. To include the_id
field in the wildcard index, you must explicitly include itin the wildcardProjection
document (i.e. { "_id" : 1 }
).
Create a Wildcard Index that Excludes Multiple Specific Field Paths
Consider a collection products_catalog
where documents may contain aproduct_attributes
field. The product_attributes
field cancontain arbitrary nested fields, including embeddeddocuments and arrays:
- {
- "_id" : ObjectId("5c1d358bf383fbee028aea0b"),
- "product_name" : "Blaster Gauntlet",
- "product_attributes" : {
- "price" : {
- "cost" : 299.99
- "currency" : USD
- }
- ...
- }
- },
- {
- "_id" : ObjectId("5c1d358bf383fbee028aea0c"),
- "product_name" : "Super Suit",
- "product_attributes" : {
- "superFlight" : true,
- "resistance" : [ "Bludgeoning", "Piercing", "Slashing" ]
- ...
- },
- }
The following operation creates a wildcard index and usesthe wildcardProjection
document to index all scalar fieldsfor each document in the collection, excluding theproduct_attributes.elements
and product_attributes.resistance
fields:
- use inventory
- db.runCommand(
- {
- createIndexes: "products_catalog",
- indexes: [
- {
- key: { "$**" : 1 },
- "wildcardProjection" : {
- "product_attributes.elements" : 0,
- "product_attributes.resistance" : 0
- },
- name: "wildcardIndex"
- }
- ]
- }
- )
While the key pattern "$**"
covers all fields in the document, thewildcardProjection
field excludes the specified fields from theindex.
If a field is a nested document or array, the wildcardindex recurses into the document/array and indexes all scalar fields inthe document/array.
The created index can support queries on any scalar field exceptthose excluded by wildcardProjection
:
- db.products_catalog.find( { "product_attributes.maxSpeed" : { $gt: 25 } } )
- db.products_catalog.find( { "product_attributes.superStrength" : true } )
As MongoDB includes an index on _id
by default, wildcardindexes omit the _id
field. To include the _id
field in thewildcard index, you must explicitly include it in thewildcardProjection
document:
- "wildcardProjection" : {
- "_id" : 1
- }
The _id
field is the only field you can specify along withfield exclusions.
Output
The createIndexes
command returns a document that indicatesthe success of the operation. The document contains some but not all ofthe following fields, depending on outcome:
createIndexes.
createdCollectionAutomatically
- If
true
, then the collection didn’t exist and was created in theprocess of creating the index.