Last week VividCortex's Preetam Jinka published a post on his personal blog examining how our
engineering team had overcome a problem with MySQL replication by
using a new parallelization policy introduced in MySQL 5.7:
LOGICAL_CLOCK
.
The solution we developed—which achieves faster replication via group commit and a carefully calibrated delay—can offer huge replication improvements, but its implementation isn't immediately obvious or intuitive. We thought it worthwhile to provide a fuller description of how we arrived at the solution Preetam outlined.
…[Read more]