summaryrefslogtreecommitdiff
path: root/resources/experiments/sink-jdbc.properties
diff options
context:
space:
mode:
authormjkwiatkowski <mati.rewa@gmail.com>2026-02-20 16:17:39 +0100
committermjkwiatkowski <mati.rewa@gmail.com>2026-02-20 16:17:39 +0100
commitf5da60e4275ca1172128c3994298691e12d5e1f8 (patch)
tree189804251bf88bf390e1c9ffb4472b7a798d7f22 /resources/experiments/sink-jdbc.properties
parent2f16cb0f48eca4453e3e894b3d45a3aa09e6dcc0 (diff)
fix: changed the syntex to slowly get rid of the Config classHEADmaster
Diffstat (limited to 'resources/experiments/sink-jdbc.properties')
-rw-r--r--resources/experiments/sink-jdbc.properties5
1 files changed, 3 insertions, 2 deletions
diff --git a/resources/experiments/sink-jdbc.properties b/resources/experiments/sink-jdbc.properties
index 4a78b2ed..a36dad31 100644
--- a/resources/experiments/sink-jdbc.properties
+++ b/resources/experiments/sink-jdbc.properties
@@ -25,7 +25,7 @@ value.converter=io.confluent.connect.protobuf.ProtobufConverter
value.converter.schema.registry.url=http://localhost:8081
# The topics to consume from - required for sink connectors like this one
-topics=postgres-topic
+topics=postgres_topic
# Configuration specific to the JDBC sink connector.
# We want to connect to a Postgres database stored in the file test.db and auto-create tables.
@@ -34,6 +34,7 @@ connection.url=jdbc:postgresql://127.0.0.1:5432/opendc
connection.user=matt
connection.password=admin
auto.create=true
+auto.evolve=true
# Define when identifiers should be quoted in DDL and DML statements.
# The default is 'always' to maintain backward compatibility with prior versions.
@@ -43,4 +44,4 @@ auto.create=true
# Here are some values that enable JSON formatted files to be ingested by Postgresql
insert.mode=insert
-
+table.name.format=postgres_topic \ No newline at end of file