MongoDB 2.2.0 Released
mongodb.org
MongoDB 2.2.0 Released
1–10 of 64 posts
Re: MongoDB 2.2.0 Released
#2Re: MongoDB 2.2.0 Released
#3Re: MongoDB 2.2.0 Released
#4notes summary:
• Aggregation Framework to fix some map-reduce woes.
• TTL Collections
• DB Level Locking (A step in the right direction)
• Better yielding on page faults
• Tag aware sharding (HELL YES)
• Better Read Prefs
• Indexes now handled by mongodump/mongorestore
• mongooplog replay is awesome for getting point in time backups
• Shell now has full unicode, multiline command history, $EDITOR support (all from change to linenoise.c
Re: MongoDB 2.2.0 Released
#5The new DB level locking introduced in this release is a joke. There's not much difference between that and the old global write lock unless you split your database in dozens of smaller ones. What a pain. I wish they'd just stop pretending and addressed the issue properly once and for all.
I really want to like and use MongoDB because the way data is represented and how it can be queried is awesome.
Re: MongoDB 2.2.0 Released
#6My experience with MongoDB hasn't been the most pleasant in a write-heavy environment. Until they fix the write lock properly, MongoDB is pretty much useless for many high throughput applications in my opinion... The new DB level locking introduced in this release is a joke. There's not much difference between that and the old global write lock unless you split your database in dozens of smaller ones. What a pain. I…
Re: MongoDB 2.2.0 Released
#7My experience with MongoDB hasn't been the most pleasant in a write-heavy environment. Until they fix the write lock properly, MongoDB is pretty much useless for many high throughput applications in my opinion... The new DB level locking introduced in this release is a joke. There's not much difference between that and the old global write lock unless you split your database in dozens of smaller ones. What a pain. I…
I benchmarked this at http://blog.serverdensity.com/goodbye-global-lock-mongodb-2-... and there is a video explaining how this works at http://www.10gen.com/presentations/concurrency-internals-mon...
Re: MongoDB 2.2.0 Released
#8Re: MongoDB 2.2.0 Released
#9My experience with MongoDB hasn't been the most pleasant in a write-heavy environment. Until they fix the write lock properly, MongoDB is pretty much useless for many high throughput applications in my opinion... The new DB level locking introduced in this release is a joke. There's not much difference between that and the old global write lock unless you split your database in dozens of smaller ones. What a pain. I…
It's inaccurate that there's no difference between the global lock and database level locking. Whilst it's true that locking is now down at the database level and you get benefits from splitting into multiple databases, the real benefit is from the new PageFaultException architecture. Even using a single database you will see significant performance improvements. I benchmarked this at http://blog.serverdensity.com/go…
I definitely won't be looking at MongoDB again until this is fixed for good, and until I know replication is more reliable. Had terrible problems that that too unfortunately.
Re: MongoDB 2.2.0 Released
#10My experience with MongoDB hasn't been the most pleasant in a write-heavy environment. Until they fix the write lock properly, MongoDB is pretty much useless for many high throughput applications in my opinion... The new DB level locking introduced in this release is a joke. There's not much difference between that and the old global write lock unless you split your database in dozens of smaller ones. What a pain. I…