memiiso/debezium-server-iceberg

How to set HiveCatalog in application.properties?

saimigo opened this issue · 4 comments

Default catalog type is hadoop, how to use HiveCatalog ?

Hi @saimigo all catalogs are supported. you can configure hive catalog like below

debezium.sink.iceberg.catalog-name=my_hive_catalog
debezium.sink.iceberg.type=hive
debezium.sink.iceberg.uri=thrift://example.com:9083
debezium.sink.iceberg.clients=10
debezium.sink.iceberg.warehouse=hdfs://example.com:8020/warehouse
# setting other iceberg catalog variables
debezium.sink.iceberg._iceberg_ config_=_iceberg_ config_val_

edit: corrected the example

That's great. Thanks!

That's great. Thanks!