Docs Menu

Docs HomeDevelop ApplicationsMongoDB Manual

compact

On this page

  • Definition
  • Syntax
  • Command Fields
  • compact Required Privileges
  • Behavior
  • Example
compact

Rewrites and defragments all data and indexes in a collection. On WiredTiger databases, this command releases unneeded disk space to the operating system.

The command has the following syntax:

db.runCommand(
{
compact: <collection name>
}
)

The command takes the following fields:

Field
Type
Description
compact
string
The name of the collection.
force
flag

Changed in version 4.4.

Optional. If specified, forces compact to run on the primary in a replica set. compact does not block MongoDB CRUD Operations on the database it is compacting.

comment
any

Optional. A user-provided comment to attach to this command. Once set, this comment appears alongside records of this command in the following locations:

A comment can be any valid BSON type (string, integer, object, array, etc).

New in version 4.4.

Warning

Always have an up-to-date backup before performing server maintenance such as the compact operation.

For clusters enforcing authentication, you must authenticate as a user with the compact privilege action on the target collection. The dbAdmin role provides the required privileges for running compact against non-system collections.

For system collections, you must:

  1. Create a custom role that grants the compact action on the system collection.

  2. Grant that role to a new or existing user.

  3. Authenticate as that user to perform the compact command.

For example, the following operations create a custom role that grants the compact action against the specified database and collection:

use admin
db.createRole(
{
role: "myCustomCompactRole",
privileges: [
{
resource: { "db" : "<database>" , "collection" : "<collection>" },
actions: [ "compact" ]
}
],
roles: []
}
)

For more information on configuring the resource document, see Resource Document.

To add the dbAdmin or the custom role to an existing user, use db.grantRolesToUser() or db.updateUser(). The following operation grants the custom compact role to the myCompactUser on the admin database:

use admin
db.grantRolesToUser("myCompactUser", [ "dbAdmin" | "myCustomCompactRole" ] )

To add the dbAdmin or the custom role to a new user, specify the role to the roles array of the db.createUser() method when creating the user.

use admin
db.createUser(
{
user: "myCompactUser",
pwd: "myCompactUserPassword",
roles: [
{ role: "dbAdmin", db: "<database>" } | "myCustomCompactRole"
]
}
)

Blocking behavior is version specific.

Version
Blocking Behavior
4.4
Post 4.4.17, 5.0.12, 6.0.2, 6.1.0

To run compact in a replica set, see Replica Sets for additional considerations.

To check the compact operation's progress, monitor the mongod log file or run db.currentOp() from another shell instance.

If you terminate the operation with the db.killOp() method or restart the server before the compact operation has finished, be aware of the following:

  • If you have journaling enabled, the data remains valid and usable, regardless of the state of the compact operation. You may have to manually rebuild the indexes.

  • If you do not have journaling enabled and the mongod or compact terminates during the operation, it is impossible to guarantee that the data is in a valid state.

  • In either case, much of the existing free space in the collection may become un-reusable. In this scenario, you should rerun the compaction to completion to restore the use of this free space.

To see how the storage space changes for the collection, run the collStats command before and after compaction.

On WiredTiger, compact attempts to reduce the required storage space for data and indexes in a collection, releasing unneeded disk space to the operating system. The effectiveness of this operation is workload dependent and no disk space may be recovered. This command is useful if you have removed a large amount of data from the collection, and do not plan to replace it.

compact may require additional disk space to run on WiredTiger databases.

You can use compact on collections and indexes that are stored in a replica set, however there are some important considerations:

  • The primary node does not replicate the compact command to the secondaries.

  • You should run compact on secondary nodes whenever possible. If you cannot run compact on secondaries, see the force option.

  • Starting in MongoDB 6.1.0 (and 6.0.2, 5.0.12, and 4.4.17):

    • A secondary node can replicate while compact is running.

    • Reads are permitted.

To run compact on a cluster

1

Run compact on one of the secondary nodes. When compact finishes, repeat the operation on each of the remaining secondaries in turn.

2

To step down the current primary and trigger an election, use the rs.stepDown() method. To nominate a particular secondary node, adjust the member priority.

3

After stepping down, the old primary node becomes a secondary node. Run compact on the old primary node.

Blocking behavior on secondary nodes is version specific.

Version
Blocking Behavior
4.4
  • No replication is possible.

  • Reads are not permitted.

Post 4.4.17, 5.0.12, 6.0.2, 6.1.0
  • A secondary node can replicate while compact is running.

  • Reads permitted.

Replication status while the compact command is running depends on your specific MongoDB version:

  • In MongoDB versions 4.4.9 and later, the replica set remains in a SECONDARY status.

  • In MongoDB versions earlier than 4.4.9, compact forces the replica set into the RECOVERING status.

For more information about replica set member states, see See Replica Set Member States.

For replica set maintenance and availability, see Perform Maintenance on Replica Set Members.

compact only applies to mongod instances. In a sharded environment, run compact on each shard separately as a maintenance operation.

You cannot issue compact against a mongos instance.

mongod rebuilds all indexes in parallel following the compact operation.

The following operation runs the compact command on the movies collection:

db.runCommand( { compact: "movies" } )

Running compact returns output similar to the following:

{ bytesFreed: 27859, ok: 1 }
←  collModconvertToCapped →