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

Updated troubleshooting documentation #517

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions doc/Troubleshooting.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Troubleshooting.

### Some tables are not being replicated.
This can be caused by the following:
1. The table is not being captured by the Debezium connector.
2. The database is not being captured by the Debezium connector.

Check the following configuration in the yaml file.
```
table.include.list: "sbtest.table1,sbtest.table2,sbtest.table3"
database.include.list: "sbtest"
```
You will see the list of tables/databases that are being captured by the Debezium connector in the logs.
```
[2021-09-29 14:00:00,000] INFO [io.debezium.connector.mysql.MySqlConnector] (task-0) Snapshot step 1 - Preparing to snapshot the following 3 tables: sbtest.table1, sbtest.table2, sbtest.table3

```

### Caused by: io.debezium.DebeziumException: java.sql.SQLSyntaxErrorException: Access denied; you need (at least one of)
### the SUPER, REPLICATION CLIENT privilege(s) for this operation
```bash
Expand Down
Loading