Basic Configuration and Logs
-
What is the purpose of the
db.startup_log.find()
command in MongoDB? -
How do you configure the
logpath
,datapath
,port
, andfork
options in a MongoDB configuration file?
Storage Engines
-
Compare the WiredTiger and MMAPv1 storage engines in MongoDB.
-
What is document-level concurrency, and how does WiredTiger implement it?
-
Explain Multi-Version Concurrency Control (MVCC) in MongoDB.
-
How does WiredTiger handle compression, and what are the benefits?
-
What is a checkpoint in WiredTiger, and why is it important?
Server Status and Monitoring
-
What information does the
db.serverStatus()
command provide? -
How can you check the storage engine being used in your MongoDB instance using
db.serverStatus()
?
Journaling
-
What is journaling in MongoDB, and why is it important for durability?
-
How does journaling work in WiredTiger?
Locking and Unlocking
-
What is the purpose of the
db.fsyncLock()
anddb.fsyncUnlock()
commands? -
When would you use these commands in a production environment?
Capped Collections
-
How do you create a capped collection in MongoDB?
-
What are the use cases for capped collections?
Automatic Archival
- How can you set up automatic archival in MongoDB?
Document Insertion Time
- How can you determine the insertion time of a document using its
_id
field?
TTL Indexes
-
How do you create a TTL (Time-To-Live) index in MongoDB?
-
What is the purpose of the
ttlMonitorSleepSec
parameter, and how can you modify it?
Query Optimization
-
How can you determine if a query is using an index?
-
What do the terms
DocumentsScanned
andRowsReturned
indicate in the context of query execution?
Indexing Strategies
-
What is the ESR (Equality, Sort, Range) rule for indexing in MongoDB?
-
How does the ESR rule help in optimizing queries?
Replication
-
How do you set up a replica set in MongoDB?
-
What are the key components of a replica set, and how does failover work?
Sharding
-
Explain the concept of sharding in MongoDB.
-
What are the benefits of sharding, and how does it improve performance and scalability?
Sample Follow-Up Questions
Storage Engines
- Can you switch the storage engine from MMAPv1 to WiredTiger in an existing MongoDB deployment? If yes, how?
Journaling
- What happens if journaling is disabled in MongoDB? What are the risks?
Capped Collections
- What happens when a capped collection reaches its maximum size or document limit?
TTL Indexes
- What happens if the
ttlMonitorSleepSec
parameter is set to a very high value?
Replication
- How do you handle a scenario where the primary node in a replica set goes down?
Sharding
- What is a shard key, and how do you choose an effective shard key for your data?
Practical Scenarios
Performance Tuning
- A query is running slowly. How would you diagnose and optimize it?
Backup and Recovery
- How would you take a backup of a MongoDB database, and what steps would you follow to restore it?
Scaling
- Your MongoDB database is experiencing high read and write traffic. How would you scale it to handle the load?
Security
- How do you enable authentication and authorization in MongoDB? What are some best practices for securing a MongoDB deployment?