mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
70 lines
2 KiB
Text
70 lines
2 KiB
Text
#
|
|
# This tests the very basic operations around wsrep-slave-threads
|
|
# More complex scenarios will be tested separately in the context of
|
|
# parallel replication
|
|
#
|
|
|
|
--source include/galera_cluster.inc
|
|
--source include/have_innodb.inc
|
|
|
|
--let $wsrep_slave_threads_orig = `SELECT @@wsrep_slave_threads`
|
|
|
|
--connection node_1
|
|
CREATE TABLE t1 (f1 INT PRIMARY KEY) Engine=InnoDB;
|
|
CREATE TABLE t2 (f1 INT AUTO_INCREMENT PRIMARY KEY) Engine=InnoDB;
|
|
|
|
--connection node_2
|
|
|
|
# Setting wsrep_slave_threads to zero triggers a warning
|
|
SET GLOBAL wsrep_slave_threads = 0;
|
|
SHOW WARNINGS;
|
|
SELECT @@wsrep_slave_threads = 1;
|
|
|
|
SET GLOBAL wsrep_slave_threads = 1;
|
|
# There is a separate wsrep_aborter thread at all times
|
|
SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user';
|
|
SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user' AND STATE LIKE '%wsrep aborter%';
|
|
|
|
#
|
|
# Increase the number of slave threads. The change takes effect immediately
|
|
#
|
|
|
|
SET GLOBAL wsrep_slave_threads = 64;
|
|
--sleep 0.5
|
|
|
|
--connection node_1
|
|
INSERT INTO t1 VALUES (1);
|
|
|
|
--connection node_2
|
|
SELECT COUNT(*) = 1 FROM t1;
|
|
|
|
SELECT COUNT(*) = @@wsrep_slave_threads + 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user';
|
|
SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user' AND STATE LIKE '%wsrep aborter%';
|
|
|
|
#
|
|
# Reduce the number of slave threads. The change is not immediate -- a thread will only exit after a replication event
|
|
#
|
|
|
|
SET GLOBAL wsrep_slave_threads = 1;
|
|
|
|
--connection node_1
|
|
|
|
# Generate 64 replication events
|
|
--let $count = 64
|
|
while ($count)
|
|
{
|
|
INSERT INTO t2 VALUES (DEFAULT);
|
|
--dec $count
|
|
}
|
|
|
|
--connection node_2
|
|
SELECT COUNT(*) = 64 FROM t2;
|
|
|
|
SELECT COUNT(*) = @@wsrep_slave_threads + 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user';
|
|
SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE USER = 'system user' AND STATE LIKE '%wsrep aborter%';
|
|
|
|
|
|
--eval SET GLOBAL wsrep_slave_threads = $wsrep_slave_threads_orig
|
|
|
|
DROP TABLE t1;
|
|
DROP TABLE t2;
|