> Every case I've seen has been the data traffic exceeding the capacity of the system. There is no database that works well under those circumstances.
Is there a benchmark somewhere comparing the memory/disk consumption of MongoDB vs. other datastores?
If there's a significant overhead (and my early tests tend to show that there was - but I didn't make a strict benchmark though), then it would become very related to MongoDB then.
(honest and real question, I'm a MongoDB user btw, as well as Redis, MySQL, Postgresql etc).
The main overhead for MongoDB's storage is that the "column name" (keys) is stored in every record rather than just once as with traditional SQL database and some of the other NoSQL solutions. That is why you'll often see developers using very short key names, and one use for an "ORM" to translate between developer friendly names and short stored names.
Of course this can be solved fairly easily by the MongoDB developers by having a table mapping between short tokens/numbers and the long names. This is the ticket:
My question goes further though, as someone who has worked with, and implemented too, column-based stores: I'm curious to compare the respective space/ram consumption for the data part, too.
Is there a benchmark somewhere comparing the memory/disk consumption of MongoDB vs. other datastores?
If there's a significant overhead (and my early tests tend to show that there was - but I didn't make a strict benchmark though), then it would become very related to MongoDB then.
(honest and real question, I'm a MongoDB user btw, as well as Redis, MySQL, Postgresql etc).