You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fields:
- key: Corresponds to the hbase key
- value: Corresponds to the "main:value"
- timestamp: Corresponds to "main:timestamp"
- datatype: Corresponds to "meta:datatype"
Is something like below a valid config?
tasks.max=1
topics=telemetry
zookeeper.quorum=localhost:2181
event.parser.class=io.svectors.hbase.parser.AvroEventParser
hbase.telemetry.rowkey.columns=value, timestamp, datatype
hbase.telemetry.rowkey.delimiter=:
hbase.telemetry.family=main, meta
The text was updated successfully, but these errors were encountered:
It seems, it supports one column family as of now. I have enhanced the code with multiple column family support and custom column mapping. You can refer this for your use case: https://github.com/nishutayal/kafka-connect-hbase
I have a hbase table with multiple column families. From the given example, I am not sure how do I create my configs.
My table looks like
The Kafka Topic has Value schema that goes like
Is something like below a valid config?
The text was updated successfully, but these errors were encountered: