From 96e61c3cbb62b1b2fc62a969e597df82b2d778bf Mon Sep 17 00:00:00 2001 From: StrikeW Date: Sun, 4 Feb 2024 16:48:50 +0800 Subject: [PATCH] Revert "chore: enable transactional cdc for mysql and postgres by default (#14899)" This reverts commit 9c874fe91c6f1b6c8301a94667e8c185337a2dc5. --- .../src/main/resources/mysql.properties | 3 +-- .../src/main/resources/postgres.properties | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/java/connector-node/risingwave-connector-service/src/main/resources/mysql.properties b/java/connector-node/risingwave-connector-service/src/main/resources/mysql.properties index 8b1d571082f6e..4c74b48bbf174 100644 --- a/java/connector-node/risingwave-connector-service/src/main/resources/mysql.properties +++ b/java/connector-node/risingwave-connector-service/src/main/resources/mysql.properties @@ -22,5 +22,4 @@ heartbeat.interval.ms=${debezium.heartbeat.interval.ms:-60000} # In sharing cdc mode, we will subscribe to multiple tables in the given database, # so here we set ${table.name} to a default value `RW_CDC_Sharing` just for display. name=${hostname}:${port}:${database.name}.${table.name:-RW_CDC_Sharing} -# Enable transaction metadata by default -provide.transaction.metadata=${transactional:-true} +provide.transaction.metadata=${transactional:-false} diff --git a/java/connector-node/risingwave-connector-service/src/main/resources/postgres.properties b/java/connector-node/risingwave-connector-service/src/main/resources/postgres.properties index 8d0284d03892e..7f9785b7a34b1 100644 --- a/java/connector-node/risingwave-connector-service/src/main/resources/postgres.properties +++ b/java/connector-node/risingwave-connector-service/src/main/resources/postgres.properties @@ -20,5 +20,4 @@ heartbeat.interval.ms=${debezium.heartbeat.interval.ms:-300000} # In sharing cdc source mode, we will subscribe to multiple tables in the given database, # so here we set ${table.name} to a default value `RW_CDC_Sharing` just for display. name=${hostname}:${port}:${database.name}.${schema.name}.${table.name:-RW_CDC_Sharing} -# Enable transaction metadata by default -provide.transaction.metadata=${transactional:-true} +provide.transaction.metadata=${transactional:-false}