Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ OBKV HBase Client is Java Library that can be used to access data from [OceanBas
Create table in the OceanBase database:

``` sql
CREATE TABLEGROUP test1;
CREATE TABLE `test1$family1` (
`K` varbinary(1024) NOT NULL,
`Q` varbinary(256) NOT NULL,
`T` bigint(20) NOT NULL,
`V` varbinary(1024) DEFAULT NULL,
PRIMARY KEY (`K`, `Q`, `T`)
);
PRIMARY KEY (`K`, `Q`, `T`))
TABLEGROUP = test1;
```
**Note:**
* test1: HBase table name;
Expand All @@ -23,7 +24,7 @@ Import the dependency for your maven project:
<dependency>
<groupId>com.oceanbase</groupId>
<artifactId>obkv-hbase-client</artifactId>
<version>0.1.5</version>
<version>1.0.0</version>
</dependency>
```
**Note:**
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.oceanbase</groupId>
<artifactId>obkv-hbase-client</artifactId>
<version>0.1.6-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>

<name>${project.groupId}:${project.artifactId}</name>
<description>OceanBase JavaClient for HBaseApi</description>
Expand Down Expand Up @@ -54,7 +54,7 @@
<project.build.sourceEncoding>${project.encoding}</project.build.sourceEncoding>
<project.encoding>UTF-8</project.encoding>
<slf4j.version>1.7.21</slf4j.version>
<table.client.version>1.2.14.4-SNAPSHOT</table.client.version>
<table.client.version>1.3.0</table.client.version>
</properties>

<dependencyManagement>
Expand Down