hellodk
hellodk

Reputation: 426

Rethinkdb Scalability

How scalable is rethinkdb? Can it be used for TB's of data?

I have around 400 GB's of data, which are bound to increase by 10-25 GB's per week. Any suggestions, would be of great help.

Upvotes: 2

Views: 1116

Answers (2)

Ruben Kelevra
Ruben Kelevra

Reputation: 91

Note that a NoSQL-Database does increase the amount of storage required massively, so be sure to have enough disk space on your nodes.

But some terabytes are no issue for RethinkDB, it's designed to handle a nearly infinite amount of data if your nodes have a lot of RAM it also provides nearly Memory-alike performance because the caching algorithms are very good.

You can easily spread out your data on many nodes, by sharding, which also increases the absolute throughput of your cluster, but slightly increases the latency of queries, because of the round trips between the cluster-members.

Upvotes: 1

Reza Moaiandin
Reza Moaiandin

Reputation: 46

Rethinkdb is very scalable and you should be able to use it with TBs of data no problem, that's what its designed for. As for its stability it should be very stable as of version 2.0 and fully production.

http://www.rethinkdb.com/stability/

Upvotes: 3

Related Questions