CDC compatible debezium-json
Seatunnel supports to interpret cdc record as Debezium-JSON messages publish to mq(kafka) system.
This is useful in many cases to leverage this feature, such as compatible with the debezium ecosystem.
How to use
MySQL-CDC output to Kafka
env {
execution.parallelism = 1
job.mode = "STREAMING"
checkpoint.interval = 15000
}
source {
MySQL-CDC {
result_table_name = "table1"
hostname = localhost
base-url="jdbc:mysql://localhost:3306/test"
"startup.mode"=INITIAL
catalog {
factory=MySQL
}
table-names=[
"database1.t1",
"database1.t2",
"database2.t1"
]
# compatible_debezium_json options
format = compatible_debezium_json
debezium = {
# include schema into kafka message
key.converter.schemas.enable = false
value.converter.schemas.enable = false
# include ddl
include.schema.changes = true
# topic prefix
database.server.name = "mysql_cdc_1"
}
# compatible_debezium_json fixed schema
schema = {
fields = {
topic = string
key = string
value = string
}
}
}
}
sink {
Kafka {
source_table_name = "table1"
bootstrap.servers = "localhost:9092"
# compatible_debezium_json options
format = compatible_debezium_json
}
}