mirror of
https://github.com/MariaDB/server.git
synced 2025-02-09 23:24:11 +01:00
![Jan Lindström](/assets/img/avatar_default.png)
galera_gcache_recover and galera_gcache_recover_manytrx grepping on error log is not always successful as messages might be in different order or contain different values galera_vote_sr We need to make sure required table creation has replicated as we use WSREP_ON=off
25 lines
766 B
Text
25 lines
766 B
Text
connection node_2;
|
|
connection node_1;
|
|
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE=InnoDB;
|
|
INSERT INTO t1 VALUES (1);
|
|
SET SESSION wsrep_sync_wait = 0;
|
|
connection node_2;
|
|
SET SESSION wsrep_sync_wait = 0;
|
|
Killing server ...
|
|
connection node_1;
|
|
INSERT INTO t1 VALUES (2);
|
|
Killing server ...
|
|
connection node_1;
|
|
Performing --wsrep-recover ...
|
|
Using --wsrep-start-position when starting mysqld ...
|
|
INSERT INTO t1 VALUES (3);
|
|
connection node_2;
|
|
Performing --wsrep-recover ...
|
|
Using --wsrep-start-position when starting mysqld ...
|
|
connection node_1;
|
|
include/diff_servers.inc [servers=1 2]
|
|
connection node_1;
|
|
CALL mtr.add_suppression("Skipped GCache ring buffer recovery");
|
|
connection node_2;
|
|
CALL mtr.add_suppression("Skipped GCache ring buffer recovery");
|
|
DROP TABLE t1;
|