From edf806c647f77b236c27277733f46c610c3fcd87 Mon Sep 17 00:00:00 2001 From: Kanthi Subramanian Date: Wed, 26 Apr 2023 18:12:21 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c7b372e..0d0ce9d 100644 --- a/README.md +++ b/README.md @@ -52,14 +52,14 @@ Start the application. | clickhouse.server.pass | ClickHouse password | | clickhouse.server.port | ClickHouse port | | clickhouse.server.database | ClickHouse destination database | -| database.allowPublicKeyRetrieval | MySQL specific: true/false | | snapshot.mode | "initial" -> Data that already exists in source database will be replicated. "schema_only" -> Replicate data that is added/modified after the connector is started.\
MySQL: https://debezium.io/documentation/reference/stable/connectors/mysql.html#mysql-property-snapshot-mode \
PostgreSQL: https://debezium.io/documentation/reference/stable/connectors/postgresql.html#postgresql-property-snapshot-mode
MongoDB: initial, never. https://debezium.io/documentation/reference/stable/connectors/mongodb.html | -| connector.class | MySQL -> "io.debezium.connector.mysql.MySqlConnector"
PostgreSQL ->
Mongo ->
| +| connector.class | MySQL -> "io.debezium.connector.mysql.MySqlConnector"
PostgreSQL ->
Mongo ->
| | offset.storage.file.filename | Offset storage file(This stores the offsets of the source database) MySQL: mysql binlog file and position, gtid set. Make sure this file is durable and its not persisted in temp directories. | | database.history.file.filename | Database History: Make sure this file is durable and its not persisted in temp directories. | | schema.history.internal.file.filename | Schema History: Make sure this file is durable and its not persisted in temp directories. | | disable.ddl | **Optional**, Default: false, if DDL execution needs to be disabled | | enable.ddl.snapshot | **Optional**, Default: false, If set to true, the DDL that is passed as part of snapshot process will be executed. Default behavior is DROP/TRUNCATE as part of snapshot is disabled. | +| database.allowPublicKeyRetrieval | **Optional**, MySQL specific: true/false | ##### Docker