mirror of
https://github.com/MariaDB/server.git
synced 2025-11-24 06:01:25 +03:00
Implement --semi-sync-master-wait-point=AFTER_SYNC|AFTER_COMMIT. When AFTER_SYNC, the semi-sync wait will be done earlier, before the storage engine commit rather than after. This means that a transaction will not be visible on the master until at least one slave has received it.
5 lines
184 B
Plaintext
5 lines
184 B
Plaintext
--source include/have_binlog_format_statement.inc
|
|
set global rpl_semi_sync_master_wait_point=AFTER_SYNC;
|
|
source rpl_semi_sync.test;
|
|
set global rpl_semi_sync_master_wait_point=default;
|