To what level does MongoDB lock on writes? (or: what does it mean by “per connection”
up vote
54
down vote
favorite
In the mongodb documentation, it says:
Beginning with version 2.2, MongoDB implements locks on a per-database basis for most read and write operations. Some global operations, typically short lived operations involving multiple databases, still require a global “instance” wide lock. Before 2.2, there is only one “global” lock per mongod instance.
Does this mean that in the situation that I Have, say, 3 connections to mongodb://localhost/test from different apps running on the network - only one could be writing at a time? Or is it just per connection?
IOW: Is it per connection, or is the whole /test database locked while it writes?
mongodb concurrency locking
add a comment |
up vote
54
down vote
favorite
In the mongodb documentation, it says:
Beginning with version 2.2, MongoDB implements locks on a per-database basis for most read and write operations. Some global operations, typically short lived operations involving multiple databases, still require a global “instance” wide lock. Before 2.2, there is only one “global” lock per mongod instance.
Does this mean that in the situation that I Have, say, 3 connections to mongodb://localhost/test from different apps running on the network - only one could be writing at a time? Or is it just per connection?
IOW: Is it per connection, or is the whole /test database locked while it writes?
mongodb concurrency locking
Starting in MongoDB 3.0, the WiredTiger storage engine is available in the 64-bit builds. WiredTiger uses document-level concurrency control for write operations. As a result, multiple clients can modify different documents of a collection at the same time. docs.mongodb.com/manual/core/wiredtiger/…
– Muhammad Ali
Mar 27 '17 at 8:33
add a comment |
up vote
54
down vote
favorite
up vote
54
down vote
favorite
In the mongodb documentation, it says:
Beginning with version 2.2, MongoDB implements locks on a per-database basis for most read and write operations. Some global operations, typically short lived operations involving multiple databases, still require a global “instance” wide lock. Before 2.2, there is only one “global” lock per mongod instance.
Does this mean that in the situation that I Have, say, 3 connections to mongodb://localhost/test from different apps running on the network - only one could be writing at a time? Or is it just per connection?
IOW: Is it per connection, or is the whole /test database locked while it writes?
mongodb concurrency locking
In the mongodb documentation, it says:
Beginning with version 2.2, MongoDB implements locks on a per-database basis for most read and write operations. Some global operations, typically short lived operations involving multiple databases, still require a global “instance” wide lock. Before 2.2, there is only one “global” lock per mongod instance.
Does this mean that in the situation that I Have, say, 3 connections to mongodb://localhost/test from different apps running on the network - only one could be writing at a time? Or is it just per connection?
IOW: Is it per connection, or is the whole /test database locked while it writes?
mongodb concurrency locking
mongodb concurrency locking
edited Dec 17 '13 at 9:19
shx2
39.9k678109
39.9k678109
asked Jul 3 '13 at 19:35
nicksahler
492167
492167
Starting in MongoDB 3.0, the WiredTiger storage engine is available in the 64-bit builds. WiredTiger uses document-level concurrency control for write operations. As a result, multiple clients can modify different documents of a collection at the same time. docs.mongodb.com/manual/core/wiredtiger/…
– Muhammad Ali
Mar 27 '17 at 8:33
add a comment |
Starting in MongoDB 3.0, the WiredTiger storage engine is available in the 64-bit builds. WiredTiger uses document-level concurrency control for write operations. As a result, multiple clients can modify different documents of a collection at the same time. docs.mongodb.com/manual/core/wiredtiger/…
– Muhammad Ali
Mar 27 '17 at 8:33
Starting in MongoDB 3.0, the WiredTiger storage engine is available in the 64-bit builds. WiredTiger uses document-level concurrency control for write operations. As a result, multiple clients can modify different documents of a collection at the same time. docs.mongodb.com/manual/core/wiredtiger/…
– Muhammad Ali
Mar 27 '17 at 8:33
Starting in MongoDB 3.0, the WiredTiger storage engine is available in the 64-bit builds. WiredTiger uses document-level concurrency control for write operations. As a result, multiple clients can modify different documents of a collection at the same time. docs.mongodb.com/manual/core/wiredtiger/…
– Muhammad Ali
Mar 27 '17 at 8:33
add a comment |
4 Answers
4
active
oldest
votes
up vote
34
down vote
accepted
It is not per connection, it is per mongod
. In other words the lock will exist across all connections to the test
database on that server.
It is also a read/write lock so if a write is occuring then a read must wait, otherwise how can MongoDB know it is a consistent read?
However I should mention that MongoDB locks are very different to SQL/normal transactional locks you get and normally a lock will be held for about a microsecond between average updates.
The second statement helps a lot - I couldn't find anywhere that they were queued, so I was worried that it was just grabbing data that may not be consistent. Also I was aware of the slight delay, it's fine in my particular situation. Thanks!
– nicksahler
Jul 3 '13 at 20:25
2
normally a lock will be held for about a microsecond
if you held a lock for one microsecond then by the laws of physics you can't guarantee write durability.
– Pablo Fernandez
Aug 22 '15 at 23:59
3
as of 2015 there's no durable device with 1µs latency, if you're releasing the lock in less than that the value is not persisted.
– Pablo Fernandez
Aug 23 '15 at 15:13
1
I do not know what a "fsync queue" is, perhaps a mongodb (in memory) internal structure? anyway and returning to my original idea: if your write operation takes 1µs (or even 0.5µs like William says) to complete then you can't guarantee that the data reached a durable device.
– Pablo Fernandez
Aug 25 '15 at 15:26
1
@PabloFernandez meh, people make mistakes
– Sammaye
Aug 25 '15 at 19:42
|
show 7 more comments
up vote
230
down vote
MongoDB Locking is Different
Locking in MongoDB does not work like locking in an RDBMS, so a bit of explanation is in order. In earlier versions of MongoDB, there was a single global reader/writer latch. Starting with MongoDB 2.2, there is a reader/writer latch for each database.
The readers-writer latch
The latch is multiple-reader, single-writer, and is writer-greedy. This means that:
- There can be an unlimited number of simultaneous readers on a database
- There can only be one writer at a time on any collection in any one database (more on this in a bit)
- Writers block out readers
- By "writer-greedy", I mean that once a write request comes in, all readers are blocked until the write completes (more on this later)
Note that I call this a "latch" rather than a "lock". This is because it's lightweight, and in a properly designed schema the write lock is held on the order of a dozen or so microseconds. See here for more on readers-writer locking.
In MongoDB you can run as many simultaneous queries as you like: as long as the relevant data is in RAM they will all be satisfied without locking conflicts.
Atomic Document Updates
Recall that in MongoDB the level of transaction is a single document. All updates to a single document are Atomic. MongoDB achieves this by holding the write latch for only as long as it takes to update a single document in RAM. If there is any slow-running operation (in particular, if a document or an index entry needs to be paged in from disk), then that operation will yield the write latch. When the operation yields the latch, then the next queued operation can proceed.
This does mean that the writes to all documents within a single database get serialized. This can be a problem if you have a poor schema design, and your writes take a long time, but in a properly-designed schema, locking isn't a problem.
Writer-Greedy
A few more words on being writer-greedy:
Only one writer can hold the latch at one time; multiple readers can hold the latch at a time. In a naive implementation, writers could starve indefinitely if there was a single reader in operation. To avoid this, in the MongoDB implementation, once any single thread makes a write request for a particular latch
- All subsequent readers needing that latch will block
- That writer will wait until all current readers are finished
- The writer will acquire the write latch, do its work, and then release the write latch
- All the queued readers will now proceed
The actual behavior is complex, since this writer-greedy behavior interacts with yielding in ways that can be non-obvious. Recall that, starting with release 2.2, there is a separate latch for each database, so writes to any collection in database 'A' will acquire a separate latch than writes to any collection in database 'B'.
Specific questions
Regarding the specific questions:
- Locks (actually latches) are held by the MongoDB kernel for only as long as it takes to update a single document
- If you have multiple connections coming in to MongoDB, and each one of them is performing a series of writes, the latch will be held on a per-database basis for only as long as it takes for that write to complete
- Multiple connections coming in performing writes (update/insert/delete) will all be interleaved
While this sounds like it would be a big performance concern, in practice it doesn't slow things down. With a properly designed schema and a typical workload, MongoDB will saturate the disk I/O capacity -- even for an SSD -- before lock percentage on any database goes above 50%.
The highest capacity MongoDB cluster that I am aware of is currently performing 2 million writes per second.
I understood the logic behind writer-greedy "locking" - just not at which point it would lock others out. This helped. Thanks!
– nicksahler
Jul 5 '13 at 22:52
I need some precisions about the "writer-greedy" concept : When you say "once a write request comes in, all readers are blocked until the write completes (more on this later)" the write request block all readers on the entire database or just the collection (or document)? Does a reader operation block a write operation? Thank you
– Fred Mériot
Jun 24 '14 at 8:31
2
@FredMériot currently it will block it on database level but document level locking is already in the dev branch. Yes a reader operation can block a write, MongoDB cannot read consistently is something is being written to
– Sammaye
Jul 10 '14 at 8:25
14
Even death doesn't stop this guy from helping people! RIP William
– Sammaye
Sep 3 '14 at 21:10
14
For those wondering what happened to William, take a read here: blog.mongodb.org/post/99566492653/…. RIP
– dayuloli
Dec 25 '14 at 6:17
|
show 2 more comments
up vote
19
down vote
Mongo 3.0 now supports collection-level locking.
In addition to this, now Mongo created an API that allows to create a storage engine. Mongo 3.0 comes with 2 storage engines:
MMAPv1: the default storage engine and the one use in the previous versions. Comes with collection-level locking.
WiredTiger: the new storage engine, comes with document-level locking and compression. (Only available for the 64-bit version)
MongoDB 3.0 release notes
WiredTiger
add a comment |
up vote
8
down vote
I know the question is pretty old but still some people are confused....
Starting in MongoDB 3.0, the WiredTiger storage engine (which uses document-level concurrency) is available in the 64-bit builds.
WiredTiger uses document-level concurrency control for write operations. As a result, multiple clients can modify different documents of a collection at the same time.
For most read and write operations, WiredTiger uses optimistic concurrency control. WiredTiger uses only intent locks at the global, database and collection levels. When the storage engine detects conflicts between two operations, one will incur a write conflict causing MongoDB to transparently retry that operation.
Some global operations, typically short lived operations involving multiple databases, still require a global “instance-wide” lock. Some other operations, such as dropping a collection, still require an exclusive database lock.
Document Level Concurrency
add a comment |
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
34
down vote
accepted
It is not per connection, it is per mongod
. In other words the lock will exist across all connections to the test
database on that server.
It is also a read/write lock so if a write is occuring then a read must wait, otherwise how can MongoDB know it is a consistent read?
However I should mention that MongoDB locks are very different to SQL/normal transactional locks you get and normally a lock will be held for about a microsecond between average updates.
The second statement helps a lot - I couldn't find anywhere that they were queued, so I was worried that it was just grabbing data that may not be consistent. Also I was aware of the slight delay, it's fine in my particular situation. Thanks!
– nicksahler
Jul 3 '13 at 20:25
2
normally a lock will be held for about a microsecond
if you held a lock for one microsecond then by the laws of physics you can't guarantee write durability.
– Pablo Fernandez
Aug 22 '15 at 23:59
3
as of 2015 there's no durable device with 1µs latency, if you're releasing the lock in less than that the value is not persisted.
– Pablo Fernandez
Aug 23 '15 at 15:13
1
I do not know what a "fsync queue" is, perhaps a mongodb (in memory) internal structure? anyway and returning to my original idea: if your write operation takes 1µs (or even 0.5µs like William says) to complete then you can't guarantee that the data reached a durable device.
– Pablo Fernandez
Aug 25 '15 at 15:26
1
@PabloFernandez meh, people make mistakes
– Sammaye
Aug 25 '15 at 19:42
|
show 7 more comments
up vote
34
down vote
accepted
It is not per connection, it is per mongod
. In other words the lock will exist across all connections to the test
database on that server.
It is also a read/write lock so if a write is occuring then a read must wait, otherwise how can MongoDB know it is a consistent read?
However I should mention that MongoDB locks are very different to SQL/normal transactional locks you get and normally a lock will be held for about a microsecond between average updates.
The second statement helps a lot - I couldn't find anywhere that they were queued, so I was worried that it was just grabbing data that may not be consistent. Also I was aware of the slight delay, it's fine in my particular situation. Thanks!
– nicksahler
Jul 3 '13 at 20:25
2
normally a lock will be held for about a microsecond
if you held a lock for one microsecond then by the laws of physics you can't guarantee write durability.
– Pablo Fernandez
Aug 22 '15 at 23:59
3
as of 2015 there's no durable device with 1µs latency, if you're releasing the lock in less than that the value is not persisted.
– Pablo Fernandez
Aug 23 '15 at 15:13
1
I do not know what a "fsync queue" is, perhaps a mongodb (in memory) internal structure? anyway and returning to my original idea: if your write operation takes 1µs (or even 0.5µs like William says) to complete then you can't guarantee that the data reached a durable device.
– Pablo Fernandez
Aug 25 '15 at 15:26
1
@PabloFernandez meh, people make mistakes
– Sammaye
Aug 25 '15 at 19:42
|
show 7 more comments
up vote
34
down vote
accepted
up vote
34
down vote
accepted
It is not per connection, it is per mongod
. In other words the lock will exist across all connections to the test
database on that server.
It is also a read/write lock so if a write is occuring then a read must wait, otherwise how can MongoDB know it is a consistent read?
However I should mention that MongoDB locks are very different to SQL/normal transactional locks you get and normally a lock will be held for about a microsecond between average updates.
It is not per connection, it is per mongod
. In other words the lock will exist across all connections to the test
database on that server.
It is also a read/write lock so if a write is occuring then a read must wait, otherwise how can MongoDB know it is a consistent read?
However I should mention that MongoDB locks are very different to SQL/normal transactional locks you get and normally a lock will be held for about a microsecond between average updates.
answered Jul 3 '13 at 19:51
Sammaye
35.1k766111
35.1k766111
The second statement helps a lot - I couldn't find anywhere that they were queued, so I was worried that it was just grabbing data that may not be consistent. Also I was aware of the slight delay, it's fine in my particular situation. Thanks!
– nicksahler
Jul 3 '13 at 20:25
2
normally a lock will be held for about a microsecond
if you held a lock for one microsecond then by the laws of physics you can't guarantee write durability.
– Pablo Fernandez
Aug 22 '15 at 23:59
3
as of 2015 there's no durable device with 1µs latency, if you're releasing the lock in less than that the value is not persisted.
– Pablo Fernandez
Aug 23 '15 at 15:13
1
I do not know what a "fsync queue" is, perhaps a mongodb (in memory) internal structure? anyway and returning to my original idea: if your write operation takes 1µs (or even 0.5µs like William says) to complete then you can't guarantee that the data reached a durable device.
– Pablo Fernandez
Aug 25 '15 at 15:26
1
@PabloFernandez meh, people make mistakes
– Sammaye
Aug 25 '15 at 19:42
|
show 7 more comments
The second statement helps a lot - I couldn't find anywhere that they were queued, so I was worried that it was just grabbing data that may not be consistent. Also I was aware of the slight delay, it's fine in my particular situation. Thanks!
– nicksahler
Jul 3 '13 at 20:25
2
normally a lock will be held for about a microsecond
if you held a lock for one microsecond then by the laws of physics you can't guarantee write durability.
– Pablo Fernandez
Aug 22 '15 at 23:59
3
as of 2015 there's no durable device with 1µs latency, if you're releasing the lock in less than that the value is not persisted.
– Pablo Fernandez
Aug 23 '15 at 15:13
1
I do not know what a "fsync queue" is, perhaps a mongodb (in memory) internal structure? anyway and returning to my original idea: if your write operation takes 1µs (or even 0.5µs like William says) to complete then you can't guarantee that the data reached a durable device.
– Pablo Fernandez
Aug 25 '15 at 15:26
1
@PabloFernandez meh, people make mistakes
– Sammaye
Aug 25 '15 at 19:42
The second statement helps a lot - I couldn't find anywhere that they were queued, so I was worried that it was just grabbing data that may not be consistent. Also I was aware of the slight delay, it's fine in my particular situation. Thanks!
– nicksahler
Jul 3 '13 at 20:25
The second statement helps a lot - I couldn't find anywhere that they were queued, so I was worried that it was just grabbing data that may not be consistent. Also I was aware of the slight delay, it's fine in my particular situation. Thanks!
– nicksahler
Jul 3 '13 at 20:25
2
2
normally a lock will be held for about a microsecond
if you held a lock for one microsecond then by the laws of physics you can't guarantee write durability.– Pablo Fernandez
Aug 22 '15 at 23:59
normally a lock will be held for about a microsecond
if you held a lock for one microsecond then by the laws of physics you can't guarantee write durability.– Pablo Fernandez
Aug 22 '15 at 23:59
3
3
as of 2015 there's no durable device with 1µs latency, if you're releasing the lock in less than that the value is not persisted.
– Pablo Fernandez
Aug 23 '15 at 15:13
as of 2015 there's no durable device with 1µs latency, if you're releasing the lock in less than that the value is not persisted.
– Pablo Fernandez
Aug 23 '15 at 15:13
1
1
I do not know what a "fsync queue" is, perhaps a mongodb (in memory) internal structure? anyway and returning to my original idea: if your write operation takes 1µs (or even 0.5µs like William says) to complete then you can't guarantee that the data reached a durable device.
– Pablo Fernandez
Aug 25 '15 at 15:26
I do not know what a "fsync queue" is, perhaps a mongodb (in memory) internal structure? anyway and returning to my original idea: if your write operation takes 1µs (or even 0.5µs like William says) to complete then you can't guarantee that the data reached a durable device.
– Pablo Fernandez
Aug 25 '15 at 15:26
1
1
@PabloFernandez meh, people make mistakes
– Sammaye
Aug 25 '15 at 19:42
@PabloFernandez meh, people make mistakes
– Sammaye
Aug 25 '15 at 19:42
|
show 7 more comments
up vote
230
down vote
MongoDB Locking is Different
Locking in MongoDB does not work like locking in an RDBMS, so a bit of explanation is in order. In earlier versions of MongoDB, there was a single global reader/writer latch. Starting with MongoDB 2.2, there is a reader/writer latch for each database.
The readers-writer latch
The latch is multiple-reader, single-writer, and is writer-greedy. This means that:
- There can be an unlimited number of simultaneous readers on a database
- There can only be one writer at a time on any collection in any one database (more on this in a bit)
- Writers block out readers
- By "writer-greedy", I mean that once a write request comes in, all readers are blocked until the write completes (more on this later)
Note that I call this a "latch" rather than a "lock". This is because it's lightweight, and in a properly designed schema the write lock is held on the order of a dozen or so microseconds. See here for more on readers-writer locking.
In MongoDB you can run as many simultaneous queries as you like: as long as the relevant data is in RAM they will all be satisfied without locking conflicts.
Atomic Document Updates
Recall that in MongoDB the level of transaction is a single document. All updates to a single document are Atomic. MongoDB achieves this by holding the write latch for only as long as it takes to update a single document in RAM. If there is any slow-running operation (in particular, if a document or an index entry needs to be paged in from disk), then that operation will yield the write latch. When the operation yields the latch, then the next queued operation can proceed.
This does mean that the writes to all documents within a single database get serialized. This can be a problem if you have a poor schema design, and your writes take a long time, but in a properly-designed schema, locking isn't a problem.
Writer-Greedy
A few more words on being writer-greedy:
Only one writer can hold the latch at one time; multiple readers can hold the latch at a time. In a naive implementation, writers could starve indefinitely if there was a single reader in operation. To avoid this, in the MongoDB implementation, once any single thread makes a write request for a particular latch
- All subsequent readers needing that latch will block
- That writer will wait until all current readers are finished
- The writer will acquire the write latch, do its work, and then release the write latch
- All the queued readers will now proceed
The actual behavior is complex, since this writer-greedy behavior interacts with yielding in ways that can be non-obvious. Recall that, starting with release 2.2, there is a separate latch for each database, so writes to any collection in database 'A' will acquire a separate latch than writes to any collection in database 'B'.
Specific questions
Regarding the specific questions:
- Locks (actually latches) are held by the MongoDB kernel for only as long as it takes to update a single document
- If you have multiple connections coming in to MongoDB, and each one of them is performing a series of writes, the latch will be held on a per-database basis for only as long as it takes for that write to complete
- Multiple connections coming in performing writes (update/insert/delete) will all be interleaved
While this sounds like it would be a big performance concern, in practice it doesn't slow things down. With a properly designed schema and a typical workload, MongoDB will saturate the disk I/O capacity -- even for an SSD -- before lock percentage on any database goes above 50%.
The highest capacity MongoDB cluster that I am aware of is currently performing 2 million writes per second.
I understood the logic behind writer-greedy "locking" - just not at which point it would lock others out. This helped. Thanks!
– nicksahler
Jul 5 '13 at 22:52
I need some precisions about the "writer-greedy" concept : When you say "once a write request comes in, all readers are blocked until the write completes (more on this later)" the write request block all readers on the entire database or just the collection (or document)? Does a reader operation block a write operation? Thank you
– Fred Mériot
Jun 24 '14 at 8:31
2
@FredMériot currently it will block it on database level but document level locking is already in the dev branch. Yes a reader operation can block a write, MongoDB cannot read consistently is something is being written to
– Sammaye
Jul 10 '14 at 8:25
14
Even death doesn't stop this guy from helping people! RIP William
– Sammaye
Sep 3 '14 at 21:10
14
For those wondering what happened to William, take a read here: blog.mongodb.org/post/99566492653/…. RIP
– dayuloli
Dec 25 '14 at 6:17
|
show 2 more comments
up vote
230
down vote
MongoDB Locking is Different
Locking in MongoDB does not work like locking in an RDBMS, so a bit of explanation is in order. In earlier versions of MongoDB, there was a single global reader/writer latch. Starting with MongoDB 2.2, there is a reader/writer latch for each database.
The readers-writer latch
The latch is multiple-reader, single-writer, and is writer-greedy. This means that:
- There can be an unlimited number of simultaneous readers on a database
- There can only be one writer at a time on any collection in any one database (more on this in a bit)
- Writers block out readers
- By "writer-greedy", I mean that once a write request comes in, all readers are blocked until the write completes (more on this later)
Note that I call this a "latch" rather than a "lock". This is because it's lightweight, and in a properly designed schema the write lock is held on the order of a dozen or so microseconds. See here for more on readers-writer locking.
In MongoDB you can run as many simultaneous queries as you like: as long as the relevant data is in RAM they will all be satisfied without locking conflicts.
Atomic Document Updates
Recall that in MongoDB the level of transaction is a single document. All updates to a single document are Atomic. MongoDB achieves this by holding the write latch for only as long as it takes to update a single document in RAM. If there is any slow-running operation (in particular, if a document or an index entry needs to be paged in from disk), then that operation will yield the write latch. When the operation yields the latch, then the next queued operation can proceed.
This does mean that the writes to all documents within a single database get serialized. This can be a problem if you have a poor schema design, and your writes take a long time, but in a properly-designed schema, locking isn't a problem.
Writer-Greedy
A few more words on being writer-greedy:
Only one writer can hold the latch at one time; multiple readers can hold the latch at a time. In a naive implementation, writers could starve indefinitely if there was a single reader in operation. To avoid this, in the MongoDB implementation, once any single thread makes a write request for a particular latch
- All subsequent readers needing that latch will block
- That writer will wait until all current readers are finished
- The writer will acquire the write latch, do its work, and then release the write latch
- All the queued readers will now proceed
The actual behavior is complex, since this writer-greedy behavior interacts with yielding in ways that can be non-obvious. Recall that, starting with release 2.2, there is a separate latch for each database, so writes to any collection in database 'A' will acquire a separate latch than writes to any collection in database 'B'.
Specific questions
Regarding the specific questions:
- Locks (actually latches) are held by the MongoDB kernel for only as long as it takes to update a single document
- If you have multiple connections coming in to MongoDB, and each one of them is performing a series of writes, the latch will be held on a per-database basis for only as long as it takes for that write to complete
- Multiple connections coming in performing writes (update/insert/delete) will all be interleaved
While this sounds like it would be a big performance concern, in practice it doesn't slow things down. With a properly designed schema and a typical workload, MongoDB will saturate the disk I/O capacity -- even for an SSD -- before lock percentage on any database goes above 50%.
The highest capacity MongoDB cluster that I am aware of is currently performing 2 million writes per second.
I understood the logic behind writer-greedy "locking" - just not at which point it would lock others out. This helped. Thanks!
– nicksahler
Jul 5 '13 at 22:52
I need some precisions about the "writer-greedy" concept : When you say "once a write request comes in, all readers are blocked until the write completes (more on this later)" the write request block all readers on the entire database or just the collection (or document)? Does a reader operation block a write operation? Thank you
– Fred Mériot
Jun 24 '14 at 8:31
2
@FredMériot currently it will block it on database level but document level locking is already in the dev branch. Yes a reader operation can block a write, MongoDB cannot read consistently is something is being written to
– Sammaye
Jul 10 '14 at 8:25
14
Even death doesn't stop this guy from helping people! RIP William
– Sammaye
Sep 3 '14 at 21:10
14
For those wondering what happened to William, take a read here: blog.mongodb.org/post/99566492653/…. RIP
– dayuloli
Dec 25 '14 at 6:17
|
show 2 more comments
up vote
230
down vote
up vote
230
down vote
MongoDB Locking is Different
Locking in MongoDB does not work like locking in an RDBMS, so a bit of explanation is in order. In earlier versions of MongoDB, there was a single global reader/writer latch. Starting with MongoDB 2.2, there is a reader/writer latch for each database.
The readers-writer latch
The latch is multiple-reader, single-writer, and is writer-greedy. This means that:
- There can be an unlimited number of simultaneous readers on a database
- There can only be one writer at a time on any collection in any one database (more on this in a bit)
- Writers block out readers
- By "writer-greedy", I mean that once a write request comes in, all readers are blocked until the write completes (more on this later)
Note that I call this a "latch" rather than a "lock". This is because it's lightweight, and in a properly designed schema the write lock is held on the order of a dozen or so microseconds. See here for more on readers-writer locking.
In MongoDB you can run as many simultaneous queries as you like: as long as the relevant data is in RAM they will all be satisfied without locking conflicts.
Atomic Document Updates
Recall that in MongoDB the level of transaction is a single document. All updates to a single document are Atomic. MongoDB achieves this by holding the write latch for only as long as it takes to update a single document in RAM. If there is any slow-running operation (in particular, if a document or an index entry needs to be paged in from disk), then that operation will yield the write latch. When the operation yields the latch, then the next queued operation can proceed.
This does mean that the writes to all documents within a single database get serialized. This can be a problem if you have a poor schema design, and your writes take a long time, but in a properly-designed schema, locking isn't a problem.
Writer-Greedy
A few more words on being writer-greedy:
Only one writer can hold the latch at one time; multiple readers can hold the latch at a time. In a naive implementation, writers could starve indefinitely if there was a single reader in operation. To avoid this, in the MongoDB implementation, once any single thread makes a write request for a particular latch
- All subsequent readers needing that latch will block
- That writer will wait until all current readers are finished
- The writer will acquire the write latch, do its work, and then release the write latch
- All the queued readers will now proceed
The actual behavior is complex, since this writer-greedy behavior interacts with yielding in ways that can be non-obvious. Recall that, starting with release 2.2, there is a separate latch for each database, so writes to any collection in database 'A' will acquire a separate latch than writes to any collection in database 'B'.
Specific questions
Regarding the specific questions:
- Locks (actually latches) are held by the MongoDB kernel for only as long as it takes to update a single document
- If you have multiple connections coming in to MongoDB, and each one of them is performing a series of writes, the latch will be held on a per-database basis for only as long as it takes for that write to complete
- Multiple connections coming in performing writes (update/insert/delete) will all be interleaved
While this sounds like it would be a big performance concern, in practice it doesn't slow things down. With a properly designed schema and a typical workload, MongoDB will saturate the disk I/O capacity -- even for an SSD -- before lock percentage on any database goes above 50%.
The highest capacity MongoDB cluster that I am aware of is currently performing 2 million writes per second.
MongoDB Locking is Different
Locking in MongoDB does not work like locking in an RDBMS, so a bit of explanation is in order. In earlier versions of MongoDB, there was a single global reader/writer latch. Starting with MongoDB 2.2, there is a reader/writer latch for each database.
The readers-writer latch
The latch is multiple-reader, single-writer, and is writer-greedy. This means that:
- There can be an unlimited number of simultaneous readers on a database
- There can only be one writer at a time on any collection in any one database (more on this in a bit)
- Writers block out readers
- By "writer-greedy", I mean that once a write request comes in, all readers are blocked until the write completes (more on this later)
Note that I call this a "latch" rather than a "lock". This is because it's lightweight, and in a properly designed schema the write lock is held on the order of a dozen or so microseconds. See here for more on readers-writer locking.
In MongoDB you can run as many simultaneous queries as you like: as long as the relevant data is in RAM they will all be satisfied without locking conflicts.
Atomic Document Updates
Recall that in MongoDB the level of transaction is a single document. All updates to a single document are Atomic. MongoDB achieves this by holding the write latch for only as long as it takes to update a single document in RAM. If there is any slow-running operation (in particular, if a document or an index entry needs to be paged in from disk), then that operation will yield the write latch. When the operation yields the latch, then the next queued operation can proceed.
This does mean that the writes to all documents within a single database get serialized. This can be a problem if you have a poor schema design, and your writes take a long time, but in a properly-designed schema, locking isn't a problem.
Writer-Greedy
A few more words on being writer-greedy:
Only one writer can hold the latch at one time; multiple readers can hold the latch at a time. In a naive implementation, writers could starve indefinitely if there was a single reader in operation. To avoid this, in the MongoDB implementation, once any single thread makes a write request for a particular latch
- All subsequent readers needing that latch will block
- That writer will wait until all current readers are finished
- The writer will acquire the write latch, do its work, and then release the write latch
- All the queued readers will now proceed
The actual behavior is complex, since this writer-greedy behavior interacts with yielding in ways that can be non-obvious. Recall that, starting with release 2.2, there is a separate latch for each database, so writes to any collection in database 'A' will acquire a separate latch than writes to any collection in database 'B'.
Specific questions
Regarding the specific questions:
- Locks (actually latches) are held by the MongoDB kernel for only as long as it takes to update a single document
- If you have multiple connections coming in to MongoDB, and each one of them is performing a series of writes, the latch will be held on a per-database basis for only as long as it takes for that write to complete
- Multiple connections coming in performing writes (update/insert/delete) will all be interleaved
While this sounds like it would be a big performance concern, in practice it doesn't slow things down. With a properly designed schema and a typical workload, MongoDB will saturate the disk I/O capacity -- even for an SSD -- before lock percentage on any database goes above 50%.
The highest capacity MongoDB cluster that I am aware of is currently performing 2 million writes per second.
edited Jun 24 '14 at 13:08
answered Jul 3 '13 at 23:04
William Z
8,94032520
8,94032520
I understood the logic behind writer-greedy "locking" - just not at which point it would lock others out. This helped. Thanks!
– nicksahler
Jul 5 '13 at 22:52
I need some precisions about the "writer-greedy" concept : When you say "once a write request comes in, all readers are blocked until the write completes (more on this later)" the write request block all readers on the entire database or just the collection (or document)? Does a reader operation block a write operation? Thank you
– Fred Mériot
Jun 24 '14 at 8:31
2
@FredMériot currently it will block it on database level but document level locking is already in the dev branch. Yes a reader operation can block a write, MongoDB cannot read consistently is something is being written to
– Sammaye
Jul 10 '14 at 8:25
14
Even death doesn't stop this guy from helping people! RIP William
– Sammaye
Sep 3 '14 at 21:10
14
For those wondering what happened to William, take a read here: blog.mongodb.org/post/99566492653/…. RIP
– dayuloli
Dec 25 '14 at 6:17
|
show 2 more comments
I understood the logic behind writer-greedy "locking" - just not at which point it would lock others out. This helped. Thanks!
– nicksahler
Jul 5 '13 at 22:52
I need some precisions about the "writer-greedy" concept : When you say "once a write request comes in, all readers are blocked until the write completes (more on this later)" the write request block all readers on the entire database or just the collection (or document)? Does a reader operation block a write operation? Thank you
– Fred Mériot
Jun 24 '14 at 8:31
2
@FredMériot currently it will block it on database level but document level locking is already in the dev branch. Yes a reader operation can block a write, MongoDB cannot read consistently is something is being written to
– Sammaye
Jul 10 '14 at 8:25
14
Even death doesn't stop this guy from helping people! RIP William
– Sammaye
Sep 3 '14 at 21:10
14
For those wondering what happened to William, take a read here: blog.mongodb.org/post/99566492653/…. RIP
– dayuloli
Dec 25 '14 at 6:17
I understood the logic behind writer-greedy "locking" - just not at which point it would lock others out. This helped. Thanks!
– nicksahler
Jul 5 '13 at 22:52
I understood the logic behind writer-greedy "locking" - just not at which point it would lock others out. This helped. Thanks!
– nicksahler
Jul 5 '13 at 22:52
I need some precisions about the "writer-greedy" concept : When you say "once a write request comes in, all readers are blocked until the write completes (more on this later)" the write request block all readers on the entire database or just the collection (or document)? Does a reader operation block a write operation? Thank you
– Fred Mériot
Jun 24 '14 at 8:31
I need some precisions about the "writer-greedy" concept : When you say "once a write request comes in, all readers are blocked until the write completes (more on this later)" the write request block all readers on the entire database or just the collection (or document)? Does a reader operation block a write operation? Thank you
– Fred Mériot
Jun 24 '14 at 8:31
2
2
@FredMériot currently it will block it on database level but document level locking is already in the dev branch. Yes a reader operation can block a write, MongoDB cannot read consistently is something is being written to
– Sammaye
Jul 10 '14 at 8:25
@FredMériot currently it will block it on database level but document level locking is already in the dev branch. Yes a reader operation can block a write, MongoDB cannot read consistently is something is being written to
– Sammaye
Jul 10 '14 at 8:25
14
14
Even death doesn't stop this guy from helping people! RIP William
– Sammaye
Sep 3 '14 at 21:10
Even death doesn't stop this guy from helping people! RIP William
– Sammaye
Sep 3 '14 at 21:10
14
14
For those wondering what happened to William, take a read here: blog.mongodb.org/post/99566492653/…. RIP
– dayuloli
Dec 25 '14 at 6:17
For those wondering what happened to William, take a read here: blog.mongodb.org/post/99566492653/…. RIP
– dayuloli
Dec 25 '14 at 6:17
|
show 2 more comments
up vote
19
down vote
Mongo 3.0 now supports collection-level locking.
In addition to this, now Mongo created an API that allows to create a storage engine. Mongo 3.0 comes with 2 storage engines:
MMAPv1: the default storage engine and the one use in the previous versions. Comes with collection-level locking.
WiredTiger: the new storage engine, comes with document-level locking and compression. (Only available for the 64-bit version)
MongoDB 3.0 release notes
WiredTiger
add a comment |
up vote
19
down vote
Mongo 3.0 now supports collection-level locking.
In addition to this, now Mongo created an API that allows to create a storage engine. Mongo 3.0 comes with 2 storage engines:
MMAPv1: the default storage engine and the one use in the previous versions. Comes with collection-level locking.
WiredTiger: the new storage engine, comes with document-level locking and compression. (Only available for the 64-bit version)
MongoDB 3.0 release notes
WiredTiger
add a comment |
up vote
19
down vote
up vote
19
down vote
Mongo 3.0 now supports collection-level locking.
In addition to this, now Mongo created an API that allows to create a storage engine. Mongo 3.0 comes with 2 storage engines:
MMAPv1: the default storage engine and the one use in the previous versions. Comes with collection-level locking.
WiredTiger: the new storage engine, comes with document-level locking and compression. (Only available for the 64-bit version)
MongoDB 3.0 release notes
WiredTiger
Mongo 3.0 now supports collection-level locking.
In addition to this, now Mongo created an API that allows to create a storage engine. Mongo 3.0 comes with 2 storage engines:
MMAPv1: the default storage engine and the one use in the previous versions. Comes with collection-level locking.
WiredTiger: the new storage engine, comes with document-level locking and compression. (Only available for the 64-bit version)
MongoDB 3.0 release notes
WiredTiger
answered Mar 4 '15 at 18:07
Londo
38136
38136
add a comment |
add a comment |
up vote
8
down vote
I know the question is pretty old but still some people are confused....
Starting in MongoDB 3.0, the WiredTiger storage engine (which uses document-level concurrency) is available in the 64-bit builds.
WiredTiger uses document-level concurrency control for write operations. As a result, multiple clients can modify different documents of a collection at the same time.
For most read and write operations, WiredTiger uses optimistic concurrency control. WiredTiger uses only intent locks at the global, database and collection levels. When the storage engine detects conflicts between two operations, one will incur a write conflict causing MongoDB to transparently retry that operation.
Some global operations, typically short lived operations involving multiple databases, still require a global “instance-wide” lock. Some other operations, such as dropping a collection, still require an exclusive database lock.
Document Level Concurrency
add a comment |
up vote
8
down vote
I know the question is pretty old but still some people are confused....
Starting in MongoDB 3.0, the WiredTiger storage engine (which uses document-level concurrency) is available in the 64-bit builds.
WiredTiger uses document-level concurrency control for write operations. As a result, multiple clients can modify different documents of a collection at the same time.
For most read and write operations, WiredTiger uses optimistic concurrency control. WiredTiger uses only intent locks at the global, database and collection levels. When the storage engine detects conflicts between two operations, one will incur a write conflict causing MongoDB to transparently retry that operation.
Some global operations, typically short lived operations involving multiple databases, still require a global “instance-wide” lock. Some other operations, such as dropping a collection, still require an exclusive database lock.
Document Level Concurrency
add a comment |
up vote
8
down vote
up vote
8
down vote
I know the question is pretty old but still some people are confused....
Starting in MongoDB 3.0, the WiredTiger storage engine (which uses document-level concurrency) is available in the 64-bit builds.
WiredTiger uses document-level concurrency control for write operations. As a result, multiple clients can modify different documents of a collection at the same time.
For most read and write operations, WiredTiger uses optimistic concurrency control. WiredTiger uses only intent locks at the global, database and collection levels. When the storage engine detects conflicts between two operations, one will incur a write conflict causing MongoDB to transparently retry that operation.
Some global operations, typically short lived operations involving multiple databases, still require a global “instance-wide” lock. Some other operations, such as dropping a collection, still require an exclusive database lock.
Document Level Concurrency
I know the question is pretty old but still some people are confused....
Starting in MongoDB 3.0, the WiredTiger storage engine (which uses document-level concurrency) is available in the 64-bit builds.
WiredTiger uses document-level concurrency control for write operations. As a result, multiple clients can modify different documents of a collection at the same time.
For most read and write operations, WiredTiger uses optimistic concurrency control. WiredTiger uses only intent locks at the global, database and collection levels. When the storage engine detects conflicts between two operations, one will incur a write conflict causing MongoDB to transparently retry that operation.
Some global operations, typically short lived operations involving multiple databases, still require a global “instance-wide” lock. Some other operations, such as dropping a collection, still require an exclusive database lock.
Document Level Concurrency
answered Mar 27 '17 at 8:32
Muhammad Ali
300415
300415
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f17456671%2fto-what-level-does-mongodb-lock-on-writes-or-what-does-it-mean-by-per-connec%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Starting in MongoDB 3.0, the WiredTiger storage engine is available in the 64-bit builds. WiredTiger uses document-level concurrency control for write operations. As a result, multiple clients can modify different documents of a collection at the same time. docs.mongodb.com/manual/core/wiredtiger/…
– Muhammad Ali
Mar 27 '17 at 8:33