MongoDB 2.2.0 Released
11–20 of 64 posts
Re: MongoDB 2.2.0 Released
#12My 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…
DB Level Locking ( https://jira.mongodb.org/browse/SERVER-4328 ) is a dependency of Collection Level Locking ( https://jira.mongodb.org/browse/SERVER-1240 ). For a critical, tricky core piece of functionality like this it makes sense to tackle one major concurrency issue at a time, do a release, stabilise the code and verify there are no issues introduced by the new locking code and only then release the next step in…
Re: MongoDB 2.2.0 Released
#13My 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
#14Earlier quoted context omitted.
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…
That's good to know. It still feels like an half-assed solution to a very serious problem, however. 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.
In my experience replication has been extremely stable and reliable for several point releases so I'm not sure what problems you had.
Re: MongoDB 2.2.0 Released
#15Re: MongoDB 2.2.0 Released
#16Re: MongoDB 2.2.0 Released
#17The Aggregation Framework is a great feature, already in production...
Re: MongoDB 2.2.0 Released
#18Re: MongoDB 2.2.0 Released
#19Does anyone know if Collection level locking is in the pipeline?
Re: MongoDB 2.2.0 Released
#20Does anyone know if Collection level locking is in the pipeline?
http://www.10gen.com/presentations/concurrency-internals-mon...