Hbase
Last updated
Last updated
Hbase Source Connector
Reads data from Apache Hbase.
zookeeper_quorum
string
Yes
-
table
string
Yes
-
schema
config
Yes
-
hbase_extra_config
string
No
-
caching
int
No
-1
batch
int
No
-1
cache_blocks
boolean
No
false
common-options
No
-
The zookeeper quorum for Hbase cluster hosts, e.g., "hadoop001:2181,hadoop002:2181,hadoop003:2181".
The name of the table to write to, e.g., "nexus".
Hbase stores data in byte arrays. Therefore, you need to configure the data types for each column in the table. For more information, see: Schema Feature.
Additional configurations for Hbase.
The caching parameter sets the number of rows fetched per server trip during scans. This reduces round-trips between client and server, improving scan efficiency. Default: -1.
The batch parameter sets the maximum number of columns returned per scan. This is useful for rows with many columns to avoid fetching excessive data at once, thus saving memory and improving performance.
The cache_blocks parameter determines whether to cache data blocks during scans. By default, HBase caches data blocks during scans. Setting this to false reduces memory usage during scans. Default in Nexus: false.
Common parameters for Source plugins, refer to Source Common Options.