Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Solandra vs. ElasticSearch

We are working with a Cassandra database that will store data in the petabyte range. We are thinking of using either ElasticSearch or Solandra, but we are having a fun time deciding between which to use. I'm wondering if the our database might get too large. I know ElasticSearch is scalable, but to what extent - especially with a Cassandra database.

Solandra on the other hand is made for Cassandra and is highly scalable, but again, to what extent?

Both are scalable, but how scalable using Cassandra?

like image 424
Henry Avatar asked Jun 15 '11 14:06

Henry


2 Answers

Solandra is being used in the 10s of Terabytes range.

Are you saying you want to index a PB of data in solandra or a subset? I think if you want 1 big index with a PB of data you are stretching the limits. but If you want a PB of indexes, then this will scale the same as Cassandra.

How many nodes are you planning to run? how much disk per node?

like image 93
tjake Avatar answered Nov 13 '22 19:11

tjake


Have a look into this nice discussion:

http://groups.google.com/a/elasticsearch.com/group/users/browse_thread/thread/3f99e682887f98e4

like image 37
Karussell Avatar answered Nov 13 '22 20:11

Karussell