mirror of
https://github.com/valitydev/clickhouse-sink-connector.git
synced 2024-11-06 10:35:21 +00:00
Update README.md
Set JDBC url to include database name.
This commit is contained in:
parent
f2f32277a0
commit
101d151941
@ -44,7 +44,7 @@ offset.flush.interval.ms: 5000
|
||||
connector.class: "io.debezium.connector.mysql.MySqlConnector"
|
||||
offset.storage: "io.debezium.storage.jdbc.offset.JdbcOffsetBackingStore"
|
||||
offset.storage.offset.storage.jdbc.offset.table.name: "altinity_sink_connector.replica_source_info"
|
||||
offset.storage.jdbc.url: "jdbc:clickhouse://clickhouse:8123"
|
||||
offset.storage.jdbc.url: "jdbc:clickhouse://clickhouse:8123/altinity_sink_connector"
|
||||
offset.storage.jdbc.user: "root"
|
||||
offset.storage.jdbc.password: "root"
|
||||
offset.storage.offset.storage.jdbc.offset.table.ddl: "CREATE TABLE if not exists %s
|
||||
@ -61,7 +61,7 @@ ORDER BY id
|
||||
SETTINGS index_granularity = 8198"
|
||||
offset.storage.offset.storage.jdbc.offset.table.delete: "delete from %s where 1=1"
|
||||
schema.history.internal: "io.debezium.storage.jdbc.history.JdbcSchemaHistory"
|
||||
schema.history.internal.jdbc.url: "jdbc:clickhouse://clickhouse:8123"
|
||||
schema.history.internal.jdbc.url: "jdbc:clickhouse://clickhouse:8123/altinity_sink_connector"
|
||||
schema.history.internal.jdbc.user: "root"
|
||||
schema.history.internal.jdbc.password: "root"
|
||||
schema.history.internal.jdbc.schema.history.table.ddl: "CREATE TABLE if not exists %s
|
||||
@ -92,7 +92,7 @@ offset.flush.interval.ms: 5000
|
||||
connector.class: "io.debezium.connector.postgresql.PostgresConnector"
|
||||
offset.storage: "io.debezium.storage.jdbc.offset.JdbcOffsetBackingStore"
|
||||
offset.storage.offset.storage.jdbc.offset.table.name: "altinity_sink_connector.replica_source_info"
|
||||
offset.storage.jdbc.url: "jdbc:clickhouse://clickhouse:8123"
|
||||
offset.storage.jdbc.url: "jdbc:clickhouse://clickhouse:8123/altinity_sink_connector"
|
||||
offset.storage.jdbc.user: "root"
|
||||
offset.storage.jdbc.password: "root"
|
||||
offset.storage.offset.storage.jdbc.offset.table.ddl: "CREATE TABLE if not exists %s
|
||||
@ -109,7 +109,7 @@ ORDER BY id
|
||||
SETTINGS index_granularity = 8198"
|
||||
offset.storage.offset.storage.jdbc.offset.table.delete: "delete from %s where 1=1"
|
||||
schema.history.internal: "io.debezium.storage.jdbc.history.JdbcSchemaHistory"
|
||||
schema.history.internal.jdbc.url: "jdbc:clickhouse://clickhouse:8123"
|
||||
schema.history.internal.jdbc.url: "jdbc:clickhouse://clickhouse:8123/altinity_sink_connector"
|
||||
schema.history.internal.jdbc.user: "root"
|
||||
schema.history.internal.jdbc.password: "root"
|
||||
schema.history.internal.jdbc.schema.history.table.ddl: "CREATE TABLE if not exists %s
|
||||
|
Loading…
Reference in New Issue
Block a user