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: doc/command-line-flags.md
+6
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,9 @@ It is not reliable to parse the `ALTER` statement to determine if it is instant
61
61
62
62
`gh-ost` will automatically fallback to the normal DDL process if the attempt to use instant DDL is unsuccessful.
63
63
64
+
### binlogsyncer-max-reconnect-attempts
65
+
`--binlogsyncer-max-reconnect-attempts=0`, the maximum number of attempts to re-establish a broken inspector connection for sync binlog. `0` or `negative number` means infinite retry, default `0`
66
+
64
67
### conf
65
68
66
69
`--conf=/path/to/my.cnf`: file where credentials are specified. Should be in (or contain) the following format:
@@ -258,6 +261,9 @@ But RocksDB currently lacks a few features support compared to InnoDB:
258
261
259
262
When `--storage-engine=rocksdb`, `gh-ost` will make some changes necessary (e.g. sets isolation level to `READ_COMMITTED`) to support RocksDB.
260
263
264
+
### charset
265
+
The default charset for the database connection is utf8mb4, utf8, latin1. The ability to specify character set and collation is supported, eg: utf8mb4_general_ci,utf8_general_ci,latin1.
266
+
261
267
### test-on-replica
262
268
263
269
Issue the migration on a replica; do not modify data on master. Useful for validating, testing and benchmarking. See [`testing-on-replica`](testing-on-replica.md)
Copy file name to clipboardexpand all lines: doc/interactive-commands.md
+1
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,7 @@ Both interfaces may serve at the same time. Both respond to simple text command,
17
17
-`help`: shows a brief list of available commands
18
18
-`status`: returns a detailed status summary of migration progress and configuration
19
19
-`sup`: returns a brief status summary of migration progress
20
+
-`cpu-profile`: returns a base64-encoded [`runtime/pprof`](https://pkg.go.dev/runtime/pprof) CPU profile using a duration, default: `30s`. Comma-separated options `gzip` and/or `block` (blocked profile) may follow the profile duration
20
21
-`coordinates`: returns recent (though not exactly up to date) binary log coordinates of the inspected server
21
22
-`applier`: returns the hostname of the applier
22
23
-`inspector`: returns the hostname of the inspector
0 commit comments