OPTIONS
翻译或纠错本页面

reIndex

reIndex

The reIndex command drops all indexes on a collection and recreates them. This operation may be expensive for collections that have a large amount of data and/or a large number of indexes. Use the following syntax:

{ reIndex: "collection" }

Normally, MongoDB compacts indexes during routine updates. For most users, the reIndex command is unnecessary. However, it may be worth running if the collection size has changed significantly or if the indexes are consuming a disproportionate amount of disk space.

Call reIndex using the following form:

db.collection.reIndex();

注解

For replica sets, reIndex will not propagate from the primary to secondaries. reIndex will only affect a single mongod instance.

重要

reIndex will rebuild indexes in the background if the index was originally specified with this option. However, reIndex will rebuild the _id index in the foreground, which takes the database’s write lock.

See

索引创建 for more information on the behavior of indexing operations in MongoDB.

←   collMod setParameter  →
ON THIS PAGE