Scan Source: Bounded Lookup Source: Sync Mode Sink: Batch Sink: Streaming Upsert Mode
The HBase connector allows for reading from and writing to an HBase cluster. This document describes how to setup the HBase Connector to run SQL queries against HBase.
HBase always works in upsert mode for exchange changelog messages with the external system using a primary key defined on the DDL. The primary key must be defined on the HBase rowkey field (rowkey field must be declared). If the PRIMARY KEY clause is not declared, the HBase connector will take rowkey as the primary key by default.
In order to use the HBase connector the following dependencies are required for both projects using a build automation tool (such as Maven or SBT) and SQL Client with SQL JAR bundles.
HBase version | Maven dependency | SQL Client JAR |
---|---|---|
1.4.x |
<dependency>
|
Download |
2.2.x |
<dependency>
|
Download |
All the column families in HBase table must be declared as ROW type, the field name maps to the column family name, and the nested field names map to the column qualifier names. There is no need to declare all the families and qualifiers in the schema, users can declare what’s used in the query. Except the ROW type fields, the single atomic type field (e.g. STRING, BIGINT) will be recognized as HBase rowkey. The rowkey field can be arbitrary name, but should be quoted using backticks if it is a reserved keyword.
Option | Required | Default | Type | Description |
---|---|---|---|---|
connector |
required | (none) | String | Specify what connector to use, valid values are:
|
table-name |
required | (none) | String | The name of HBase table to connect. |
zookeeper.quorum |
required | (none) | String | The HBase Zookeeper quorum. |
zookeeper.znode.parent |
optional | /hbase | String | The root dir in Zookeeper for HBase cluster. |
null-string-literal |
optional | null | String | Representation for null values for string fields. HBase source and sink encodes/decodes empty bytes as null values for all types except string type. |
sink.buffer-flush.max-size |
optional | 2mb | MemorySize | Writing option, maximum size in memory of buffered rows for each writing request.
This can improve performance for writing data to HBase database, but may increase the latency.
Can be set to '0' to disable it.
|
sink.buffer-flush.max-rows |
optional | 1000 | Integer | Writing option, maximum number of rows to buffer for each writing request.
This can improve performance for writing data to HBase database, but may increase the latency.
Can be set to '0' to disable it.
|
sink.buffer-flush.interval |
optional | 1s | Duration | Writing option, the interval to flush any buffered rows.
This can improve performance for writing data to HBase database, but may increase the latency.
Can be set to '0' to disable it. Note, both 'sink.buffer-flush.max-size' and 'sink.buffer-flush.max-rows'
can be set to '0' with the flush interval set allowing for complete async processing of buffered actions.
|
sink.parallelism |
optional | (none) | Integer | Defines the parallelism of the HBase sink operator. By default, the parallelism is determined by the framework using the same parallelism of the upstream chained operator. |
HBase stores all data as byte arrays. The data needs to be serialized and deserialized during read and write operation
When serializing and de-serializing, Flink HBase connector uses utility class org.apache.hadoop.hbase.util.Bytes
provided by HBase (Hadoop) to convert Flink Data Types to and from byte arrays.
Flink HBase connector encodes null
values to empty bytes, and decode empty bytes to null
values for all data types except string type. For string type, the null literal is determined by null-string-literal
option.
The data type mappings are as follows:
Flink SQL type | HBase conversion |
---|---|
CHAR / VARCHAR / STRING |
|
BOOLEAN |
|
BINARY / VARBINARY |
Returns byte[] as is. |
DECIMAL |
|
TINYINT |
|
SMALLINT |
|
INT |
|
BIGINT |
|
FLOAT |
|
DOUBLE |
|
DATE |
Stores the number of days since epoch as int value. |
TIME |
Stores the number of milliseconds of the day as int value. |
TIMESTAMP |
Stores the milliseconds since epoch as long value. |
ARRAY |
Not supported |
MAP / MULTISET |
Not supported |
ROW |
Not supported |