Recover Data after an Unexpected Shutdown

Recover Data after an Unexpected Shutdown

If MongoDB does not shutdown cleanly the on-disk representation of the data files will likely reflect an inconsistent state which could lead to data corruption. To prevent data inconsistency and corruption, always shut down the database cleanly and use the durability journaling. MongoDB writes data to the journal, by default, every 100 milliseconds, such that MongoDB can always recover to a consistent state even in the case of an unclean shutdown due to power loss or other system failure.

If you are not running as part of a replica set and do not have journaling enabled, use the following procedure to recover data that may be in an inconsistent state. If you are running as part of a replica set, you should always restore from a backup or restart the mongod instance with an empty dbPath and allow MongoDB to perform an initial sync to restore the data.

Process

Indications – When you are aware of a mongod instance running without journaling that stops unexpectedly and you’re not running with replication, you should always run the repair operation before starting MongoDB again. If you’re using replication, then restore from a backup and allow replication to perform an initial sync to restore data. If the mongod.lock file in the data directory specified by dbPath, /data/db by default, is not a zero-byte file, then mongod will refuse to start, and you will find a message that contains the following line in your MongoDB log our output:

Unclean shutdown detected.

This indicates that you need to run mongod with the –repair option. If you run repair when the mongodb.lock file exists in your dbPath, or the optional –repairpath, you will see a message that contains the following line:

old lock file: /data/db/mongod.lock. probably means unclean shutdown

If you see this message, as a last resort you may remove the lockfile and run the repair operation before starting the database normally, as in the following procedure:

Overview – Recovering a member of a replica set. Do not use this procedure to recover a member of a replica set. Instead you should either restore from a backup or perform an initial sync using data from an intact member of the set, as described in Resync a Member of a Replica Set. There are two processes to repair data files that result from an unexpected shutdown:

  • Use the –repair option in conjunction with the –repairpath option. mongod will read the existing data files, and write the existing data to new data files. This does not modify or alter the existing data files. You do not need to remove the mongod.lock file before using this procedure.
  • Use the –repair option. mongod will read the existing data files, write the existing data to new files and replace the existing, possibly corrupt, files with new files. You must remove the mongod.lock file before using this procedure.

–repair functionality is also available in the shell with the db.repairDatabase() helper for the repairDatabase command.

Procedures – To repair your data files using the –repairpath option to preserve the original data files unmodified:

  • Start mongod using –repair to read the existing data files.

mongod –dbpath /data/db –repair –repairpath /data/db0

When this completes, the new repaired data files will be in the /data/db0 directory.

  • Start mongod using the following invocation to point the dbPath at /data/db0:

mongod –dbpath /data/db0

Once you confirm that the data files are operational you may delete or archive the data files in the /data/db directory.

To repair your data files without preserving the original files, do not use the –repairpath option, as in the following procedure

  • Remove the stale lock file:

rm /data/db/mongod.lock

Replace /data/db with your dbPath where your MongoDB instance’s data files reside. After you remove the mongod.lock file you must run the –repair process before using your database.

  • Start mongod using –repair to read the existing data files.

mongod –dbpath /data/db –repair

When this completes, the repaired data files will replace the original data files in the /data/db directory.

  • Start mongod using the following invocation to point the dbPath at /data/db:

mongod –dbpath /data/db

mongod.lock – In normal operation, you should never remove the mongod.lock file and start mongod. Instead consider the one of the above methods to recover the database and remove the lock files. In dire situations you can remove the lockfile, and start the database using the possibly corrupt files, and attempt to recover data from the database; however, it’s impossible to predict the state of the database in these situations.

If you are not running with journaling, and your database shuts down unexpectedly for any reason, you should always proceed as if your database is in an inconsistent and likely corrupt state. If at all possible restore from backup or, if running as a replica set, restore by performing an initial sync using data from an intact member of the set, as described in Resync a Member of a Replica Set.

Apply for MongoDB Certification Now!!

https://www.vskills.in/certification/databases/mongodb-server-administrator

Back to Tutorial

Share this post
[social_warfare]
Backup and Restore
MongoDB Scripting

Get industry recognized certification – Contact us

keyboard_arrow_up