Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.5.0 #870

Open
wants to merge 9 commits into
base: 2.4.1
Choose a base branch
from
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,7 @@ to ClickHouse and analytic applications built on ClickHouse.
- [Slack](https://altinity.com/slack) - Talk directly with ClickHouse users and Altinity devs.
- [Contact us](https://hubs.la/Q020sH3Z0) - Contact Altinity with your questions or issues.
- [Free consultation](https://hubs.la/Q020sHkv0) - Get a free consultation with a ClickHouse expert today.

### Credits
YourKit supports the Altinity Sink Connector and other open source projects with its full-featured Java Profiler. Click the YourKit logo below to learn more.<br/>
[![](https://www.yourkit.com/images/yklogo.png)](http://www.yourkit.com/java/profiler/index.jsp)<br/>
2 changes: 1 addition & 1 deletion doc/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The connector is tested with the following converters
The Kafka Sink Connector has a complete set of features for transactional
replication.

- Inserts, Updates and Deletes using ReplacingMergeTree - [Updates/Deletes](doc/mutable_data.md)
- Inserts, Updates and Deletes using ReplacingMergeTree - [Updates/Deletes](mutable_data.md)
- Auto create tables in ClickHouse
- Exactly once semantics
- Bulk insert to Clickhouse
Expand Down
1 change: 1 addition & 0 deletions doc/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
### Configuration Reference
Configuration | Description |
|-----------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| topic.prefix | Unique name for connector.
| database.hostname | Source Database HostName |
| database.port | Source Database Port number |
| database.user | Source Database Username(user needs to have replication permission, Refer https://debezium.io/documentation/reference/stable/connectors/mysql.html) GRANT SELECT, RELOAD, SHOW DATABASES, REPLICATION SLAVE, REPLICATION CLIENT ON *.* TO 'user' IDENTIFIED BY 'password'; |
Expand Down
2 changes: 2 additions & 0 deletions doc/incremental_snapshot.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ data VARCHAR(2048) NULL);
table.include.list:"dbname.table1, dbname.table2`
signal.data.collection: "dbname.dbz_signal"
```
For **postgres**, the `signal.data.collection` variable should be `schema_name.table_name`.

Restart the sink connector, either using the `sink-connector-client restart` or by stopping/starting sink connector.

**Step 3**: Insert a new row to the `signaling` table created in Step 1 with the new table information.
Expand Down
8 changes: 2 additions & 6 deletions sink-connector-lightweight/docker/log4j2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,15 @@
additivity="false">
<AppenderRef ref="console"/>
</Logger>-->
<Logger name="io.debezium" level="ERROR"
<Logger name="io.debezium" level="INFO"
additivity="false">
<AppenderRef ref="console"/>
</Logger>
<Logger name="com.clickhouse" level="ERROR"
additivity="false">
<AppenderRef ref="console"/>
</Logger>
<Logger name="io.debezium" level="ERROR"
additivity="false">
<AppenderRef ref="console"/>
</Logger>
<Root level="warn" additivity="false">
<Root level="info" additivity="false">
<AppenderRef ref="console" />
</Root>
</Loggers>
Expand Down
Loading