Details
-
New Feature
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
Description
The master-retry-count setting can't be changed, or at least verified, at runtime as there is no SQL variable for this setting.
Also the setting is only documented as a command line option, even though it is also accepted as a valid option in configuration files
https://mariadb.com/kb/en/mysqld-options/#-master-retry-count
Attachments
Issue Links
- causes
-
MDEV-36141 Master & Relay Log Info: expand init_intvar_from_file from atoi to atoll
-
- Open
-
- is part of
-
MDEV-30189 Add remaining mariadbd replication command line options as system variables
-
- Closed
-
- relates to
-
MDEV-6188 master_retry_count (ignored if disconnect happens on SET master_heartbeat_period)
-
- Closed
-
-
MDEV-16437 merge 5.7 P_S replication instrumentation and tables
-
- Closed
-
-
MDEV-35304 More Details for Ongoing IO Thread Re-connection Attempts
-
- Closed
-
- split to
-
MDEV-36170 Deprecate the option --master-retry-count in favor of CHANGE MASTER TO Master_Retry_Count
-
- Closed
-
On 10.6 there is performance_schema.replication_connection_configuration table, that shows CONNECTION_RETRY_COUNT:
MariaDB [performance_schema]> select * from performance_schema.replication_connection_configuration\G
*************************** 1. row ***************************
CHANNEL_NAME:
HOST: localhost
PORT: 3313
USER: root
USING_GTID: NO
SSL_ALLOWED: NO
SSL_CA_FILE:
SSL_CA_PATH:
SSL_CERTIFICATE:
SSL_CIPHER:
SSL_KEY:
SSL_VERIFY_SERVER_CERTIFICATE: NO
SSL_CRL_FILE:
SSL_CRL_PATH:
CONNECTION_RETRY_INTERVAL: 60
CONNECTION_RETRY_COUNT: 100000
HEARTBEAT_INTERVAL: 30.000
IGNORE_SERVER_IDS:
REPL_DO_DOMAIN_IDS:
REPL_IGNORE_DOMAIN_IDS:
1 row in set (0.003 sec)
and the default was changed to 100000 (86400 before)
but it is not documented yet.