Skip to content

Commit

Permalink
Added ignore.ddl.regex to config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
subkanthi committed Nov 2, 2024
1 parent bc914f8 commit 30de53a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sink-connector-lightweight/docker/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ database.connectionTimeZone: "UTC"

# Configuration to override the clickhouse database name for a given MySQL database name. If this configuration is not
# provided, the MySQL database name will be used as the ClickHouse database name.
#clickhouse.database.override.map: "employees:employees2, products:productsnew
clickhouse.database.override.map: "test:ch_test"

# clickhouse.datetime.timezone: This timezone will override the default timezone of ClickHouse server. Timezone columns will be set to this timezone.
#clickhouse.datetime.timezone: "UTC"
Expand All @@ -147,6 +147,9 @@ database.connectionTimeZone: "UTC"
#disable.ddl: If set to true, the connector will ignore DDL events. The default is false.
#disable.ddl: "false"

#ignore.ddl.regex: If set, the connector will ignore DDL events that match the regex.
ignore.ddl.regex: "^ANALYZE PARTITION.*"

#disable.drop.truncate: If set to true, the connector will ignore drop and truncate events. The default is false.
#disable.drop.truncate: "false"

Expand Down

0 comments on commit 30de53a

Please sign in to comment.