Index Builds on Populated Collections
On this page
Starting in MongoDB 4.2, index builds use an optimized build process that holds an exclusive lock on the collection at the beginning and end of the index build. The rest of the build process yields to interleaving read and write operations. For a detailed description of index build process and locking behavior, see Index Build Process.
Starting in MongoDB 4.4, index builds on a replica set or sharded
cluster build simultaneously across all data-bearing replica set
members. The primary requires a minimum number of data-bearing voting
members (i.e. commit quorum), including itself, that must complete the
build before marking the index as ready for use. A "voting" member is
any replica set member where members[n].votes
is greater than
0
. See Index Builds in Replicated Environments for more
information.
Behavior
Comparison to Foreground and Background Builds
Previous versions of MongoDB supported building indexes either in the foreground or background. Foreground index builds were fast and produced more efficient index data structures, but required blocking all read-write access to the parent database of the collection being indexed for the duration of the build. Background index builds were slower and had less efficient results, but allowed read-write access to the database and its collections during the build process.
Starting in MongoDB 4.2, index builds obtain an exclusive lock on only the collection being indexed during the start and end of the build process to protect metadata changes. The rest of the build process uses the yielding behavior of background index builds to maximize read-write access to the collection during the build. 4.2 index builds still produce efficient index data structures despite the more permissive locking behavior.
The optimized index build performance is at least on par with background index builds. For workloads with few or no updates received during the build process, optimized index builds can be as fast as a foreground index build on that same data.
Use db.currentOp()
to monitor the progress of ongoing index
builds.
MongoDB ignores the background
index build option if specified to
createIndexes
or its shell helpers
createIndex()
and
createIndexes()
.
Constraint Violations During Index Build
For indexes that enforce constraints on the collection, such as
unique indexes, the mongod
checks all pre-existing and concurrently-written documents for
violations of those constraints after the index build completes.
Documents that violate the index constraints can exist during the index
build. If any documents violate the index constraints at the end of the
build, the mongod
terminates the build and throws an
error.
For example, consider a populated collection inventory
. An
administrator wants to create a unique index on the product_sku
field. If any documents in the collection have duplicate values for
product_sku
, the index build can still start successfully.
If any violations still exist at the end of the build,
the mongod
terminates the build and throws an error.
Similarly, an application can successfully write documents to the
inventory
collection with duplicate values of product_sku
while
the index build is in progress. If any violations still exist at the end
of the build, the mongod
terminates the build and throws
an error.
To mitigate the risk of index build failure due to constraint violations:
Validate that no documents in the collection violate the index constraints.
Stop all writes to the collection from applications that cannot guarantee violation-free write operations.
Sharded Collections
For a sharded collection distributed across multiple shards, one or
more shards may contain a chunk with duplicate documents. As such, the
create index operation may succeed on some of the shards (i.e. the ones
without duplicates) but not on others (i.e. the ones with duplicates).
To avoid leaving inconsistent indexes across shards, you can issue the
db.collection.dropIndex()
from a mongos
to
drop the index from the collection.
To mitigate the risk of this occurrence, before creating the index:
Validate that no documents in the collection violate the index constraints.
Stop all writes to the collection from applications that cannot guarantee violation-free write operations.
Maximum Concurrent Index Builds
By default, the server allows up to three concurrent index builds. To
change the number of allowed concurrent index builds, modify the
maxNumActiveUserIndexBuilds
parameter.
If the number of concurrent index builds reaches the limit specified by
maxNumActiveUserIndexBuilds
, the server blocks additional index
builds until the number of concurrent index builds drops below the
limit.
Index Build Impact on Database Performance
Index Builds During Write-Heavy Workloads
Building indexes during time periods where the target collection is under heavy write load can result in reduced write performance and longer index builds.
Consider designating a maintenance window during which applications stop or reduce write operations against the collection. Start the index build during this maintenance window to mitigate the potential negative impact of the build process.
Insufficient Available System Memory (RAM)
createIndexes
supports building one or more indexes on a
collection. createIndexes
uses a combination of memory and
temporary files on disk to complete index builds. The default limit on
memory usage for createIndexes
is 200 megabytes (for
versions 4.2.3 and later) and 500 (for versions 4.2.2 and earlier),
shared between 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 the
maxIndexBuildMemoryUsageMegabytes
server parameter.
Setting a higher memory limit may result in faster completion of index
builds. However, setting this limit too high relative to the unused RAM
on your system can result in memory exhaustion and server shutdown.
If the host machine has limited available free RAM, you may need
to schedule a maintenance period to increase the total system RAM
before you can modify the mongod
RAM usage.
Index Builds in Replicated Environments
Note
Requires featureCompatibilityVersion 4.4+
Each mongod
in the replica set or sharded cluster
must have featureCompatibilityVersion set to at
least 4.4
to start index builds simultaneously across
replica set members.
MongoDB 4.4 running featureCompatibilityVersion: "4.2"
builds
indexes on the primary before replicating the index build to
secondaries.
Starting with MongoDB 4.4, index builds on a replica set or sharded
cluster build simultaneously across all data-bearing replica set
members. For sharded clusters, the index build occurs only on shards
containing data for the collection being indexed. The primary
requires a minimum number of data-bearing voting
members (i.e commit quorum), including itself,
that must complete the build before marking the index as ready for
use.
The build process is summarized as follows:
The primary receives the
createIndexes
command and immediately creates a "startIndexBuild" oplog entry associated with the index build.The secondaries start the index build after they replicate the "startIndexBuild" oplog entry.
Each member "votes" to commit the build once it finishes indexing data in the collection.
Secondary members continue to process any new write operations into the index while waiting for the primary to confirm a quorum of votes.
When the primary has a quorum of votes, it checks for any key constraint violations such as duplicate key errors.
If there are no key constraint violations, the primary completes the index build, marks the index as ready for use, and creates an associated "commitIndexBuild" oplog entry.
If there are any key constraint violations, the index build fails. The primary aborts the index build and creates an associated "abortIndexBuild" oplog entry.
The secondaries replicate the "commitIndexBuild" oplog entry and complete the index build.
If the secondaries instead replicate an "abortIndexBuild" oplog entry, they abort the index build and discard the build job.
For sharded clusters, the index build occurs only on shards containing data for the collection being indexed.
For a more detailed description of the index build process, see Index Build Process.
By default, index builds use a commit quorum of "votingMembers"
, or
all data-bearing voting members. To start an index build with a
non-default commit quorum, specify the commitQuorum parameter to
createIndexes
or its shell helpers
db.collection.createIndex()
and
db.collection.createIndexes()
.
To modify the commit quorum required for an in-progress simultaneous
index build, use the setIndexCommitQuorum
command.
Note
Index builds can impact replica set performance. For workloads which cannot tolerate performance decrease due to index builds, consider performing a rolling index build process. Rolling index builds take at most one replica set member out at a time, starting with the secondary members, and builds the index on that member as a standalone. Rolling index builds require at least one replica set election.
For rolling index builds on replica sets, see Rolling Index Builds on Replica Sets.
For rolling index builds on sharded clusters, see Rolling Index Builds on Sharded Clusters.
Commit Quorum Contrasted with Write Concern
There are important differences between commit quorums and write concerns:
Index builds use commit quorums.
Write operations use write concerns.
Each data-bearing node in a cluster is a voting member.
The commit quorum specifies how many data-bearing voting members, or which voting members, including the primary, must be prepared to commit a simultaneous index build. before the primary will execute the commit.
The write concern is the level of acknowledgement that the write has propagated to the specified number of instances.
The commit quorum specifies how many nodes must be ready to finish the index build before the primary commits the index build. In contrast, when the primary has committed the index build, the write concern specifies how many nodes must finish the index build before the command returns.
Build Failure and Recovery
Interrupted Index Builds on a Primary mongod
Starting in MongoDB 5.0, if the primary mongod
shuts
down cleanly during the index build and the
commitQuorum is set to the
default votingMembers
, then the index build progress is saved to
disk. The mongod
automatically recovers the index build
when it is restarted and continues from the saved checkpoint. In earlier
versions, if the index build was interrupted it had to be restarted
from the beginning.
Interrupted Index Builds on a Secondary mongod
Starting in MongoDB 5.0, if a secondary mongod
shuts
down cleanly during the index build and the
commitQuorum is set to the
default votingMembers
, then the index build progress is saved to
disk. The mongod
automatically recovers the index build
when it is restarted and continues from the saved checkpoint. In earlier
versions, if the index build was interrupted it had to be restarted
from the beginning.
Prior to MongoDB 4.4, the startup process stalls behind any recovered
index builds. The secondary could fall out of sync with the replica set
and require resynchronization. Starting in MongoDB 4.4, the
mongod
can perform the startup process while the
recovering index builds.
If you restart the mongod
as a standalone (i.e. removing
or commenting out replication.replSetName
or omitting
--replSetName
), the mongod
cannot restart the index build. The build remains in a paused
state until it is manually dropped
.
Interrupted Index Builds on Standalone mongod
If the mongod
shuts down during the index build, the
index build job and all progress is lost. Restarting the
mongod
does not restart the index build. You must
re-issue the createIndex()
operation to restart
the index build.
Rollbacks during Build Process
Starting in MongoDB 5.0, if a node is rolled back to a prior state
during the index build, the index build progress is saved to disk. If
there is still work to be done when the rollback concludes, the
mongod
automatically recovers the index build and
continues from the saved checkpoint.
Starting in version 4.4, MongoDB can pause an in-progress index build to perform a rollback.
If the rollback does not revert the index build, MongoDB restarts the index build after completing the rollback.
If the rollback reverts the index build, you must re-create the index or indexes after the rollback completes.
Prior to MongoDb 4.4, rollbacks could start only after all in-progress index builds finished.
Index Consistency Checks for Sharded Collections
A sharded collection has an inconsistent index if the collection does not have the exact same indexes (including the index options) on each shard that contains chunks for the collection. Although inconsistent indexes should not occur during normal operations, inconsistent indexes can occur, such as:
When a user is creating an index with a
unique
key constraint and one shard contains a chunk with duplicate documents. In such cases, the create index operation may succeed on the shards without duplicates but not on the shard with duplicates.When a user is creating an index across the shards in a rolling manner (i.e. manually building the index one by one across the shards) but either fails to build the index for an associated shard or incorrectly builds an index with different specification.
Starting in MongoDB 4.4 (and in MongoDB 4.2.6), the config server primary periodically checks for
index inconsistencies across the shards for sharded collections. To
configure these periodic checks, see
enableShardedIndexConsistencyCheck
and
shardedIndexConsistencyCheckIntervalMS
.
The command serverStatus
returns the field
shardedIndexConsistency
to report on index
inconsistencies when run on the config server primary.
To check if a sharded collection has inconsistent indexes, see Find Inconsistent Indexes Across Shards.
Monitor In Progress Index Builds
To see the status of an index build operation, you can use the
db.currentOp()
method in mongosh
. To
filter the current operations for index creation operations, see
Active Indexing Operations for an example.
The msg
field includes a percentage-complete
measurement of the current stage in the index build process.
Observe Stopped and Resumed Index Builds in the Logs
While an index is being built, progress is written to the MongoDB log. If an index build is stopped and resumed there will be log messages with fields like these:
"msg":"Index build: wrote resumable state to disk", "msg":"Found index from unfinished build",
Terminate In Progress Index Builds
Use the dropIndexes
command or its shell helpers
dropIndex()
or
dropIndexes()
to terminate an in-progress index
build. See Stop In-Progress Index Builds for more information.
Do not use killOp
to terminate an in-progress index
builds in replica sets or sharded clusters.
Index Build Process
The following table describes each stage of the index build process:
Stage | Description |
---|---|
Lock | |
Initialization | The
|
Lock | |
Scan Collection | For each document in the collection, the If the If the Once the |
Process Side Writes Table | The If the If the For each document written to the collection during the build
process, the |
Vote and Wait for Commit Quorum | A Starting in MongoDB 4.4, the If the If the
While waiting for commit quorum, the |
Lock | The mongod upgrades the intent exclusive IX
lock on the collection to a shared S lock. This
blocks all write operations to the collection, including the
application of any replicated write operations or metadata
commands that target the collection. |
Finish Processing Temporary Side Writes Table | The If the If the |
Lock | The mongod upgrades the shared S lock on the
collection to an exclusive X lock on the collection. This
blocks all read and write operations on the collection, including
the application of any replicated write operations or metadata
commands that target the collection. The mongod
does not yield this lock. |
Drop Side Write Table | The If the If the At this point, the index includes all data written to the collection. |
Process Constraint Violation Table | If the
If the |
Mark the Index as Ready | The |
Lock | The mongod releases the X lock on the
collection. |