MongoDB C100DBA - MongoDB Certified DBA Associate Exam (Based on MongoDB 4.4)
Which command can be used to rebuild the indexes on a collection in MongoDB?
In a sharded replica set environment, the w Option provides ability for write concern and j Option provides ability for the data to be written on disk journal. Consider that we have a seven member replica set and we want to assure that the writes are committed to journal. What should be the value of j?
As per the aggregation pipeline optimization concepts, if you have a $sort followed by a $match:
Which command is used to determine storage capacity of specific database?
Which of the following does MongoDB use to provide High Scalability?
You have a replicated cluster with 1 primary, 3 secondary, 1 arbiter. One of the secondary is hidden. What is the replication factor of this replicated cluster?
Using an arbiter allows one to easily ensure an odd number of voters in replica sets. Why is this important?
Which of the following operator can be used to limit the number of documents in an array field of a document after an update is performed?
What does the output x of the following MongoDB aggregation query result into; db.posts.aggregate( [ { $group: { _id; "$author", x: { $sum: $likes } } } ] )
Which of the following is true about aggregation framework?