Skip to content

Commit

Permalink
Add HBase 1.0 client.
Browse files Browse the repository at this point in the history
* Bumps `hbase.version` to 1.0.0
* Adds a new database, hbase-10, which targets the HBase 1.0 API.
  • Loading branch information
cmccoy committed Apr 8, 2015
1 parent 5659fc5 commit 3468908
Show file tree
Hide file tree
Showing 4 changed files with 483 additions and 8 deletions.
1 change: 1 addition & 0 deletions bin/ycsb
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ DATABASES = {
"elasticsearch": "com.yahoo.ycsb.db.ElasticSearchClient",
"gemfire" : "com.yahoo.ycsb.db.GemFireClient",
"hbase" : "com.yahoo.ycsb.db.HBaseClient",
"hbase-10" : "com.yahoo.ycsb.db.HBaseClient10",
"hypertable" : "com.yahoo.ycsb.db.HypertableClient",
"infinispan" : "com.yahoo.ycsb.db.InfinispanClient",
"jdbc" : "com.yahoo.ycsb.db.JdbcDBClient",
Expand Down
7 changes: 1 addition & 6 deletions hbase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,9 @@
<dependencies>
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase</artifactId>
<artifactId>hbase-client</artifactId>
<version>${hbase.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.yahoo.ycsb</groupId>
<artifactId>core</artifactId>
Expand Down
Loading

0 comments on commit 3468908

Please sign in to comment.