Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Duplicate
-
None
Description
MySQL 5.6 implements delayed replication:
https://dev.mysql.com/doc/refman/5.6/en/replication-delayed.html
I am wondering if it's something easy to implement in MariaDB, and if it could work out with parallel replication.
Attachments
Issue Links
- relates to
-
MDEV-7145 Port/merge the CHANGE MASTER TO ... MASTER_DELAY option from MySQL 5.6
-
- Closed
-
> Related: http://bugs.mysql.com/80402
That bug is about supporting delays with fractional seconds.
The problem is that in the binlog format, we only know the event time on the
master with integral second precision. So while we could wait for fractional
seconds on the slave, it would be somewhat misleading since the actual delay
is rounded on the master already.
I do agree with the idea to warn about the rounding. However, I think this
is a deeper issue in MySQL/MariaDB. For example, it is also possible to
CHANGE MASTER TO master_port=3306.7. Or to insert a fractional value in an
integer column. In neither case is a warning given, according to my tests...