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
{{ message }}
This repository was archived by the owner on Feb 18, 2025. It is now read-only.
Because of MySQL Bug#97345 (1), Orchestrator might miss that an intermediate master has failed.
The scenario go like this:
the IO Thread is in state "Waiting for the slave SQL thread to free enough relay log space"
the intermediate master (IM) fails
Orchestrator is not able to connect to the IM, but the slaves are not seeing the IM as failed because of Bug#97345, so Orchestrator does not failover.
Discussed with Sholmi, the solution would be to run "STOP SLAVE IO_THREAD; START SLAVE IO_THREAD" on the slaves, which would trigger the slave to detect the failure (it is shown in Bug#97345 that this trigger the slave to detect the failure).