mirror of
https://github.com/MariaDB/server.git
synced 2025-02-09 23:24:11 +01:00
![Kristian Nielsen](/assets/img/avatar_default.png)
Implement a new mode for parallel replication. In this mode, all transactions are optimistically attempted applied in parallel. In case of conflicts, the offending transaction is rolled back and retried later non-parallel. This is an early-release patch to facilitate testing, more changes to user interface / options will be expected. The new mode is not enabled by default.
24 lines
335 B
INI
24 lines
335 B
INI
!include ../my.cnf
|
|
|
|
[mysqld.1]
|
|
log-slave-updates
|
|
loose-innodb
|
|
|
|
[mysqld.2]
|
|
log-slave-updates
|
|
loose-innodb
|
|
|
|
[mysqld.3]
|
|
log-slave-updates
|
|
loose-innodb
|
|
|
|
[mysqld.4]
|
|
log-slave-updates
|
|
loose-innodb
|
|
|
|
[ENV]
|
|
SERVER_MYPORT_3= @mysqld.3.port
|
|
SERVER_MYSOCK_3= @mysqld.3.socket
|
|
|
|
SERVER_MYPORT_4= @mysqld.4.port
|
|
SERVER_MYSOCK_4= @mysqld.4.socket
|