Apache Iceberg
Last updated
Last updated
Apache Iceberg sink connector
1.4.2
Sink connector for Apache Iceberg. It can support cdc mode 、auto create table and table schema evolution.
BOOLEAN
BOOLEAN
INT
INTEGER
BIGINT
LONG
FLOAT
FLOAT
DOUBLE
DOUBLE
DATE
DATE
TIME
TIME
TIMESTAMP
TIMESTAMP
STRING
STRING
BYTES
FIXED BINARY
DECIMAL
DECIMAL
ROW
STRUCT
ARRAY
LIST
MAP
MAP
catalog_name
string
yes
default
User-specified catalog name. default is default
namespace
string
yes
default
The iceberg database name in the backend catalog. default is default
table
string
yes
-
The iceberg table name in the backend catalog.
iceberg.catalog.config
map
yes
-
hadoop.config
map
no
-
Properties passed through to the Hadoop configuration
iceberg.hadoop-conf-path
string
no
-
The specified loading paths for the 'core-site.xml', 'hdfs-site.xml', 'hive-site.xml' files.
case_sensitive
boolean
no
false
If data columns where selected via schema [config], controls whether the match to the schema will be done with case sensitivity.
iceberg.table.write-props
map
no
-
iceberg.table.auto-create-props
map
no
-
Configuration specified by Iceberg during automatic table creation.
iceberg.table.schema-evolution-enabled
boolean
no
false
Setting to true enables Iceberg tables to support schema evolution during the synchronization process
iceberg.table.primary-keys
string
no
-
Default comma-separated list of columns that identify a row in tables (primary key)
iceberg.table.partition-keys
string
no
-
Default comma-separated list of partition fields to use when creating tables
iceberg.table.upsert-mode-enabled
boolean
no
false
Set to true
to enable upsert mode, default is false
schema_save_mode
Enum
no
CREATE_SCHEMA_WHEN_NOT_EXIST
the schema save mode, please refer to schema_save_mode
below
data_save_mode
Enum
no
APPEND_DATA
the data save mode, please refer to data_save_mode
below
iceberg.table.commit-branch
string
no
-
Default branch for commits
Specify the properties for initializing the Iceberg catalog, which can be referenced in this file:"
Properties passed through to Iceberg writer initialization, these take precedence, such as 'write.format.default', 'write.target-file-size-bytes', and other settings, can be found with specific parameters at '.
example1
example2