Im working on a project in which i got to use hbase.The project is in java based. I need to know what is the best hbase client api for java.
|
|
HBase has its own java client in core library. It covers pretty much everything. (Got connection as well). If you need a asynchronous client You can check asyncbase from stumbleupon, which is a solid client. But it's filter support is limited.(it has basic filters though, and they work like charm). If you are using java I wouldn't recommend using via rest. |
|||
|
|
|
playOrm is a another java tool where you can annotate your entities and immediately be up and running. It is NOT JPA compliant on purpose as nosql is too different. It has methods like findAll() as you want to parallel your reads in nosql. playOrm does add JQL but with a twist for nosql....As an example of the twist, you can partition a trillion row into 1 billion partitions and do JQL into any partition and join with other tables. It makes a transition to noSql much easier if you come from the JPA world. |
|||
|
|
|
Kundera is a object-datastore mapping tool for Hbase alongwith Cassandra and MongoDB. Some of the salient features are:
It's hosted here: https://github.com/impetus-opensource/Kundera |
|||
|
|