General Flashcards
What is a replica set and what is its purpose?
A replica set is a MongoDB cluster that stores the same data in more than one server and its purpose is to provide redundancy and availability in the event of a server failure
What is a MongoDB cluster?
A MongoDB cluster is a group of MongoDB servers working as a unit
What is MongoDB Atlas and what is its purpose?
MongoDB Atlas is a multi-cloud database platform and its purpose is to simplify deploying and managing databases
How is MongoDB different than MySQL?
- MongoDB is flexible while MySQL is strict
- MongoDB uses collections and BSON documents while MySQL uses tables of rows and columns
What is a document?
A document is a record. It is the basic unit of data in MongoDB
What is a collection?
A collection is a group of documents
What is a database?
A database is a group of collections
What is MongoDB?
MongoDB is a general purpose document database
True or False
Documents in the same collection must have the same field structure and data types
False. Documents in the same collection can have different field structures and data types
What is the difference between BSON and JSON?
BSON is an extension of JSON. BSON supports more data types than JSON
What is BSON?
What is its maximum size?
BSON is a binary-encoded JSON object. It’s maximum size is 16 MB
True or False
MongoDB documents are displayed in JSON and stored as BSON
True
True or False
Documents do not require an _id
field
False. All documents require an _id
field. In fact, if a document is inserted without an _id
field, MongoDB will automatically create an ObjectId
instance for that field
What is the definition of “schema”
Schema is equivalent to “data model”
What feature can be used to put constraints on a flexible schema?
MongoDB schema validation
What is the purpose of a connection string?
The purpose of a connection string is to provide all of the necessary instructions for a client to connect to MongoDB
What is MongoDB Compass and what is its purpose?
MongoDB Compass is a GUI used to query and analyze a MongoDB cluster
What is a MongoDB driver and what is it used for?
A MongoDB driver is a language-specific library used to interact with MongoDB
True or False
A MongoClient
should be created for every query
False. That is an extremely inefficient way of interacting with a database. Only a single MongoClient
instance should be created per application
What is the difference between replaceOne()
and updateOne()
?
replaceOne()
will override the current document’s fields with the ones specified. This means, if the original document had 5 fields but the replacing document only has 1, the new document will only have 1 field. updateOne()
only updates the fields specified by the updating document and does not affect other fields
When are databases and collections first created?
Databases and collections are first created when a document is inserted
What types can be used as the _id field?
Any type other than arrays or null
Is the _id field mutable or immutable?
Immutable
What is the purpose of collation?
The purpose of collation is to specify language-specific rules for string comparisons
List the 13 most common BSON data types and their respective bits if applicable
- byte 8-bits
- int 32-bits
- long 64-bits
- double 64-bits
- decimal 128-bits
- boolean
- null
- Array
- Object
- String 8-bits
- Date
- Timestamp
- ObjectId
What are the 2 ways to close a cursor?
By closing the cursor explicitly or by exhausting the elements in the cursor
What is the purpose of db.getSiblingDB("...")
?
The purpose of getSiblingDB()
is to be able to reference another database without having to change db
in mongosh
What is a blocking sort and when does it normally occur?
A blocking sort is a sort executed in memory. This normally occurs when an indexed sort cannot be performed
What is the purpose of a connection pool?
The purpose of a connection pool is to prevent the need of having to open a new connection for every database operation
What is the easiest way to change the connection pool size?
By specifying a query parameter on the connection string. For example:
mongodb+srv://.../?maxPoolSize=10
What is the difference between countDocuments()
and estimatedDocumentCount()
?
countDocuments()
iterates through the entire collection to count the total number of documents (slower but 100% precise). estimatedDocumentCount()
does not iterate the collection and obtains the total number of documents from metadata (faster but not 100% precise)
What is the default connection pool size in the Java driver?
100
True or False
Unlike JSON objects, the fields in a BSON document are ordered
True. This is important to keep in mind when querying for exact document matches
When querying for exact document matching, what should you always keep in mind?
When querying for exact document matching, remeber that BSON documents are ordered. It is extremely important that the order of the fields you are using in your query are in the same order as the fields in the document you are trying to retrieve
Review
Specifies the number of documents to return in each batch of the response from the MongoDB instance. In most cases, modifying the batch size will not affect the user or the application, as mongosh and most drivers return results as if MongoDB returned a single batch.
Review
find() and aggregate() operations have an initial batch size of 101 documents by default. Subsequent getMore operations issued against the resulting cursor have no default batch size, so they are limited only by the 16 megabyte message size.