-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #701 from Altinity/2.2.1
2.2.1
- Loading branch information
Showing
13 changed files
with
172 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
## What's Changed | ||
* Update README.md by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/687 | ||
* Added log4j2.xml by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/688 | ||
* Update logging.md by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/690 | ||
* Update logging.md by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/691 | ||
* Update quickstart_kafka.md by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/696 | ||
* Create incremental_snapshot.md- Document steps to add newer tables. by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/697 | ||
* Update README.md to include incremental snapshot document by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/698 | ||
* Update incremental_snapshot.md - fix typo by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/699 | ||
* Added config with keepermap storage and removed FINAL in CREATE VIEW … by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/695 | ||
* Added ClickHouse trademark by @hodgesrm in https://github.com/Altinity/clickhouse-sink-connector/pull/702 | ||
* Update incremental_snapshot.md by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/706 | ||
* Add rrmt check kafka by @Selfeer in https://github.com/Altinity/clickhouse-sink-connector/pull/707 | ||
* Update incremental_snapshot.md to include schema changes by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/709 | ||
* Snapshot out of memory documentation by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/710 | ||
* Update production_setup.md for incremental snapshot size by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/711 | ||
* 713 numeric datatype in postgres mapped to decimal102 in clickhouse by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/715 | ||
* Ignore retrieval of scale/precision for enum data types by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/693 | ||
* Added logic to support ALTER TABLE with ALGORITHM by @subkanthi in https://github.com/Altinity/clickhouse-sink-connector/pull/719 | ||
|
||
|
||
**Full Changelog**: https://github.com/Altinity/clickhouse-sink-connector/compare/2.2.0...2.2.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
sink-connector-lightweight/docker/config_keepermap_storage.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: "company-1" | ||
database.hostname: "mysql-master" | ||
database.port: "3306" | ||
database.user: "root" | ||
database.password: "root" | ||
database.server.id: "12345" | ||
database.server.name: "ER54" | ||
database.include.list: test | ||
table.include.list: "" | ||
clickhouse.server.url: "clickhouse" | ||
clickhouse.server.user: "root" | ||
clickhouse.server.password: "root" | ||
clickhouse.server.port: "8123" | ||
database.allowPublicKeyRetrieval: "true" | ||
snapshot.mode: "initial" | ||
offset.flush.interval.ms: 5000 | ||
connector.class: "io.debezium.connector.mysql.MySqlConnector" | ||
offset.storage: "io.debezium.storage.jdbc.offset.JdbcOffsetBackingStore" | ||
offset.storage.jdbc.offset.table.name: "altinity_sink_connector.replica_source_info" | ||
offset.storage.jdbc.url: "jdbc:clickhouse://clickhouse:8123/altinity_sink_connector" | ||
offset.storage.jdbc.user: "root" | ||
offset.storage.jdbc.password: "root" | ||
offset.storage.jdbc.offset.table.ddl: "CREATE TABLE if not exists %s on cluster '{cluster}' | ||
( | ||
id String, | ||
offset_key String, | ||
offset_val String, | ||
record_insert_ts DateTime, | ||
record_insert_seq UInt64, | ||
) ENGINE = KeeperMap('/asc_offsets201',10) | ||
PRIMARY KEY offset_key" | ||
offset.storage.jdbc.offset.table.delete: "select 1" | ||
schema.history.internal: "io.debezium.storage.jdbc.history.JdbcSchemaHistory" | ||
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 on cluster '{cluster}' | ||
( | ||
id FixedString(36), | ||
history_data String, | ||
history_data_seq UInt32, | ||
record_insert_ts DateTime, | ||
record_insert_seq UInt32 | ||
) ENGINE=ReplicatedReplacingMergeTree(record_insert_seq) | ||
order by id" | ||
schema.history.internal.jdbc.schema.history.table.name: "altinity_sink_connector.replicate_schema_history" | ||
enable.snapshot.ddl: "true" | ||
persist.raw.bytes: "false" | ||
auto.create.tables: "true" | ||
database.connectionTimeZone: "UTC" | ||
restart.event.loop: "true" | ||
restart.event.loop.timeout.period.secs: "3000" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters