On this page本页内容
db.
fsyncUnlock
()¶Reduces the lock taken by db.fsyncLock()
on a mongod
instance by 1.
Important
The db.fsyncLock()
and db.fsyncUnlock()
operations maintain a lock count. db.fsyncLock()
increments the lock count, and db.fsyncUnlock()
decrements the lock count.
To unlock a mongod
instance for writes, the lock count must be zero. That is, for a given number of db.fsyncLock()
operations, you must issue a corresponding number of db.fsyncUnlock()
operations to unlock the instance for writes.
db.fsyncUnlock()
is an administrative operation. Typically you will use db.fsyncUnlock()
following a database backup operation.
db.fsyncUnlock()
has the syntax:
The operation returns a document with the following fields:
info |
Information on the status of the operation. |
lockCount (New in version 3.4) |
The number of locks remaining on the instance after the operation. |
ok |
The status code. |
The db.fsyncUnlock()
method wraps the fsyncUnlock
command.
db.fsyncLock()
ensures that the data files are safe to copy using low-level backup utilities such as cp
, scp
, or tar
. A mongod
started using the copied files contains user-written data that is indistinguishable from the user-written data on the locked mongod
.
The data files of a locked mongod
may change due to operations such as journaling syncs or WiredTiger snapshots. While this has no affect on the logical data (e.g. data accessed by clients), some backup utilities may detect these changes and emit warnings or fail with errors. For more information on MongoDB-
recommended backup utilities and procedures, see MongoDB Backup Methods.
Consider a situation where db.fsyncLock()
has been issued two times. The following db.fsyncUnlock()
operation reduces the locks taken by db.fsyncLock()
by 1:
The operation returns the following document:
As the lockCount
is greater than 0, the mongod
instance is locked against writes. To unlock the instance for writes, run db.fsyncLock()
again:
The operation returns the following document:
The mongod instance is unlocked for writes.