w3resource

MongoDB: db.fsyncLock() method

db.fsyncLock

The db.fsyncLock() method is used to force the mongod to flush all pending write operations to the disk and locks the entire mongod instance to prevent additional writes until the user releases the lock with the db.fsyncUnlock() command. db.fsyncLock() is an administrative command.

Syntax:

db.fsyncLock()

This function locks the database and create a window for backup operations.

Example: MongoDB: db.fsyncLock() method

db.fsyncLock();

Sample document in the restaurants collection:

Output:

> db.fsyncLock();
{
        "info" : "now locked against writes, use db.fsyncUnlock() to unlock",
        "seeAlso" : "http://dochub.mongodb.org/core/fsynccommand",
        "ok" : 1
}

Retrieve the restaurants data from here

Previous: db.dropDatabase() method
Next: db.fsyncUnlock() method



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/mongodb/shell-methods/database/db-fsyncLock.php