Live data from Hacker News

MongoDB 1.8 (stable) released

blog.mongodb.org

1–10 of 69 posts

Re: MongoDB 1.8 (stable) released

#2
Starting to get excited once again about MongoDB. I was kind of down about it after having some issues with real world implementations. Considering journaling is something I would never have thought would have made it in, I wonder if they will come around on the memory mapped I/O like everyone else eventually does.

EDIT: Also... does the group commit mean that ALL write transactions will be un-acknowledged to the client until the group commit finishes?

Re: MongoDB 1.8 (stable) released

#5
post #3

yay "Tab completion in the shell" and "B-tree index self-compaction" are great. So is --journal.

Do you happen to know details about the B-tree index self-compaction? I can't seem to find it in their changelog on jira ( http://jira.mongodb.org/browse/SERVER?report=com.atlassian.j... )

Re: MongoDB 1.8 (stable) released

#6
Can't wait until they start implementing filtered indexes ( http://jira.mongodb.org/browse/SERVER-785 ). Sparse indexes are a step in the right direction, but filtered ones would be just a bit cooler :)

"New map/reduce options for incremental updates" would also be really cool if they had a way to do something like couchDBs incremental views. This would require keeping track of changes or a "trigger" functionality that runs the m/r task after every x inserts

Re: MongoDB 1.8 (stable) released

#7
This is exciting: db.users.mapReduce(map, reduce, {out: { inline : 1}});

This is Not exciting:

"Note that this option is possible only when the result set fits within the 16MB limit of a single document."

Re: MongoDB 1.8 (stable) released

#10
post #7

This is exciting: db.users.mapReduce(map, reduce, {out: { inline : 1}}); This is Not exciting: "Note that this option is possible only when the result set fits within the 16MB limit of a single document."

Not really a big deal to just output to a new collection and query that.
Post reply on HN