In this blog post, I’ll talk about
multi-threaded slave statistics printed in MySQL error log file.
MySQL version 5.6 and later allows you to execute replicated
events using parallel threads. This feature is called
Multi-Threaded Slave (MTS), and to enable it you need to modify
the
slave_parallel_workers
variable to a value greater than 1.
Recently, a few customers asked about the meaning of some new
statistics printed in their error log files when they enable MTS.
These error messages look similar to the example stated below:
[Note] Multi-threaded slave statistics for channel '': seconds elapsed = 123; events assigned = 57345; worker queues filled over overrun level = 0; waited due a Worker queue full = 0; waited due the total size = 0; waited at clock conflicts = 0 waited (count) …
[Read more]