Reputation: 15355
I am looking a solution for a distributed database that will support queries similar to sql.
To be more precise it should have a JDBC connector and same or similar to sql syntax.
From googling I found HIVE
with hadoop.
What other alternatives do you know of?
Upvotes: 1
Views: 907
Reputation: 132
The hive thrift server is something you might want to look at. Be aware of the pitfalls though.
https://cwiki.apache.org/confluence/display/Hive/HiveServer
Upvotes: 1
Reputation: 33495
Cloudera Impala is a framework which supports SQL like queries and is compatible with HiveQL..
While Hive has been for some time and oriented for batch processing, Impala is new and is geared for real time processing.
Not exactly sure if JDBC works with Impala.
Upvotes: 2