mirror of
https://github.com/MariaDB/server.git
synced 2025-10-12 12:25:37 +03:00
40 lines
1018 B
Plaintext
40 lines
1018 B
Plaintext
CREATE TABLE t1 (f1 INTEGER) Engine=InnoDB;
|
|
INSERT INTO t1 values(0);
|
|
connection node_1;
|
|
SET GLOBAL wsrep_slave_threads = 10;
|
|
SET GLOBAL wsrep_slave_threads = 1;
|
|
# Wait 10 slave threads to start 1
|
|
connection node_2;
|
|
# Generate 12 replication events
|
|
connection node_1;
|
|
SELECT COUNT(*) FROM t1;
|
|
COUNT(*)
|
|
13
|
|
# Wait 9 slave threads to exit 1
|
|
SET GLOBAL wsrep_slave_threads = 10;
|
|
# Wait 10 slave threads to start 2
|
|
SET GLOBAL wsrep_slave_threads = 20;
|
|
# Wait 20 slave threads to start 3
|
|
SET GLOBAL wsrep_slave_threads = 1;
|
|
connection node_2;
|
|
# Generate 40 replication events
|
|
connection node_1;
|
|
SELECT COUNT(*) FROM t1;
|
|
COUNT(*)
|
|
53
|
|
# Wait 10 slave threads to exit 3
|
|
SET GLOBAL wsrep_slave_threads = 10;
|
|
SET GLOBAL wsrep_slave_threads = 0;
|
|
Warnings:
|
|
Warning 1292 Truncated incorrect wsrep_slave_threads value: '0'
|
|
# Wait 10 slave threads to start 3
|
|
connection node_2;
|
|
# Generate 12 replication events
|
|
connection node_1;
|
|
SELECT COUNT(*) FROM t1;
|
|
COUNT(*)
|
|
65
|
|
# Wait 10 slave threads to exit 4
|
|
connection node_1;
|
|
DROP TABLE t1;
|