Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MongoDB - single huge collection of raw data. Split or not?

Tags:

mongodb

We collect and store instrumentation data from a large number of hosts. Our storage is MongoDB - several shards with replicas. Everything is stored in a single large collection. Each document we insert is a time based observation with some attributes (measurements). The time stamp is the most important attribute because all queries are based on time at least. Documents are never updated, so it's a pure write-in-look-up model. Right now it works reasonably well with several billions of docs.

Now,

We want to grow a bit and hold up to 12 month of data which may amount to a scary trillion+ observations (documents). I was wandering if dumping everything into a single monstrous collection is the best choice or there is a more intelligent way to go about it. By more intelligent I mean - use less hardware while still providing fast inserts and (importantly) fast queries. So I thought about splitting the large collection into smaller pieces hoping to gain memory on indexes, insertion and query speed.

I looked into shards, but sharding by the time stamp sounds like a bad idea because all writes will go into one node canceling the benefits of sharding. The insert rates are pretty high, so we need sharding to work properly here. I also thought about creating a new collection every month and then pick up a relevant collection for a user query. Collections older than 12 month will be either dropped or archived. There is also an option to create entirely new database every month and do similar rotation. Other options? Or perhaps one large collection is THE option to grow real big?

Please share your experience and considerations in similar apps.

like image 566
Dima Avatar asked Apr 04 '13 16:04

Dima


People also ask

Can MongoDB handle millions of data?

Working with MongoDB and ElasticSearch is an accurate decision to process millions of records in real-time. These structures and concepts could be applied to larger datasets and will work extremely well too.

How do I split a collection in MongoDB?

When you shard a collection that has existing data, MongoDB automatically creates chunks to evenly distribute the collection. To split data effectively in a sharded cluster you must consider the number of documents in a chunk and the average document size to create a uniform chunk size.

How many collections is too many MongoDB?

In general, we recommend limiting collections to 10,000 per replica set. When users begin exceeding 10,000 collections, they typically see decreases in performance.

Can MongoDB handle big data?

It can process large amounts of real-time data very quickly because of in-memory calculations. MongoDB: MongoDB is a NoSQL database. It has a flexible schema. MongoDB stores huge amounts of data in a naturally traversable format, making it a good choice to store, query, and analyze big data.


2 Answers

It really depends on the use-case for your queries.

If it's something that could be aggregated, I would say do this through a scheduled map/reduce function and store the smaller data size in separate collection(s).

If everything should be in the same collection and all data should be queried at the same time to generate the desired results, then you need to go with Sharding. Then depending on the data size for your queries, you could go with an in memory map/reduce or even doing it at the application layer.

As yourself pointed out, Sharding based on time is a very bad idea. It makes all the writes going to one shard, so define your shard key. MongoDB Docs, has a very good explanation on this.

If you can elaborate more on your specific needs for the queries would be easier to suggest something.

Hope it helps.

like image 107
Majid Avatar answered Oct 01 '22 13:10

Majid


I think collection on monthly basis will help you to get some boost up but I was wondering why can not you use the hour field of your timestamp for sharding . You can add a column which will hold the HOUR part of time stamp and when you shard against it will be shared nicely as you have repeating hour daily basis. I have not tested it but thought it will may help you

like image 30
Devesh Avatar answered Oct 01 '22 15:10

Devesh