mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
MDEV-16543 Replicating to spider is fragile without retries (#1272)
add changes of test results
This commit is contained in:
parent
1e8279a958
commit
3e89e0f2ba
2 changed files with 7 additions and 5 deletions
|
@ -1207,8 +1207,10 @@ The following specify which files/extra groups are read (specified before remain
|
|||
--slave-transaction-retry-errors=name
|
||||
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
|
||||
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
|
||||
--slave-transaction-retry-interval=#
|
||||
Interval of the slave SQL thread will retry a transaction
|
||||
in case it failed with a deadlock or elapsed lock wait
|
||||
|
@ -1712,7 +1714,7 @@ slave-run-triggers-for-rbr NO
|
|||
slave-skip-errors OFF
|
||||
slave-sql-verify-checksum TRUE
|
||||
slave-transaction-retries 10
|
||||
slave-transaction-retry-errors 1213,1205
|
||||
slave-transaction-retry-errors 1158,1159,1160,1161,1205,1213,1429,2013,12701
|
||||
slave-transaction-retry-interval 0
|
||||
slave-type-conversions
|
||||
slow-launch-time 2
|
||||
|
|
|
@ -4676,12 +4676,12 @@ READ_ONLY NO
|
|||
COMMAND_LINE_ARGUMENT REQUIRED
|
||||
VARIABLE_NAME SLAVE_TRANSACTION_RETRY_ERRORS
|
||||
SESSION_VALUE NULL
|
||||
GLOBAL_VALUE 1213,1205
|
||||
GLOBAL_VALUE 1158,1159,1160,1161,1205,1213,1429,2013,12701
|
||||
GLOBAL_VALUE_ORIGIN COMPILE-TIME
|
||||
DEFAULT_VALUE
|
||||
VARIABLE_SCOPE GLOBAL
|
||||
VARIABLE_TYPE VARCHAR
|
||||
VARIABLE_COMMENT 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
|
||||
VARIABLE_COMMENT Tells the slave thread to retry transaction for replication when a query event returns an error from 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
|
||||
NUMERIC_MIN_VALUE NULL
|
||||
NUMERIC_MAX_VALUE NULL
|
||||
NUMERIC_BLOCK_SIZE NULL
|
||||
|
|
Loading…
Reference in a new issue