Write Operations Overview :
Write operations modify the data in mongodb. Write operations are atomic at document level.
If update operation include upsert:true, documents are inserted if the query condition does not match criteria.
db.people.update(
... { name: "Andy" },
... {
... name: "Andy",
... rating: 1,
... score: 1
... },
... { upsert: true }
... )
WriteResult({
"nMatched" : 0,
"nUpserted" : 1,
"nModified" : 0,
"_id" : ObjectId("54f0b1051235b5c69441d9ea")
})
> db.people.update( { name: "Andy" }, { name: "Andy", rating: 1, score: 1 }, { upsert: true } )
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
Write Concerns :
Unack : does not confirm whether error occured or not
Acknowledge : ensure that data is written and available for in-memory read but not persisted.
Journal : ensure that data is written to disk.
What is journal : journal are binary content, journaling is process in which data is written to binary structure first in journal and then written to data files. In case with clean shutdown, this files are removed. journal files starts with j_ in the journal directory
Replica Acknowledged : response confirms that data is written to primary as well as secondary.
Mongodb size of the document is 16 MB. when document increases more than this size, gridFS can be used. GridFS uses two collection, one for storing metadata and one for storing actual chunks.
Data Models design includes either having normalized data divided between collections or having single document with embedded data. having multiple collection poses for transctions related issues as mongodb have transaction commit at document level and no write operation can have more than one document involve.
Write operations modify the data in mongodb. Write operations are atomic at document level.
If update operation include upsert:true, documents are inserted if the query condition does not match criteria.
db.people.update(
... { name: "Andy" },
... {
... name: "Andy",
... rating: 1,
... score: 1
... },
... { upsert: true }
... )
WriteResult({
"nMatched" : 0,
"nUpserted" : 1,
"nModified" : 0,
"_id" : ObjectId("54f0b1051235b5c69441d9ea")
})
> db.people.update( { name: "Andy" }, { name: "Andy", rating: 1, score: 1 }, { upsert: true } )
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
Write Concerns :
Unack : does not confirm whether error occured or not
Acknowledge : ensure that data is written and available for in-memory read but not persisted.
Journal : ensure that data is written to disk.
What is journal : journal are binary content, journaling is process in which data is written to binary structure first in journal and then written to data files. In case with clean shutdown, this files are removed. journal files starts with j_ in the journal directory
Replica Acknowledged : response confirms that data is written to primary as well as secondary.
Mongodb size of the document is 16 MB. when document increases more than this size, gridFS can be used. GridFS uses two collection, one for storing metadata and one for storing actual chunks.
Data Models design includes either having normalized data divided between collections or having single document with embedded data. having multiple collection poses for transctions related issues as mongodb have transaction commit at document level and no write operation can have more than one document involve.