Fri, 2015-08-14 09:34geoff_montee_g
Conservative in-order parallel replication is
a great feature in MariaDB 10.0 that improves replication
performance by using knowledge of group commit on the master to
commit transactions in parallel on a slave. If slave_parallel_threads is greater
than 0, then the SQL thread will instruct multiple worker threads
to concurrently apply transactions that were committed in the
same group commit on the master.
Conservative in-order parallel replication is a good alternative to out-of-order parallel replication …
[Read more]