diff options
author | Kentoku SHIBA <kentokushiba@gmail.com> | 2019-04-12 22:58:37 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-12 22:58:37 +0900 |
commit | 857310c218469dd496d582bbba4690cbb870c272 (patch) | |
tree | 7b4504d03b001ccaeb4c87e0d8a06c9ae469e4a8 /sql/sys_vars.cc | |
parent | 7896503686477cce55d058d071d2858a8abf4b04 (diff) | |
download | mariadb-git-857310c218469dd496d582bbba4690cbb870c272.tar.gz |
MDEV-16543 Replicating to spider is fragile without retries (#1259)
Diffstat (limited to 'sql/sys_vars.cc')
-rw-r--r-- | sql/sys_vars.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sql/sys_vars.cc b/sql/sys_vars.cc index 5626fc5bdaf..14d5ae85462 100644 --- a/sql/sys_vars.cc +++ b/sql/sys_vars.cc @@ -5223,8 +5223,10 @@ static Sys_var_ulonglong Sys_read_binlog_speed_limit( static Sys_var_charptr Sys_slave_transaction_retry_errors( "slave_transaction_retry_errors", "Tells the slave thread to retry " "transaction for replication when a query event returns an error from " - "the provided list. Deadlock and elapsed lock wait timeout errors are " - "automatically added to this list", + "the provided list. Deadlock error, elapsed lock wait timeout, " + "net read error, net read timeout, net write error, net write timeout, " + "connect error and 2 types of lost connection error are automatically " + "added to this list", READ_ONLY GLOBAL_VAR(opt_slave_transaction_retry_errors), CMD_LINE(REQUIRED_ARG), IN_SYSTEM_CHARSET, DEFAULT(0)); |