Rahul
Rahul

Reputation: 1423

Which nosql solution fits my application HBase OR Hypertable OR Cassandra

I have an application with 100 million of data and growing. I want to scale out before it hits the wall.

I have been reading stuff about nosql technologies which can handle Big Data efficiently.

My needs:

There are more reads than writes.But writes are also significantly large in numbers (read:write=4:3)

Can you please explain difference among HBase, Hypertable and Cassandra? Which one fits my requirements?

Upvotes: 2

Views: 1137

Answers (2)

Sathishkumar
Sathishkumar

Reputation: 3414

If you already having data Hive is the best solution for your application, Or you develop app from the scratch look into below link that explain overview of the nosql world

http://nosql-database.org/

http://www.vineetgupta.com/2010/01/nosql-databases-part-1-landscape/

Upvotes: 0

Arnon Rotem-Gal-Oz
Arnon Rotem-Gal-Oz

Reputation: 25939

Both HBase and Hypertable require hadoop. If you're not using Hadoop anyway (e.g. need to solve map/reduce related problems) - I'd go with cassandra as it is stand-alone

Upvotes: 1

Related Questions