You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,13 +112,17 @@ clickhouse:
112
112
port: 8323
113
113
user: 'default'
114
114
password: 'default'
115
+
connection_timeout: 30# optional
116
+
send_receive_timeout: 300# optional
115
117
116
118
binlog_replicator:
117
119
data_dir: '/home/user/binlog/'
118
120
records_per_file: 100000
119
121
120
122
databases: 'database_name_pattern_*'
121
123
tables: '*'
124
+
125
+
log_level: 'info'# optional
122
126
```
123
127
124
128
@@ -127,6 +131,7 @@ tables: '*'
127
131
- `binlog_replicator.data_dir`Create a new empty directory, it will be used by script to store it's state
128
132
- `databases`Databases name pattern to replicate, e.g. `db_*` will match `db_1` `db_2` `db_test`, list is also supported
129
133
- `tables`(__optional__) - tables to filter, list is also supported
134
+
- `log_level`(__optional__) - log level, default is `info`, you can set to `debug` to get maximum information (allowed values are `debug`, `info`, `warning`, `error`, `critical`)
0 commit comments