Can journaling features be used to perform safe hot backups?
Answer Posted / Lavi Kumari
Journaling in MongoDB is not specifically designed for performing hot backups. Instead, it provides a way to record all writes on disk before they're acknowledged as committed. While this can make recovery easier after an unexpected shutdown or failure, it doesn't directly support the creation of hot backups.nFor safe hot backups, you would typically use tools like mongodump and mongorestore, which offer a way to create and restore full or incremental backups without affecting the production database.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers