forked from MariaDB/server
-
Notifications
You must be signed in to change notification settings - Fork 2
10.5 MDEV 34891 teemu #470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
temeo
wants to merge
6
commits into
10.5
Choose a base branch
from
10.5-MDEV-34891-teemu
base: 10.5
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
e2a3389
MDEV-34891 : SST failure occurs when gtid_strict_mode is enabled
janlindstrom d1cca4a
Add suppression for transaction deadlock error.
janlindstrom 10349f2
Add tests for wsrep GTID recovery with binlog on and off
temeo 6695f18
Initialize gtid seqno from recovered seqno when bootstrapping a new c…
temeo 7647cdc
Address Teemu's review comments.
janlindstrom 37cb5d8
Verify WSREP_LAST_SEEN_GTID value after SST.
janlindstrom File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
220 changes: 220 additions & 0 deletions
220
mysql-test/suite/galera/r/galera_sst_mariabackup_gtid,debug.rdiff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,220 @@ | ||
--- suite/galera/r/galera_sst_mariabackup_gtid.result 2025-01-08 07:43:36.883366596 +0200 | ||
+++ suite/galera/r/galera_sst_mariabackup_gtid,debug.reject 2025-01-08 07:59:27.330696723 +0200 | ||
@@ -516,27 +516,211 @@ | ||
1 | ||
DROP TABLE t1; | ||
COMMIT; | ||
+Performing State Transfer on a server that has been killed and restarted | ||
+while a DDL was in progress on it | ||
+connection node_1; | ||
+CREATE TABLE t1 (id int not null primary key,f1 CHAR(255)) ENGINE=InnoDB; | ||
+SET AUTOCOMMIT=OFF; | ||
+START TRANSACTION; | ||
+INSERT INTO t1 VALUES (1,'node1_committed_before'); | ||
+INSERT INTO t1 VALUES (2,'node1_committed_before'); | ||
+INSERT INTO t1 VALUES (3,'node1_committed_before'); | ||
+INSERT INTO t1 VALUES (4,'node1_committed_before'); | ||
+INSERT INTO t1 VALUES (5,'node1_committed_before'); | ||
+connection node_2; | ||
+START TRANSACTION; | ||
+INSERT INTO t1 VALUES (6,'node2_committed_before'); | ||
+INSERT INTO t1 VALUES (7,'node2_committed_before'); | ||
+INSERT INTO t1 VALUES (8,'node2_committed_before'); | ||
+INSERT INTO t1 VALUES (9,'node2_committed_before'); | ||
+INSERT INTO t1 VALUES (10,'node2_committed_before'); | ||
+COMMIT; | ||
+SET GLOBAL debug_dbug = 'd,sync.alter_opened_table'; | ||
+connection node_1; | ||
+ALTER TABLE t1 ADD COLUMN f2 INTEGER; | ||
+connection node_2; | ||
+SET wsrep_sync_wait = 0; | ||
+Killing server ... | ||
+connection node_1; | ||
+SET AUTOCOMMIT=OFF; | ||
+START TRANSACTION; | ||
+INSERT INTO t1 (id,f1) VALUES (11,'node1_committed_during'); | ||
+INSERT INTO t1 (id,f1) VALUES (12,'node1_committed_during'); | ||
+INSERT INTO t1 (id,f1) VALUES (13,'node1_committed_during'); | ||
+INSERT INTO t1 (id,f1) VALUES (14,'node1_committed_during'); | ||
+INSERT INTO t1 (id,f1) VALUES (15,'node1_committed_during'); | ||
+COMMIT; | ||
+START TRANSACTION; | ||
+INSERT INTO t1 (id,f1) VALUES (16,'node1_to_be_committed_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (17,'node1_to_be_committed_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (18,'node1_to_be_committed_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (19,'node1_to_be_committed_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (20,'node1_to_be_committed_after'); | ||
+connect node_1a_galera_st_kill_slave_ddl, 127.0.0.1, root, , test, $NODE_MYPORT_1; | ||
+SET AUTOCOMMIT=OFF; | ||
+START TRANSACTION; | ||
+INSERT INTO t1 (id,f1) VALUES (21,'node1_to_be_rollbacked_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (22,'node1_to_be_rollbacked_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (23,'node1_to_be_rollbacked_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (24,'node1_to_be_rollbacked_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (25,'node1_to_be_rollbacked_after'); | ||
+connection node_2; | ||
+Performing --wsrep-recover ... | ||
+connection node_2; | ||
+Starting server ... | ||
+Using --wsrep-start-position when starting mysqld ... | ||
+SET AUTOCOMMIT=OFF; | ||
+START TRANSACTION; | ||
+INSERT INTO t1 (id,f1) VALUES (26,'node2_committed_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (27,'node2_committed_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (28,'node2_committed_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (29,'node2_committed_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (30,'node2_committed_after'); | ||
+COMMIT; | ||
+connection node_1; | ||
+INSERT INTO t1 (id,f1) VALUES (31,'node1_to_be_committed_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (32,'node1_to_be_committed_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (33,'node1_to_be_committed_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (34,'node1_to_be_committed_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (35,'node1_to_be_committed_after'); | ||
+COMMIT; | ||
+SET AUTOCOMMIT=OFF; | ||
+START TRANSACTION; | ||
+INSERT INTO t1 (id,f1) VALUES (36,'node1_committed_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (37,'node1_committed_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (38,'node1_committed_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (39,'node1_committed_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (40,'node1_committed_after'); | ||
+COMMIT; | ||
+connection node_1a_galera_st_kill_slave_ddl; | ||
+INSERT INTO t1 (id,f1) VALUES (41,'node1_to_be_rollbacked_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (42,'node1_to_be_rollbacked_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (43,'node1_to_be_rollbacked_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (44,'node1_to_be_rollbacked_after'); | ||
+INSERT INTO t1 (id,f1) VALUES (45,'node1_to_be_rollbacked_after'); | ||
+ROLLBACK; | ||
+SET AUTOCOMMIT=ON; | ||
+SET SESSION wsrep_sync_wait=15; | ||
+SELECT COUNT(*) AS EXPECT_3 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; | ||
+EXPECT_3 | ||
+3 | ||
+SELECT COUNT(*) AS EXPECT_35 FROM t1; | ||
+EXPECT_35 | ||
+35 | ||
+SELECT * FROM t1; | ||
+id f1 f2 | ||
+1 node1_committed_before NULL | ||
+2 node1_committed_before NULL | ||
+3 node1_committed_before NULL | ||
+4 node1_committed_before NULL | ||
+5 node1_committed_before NULL | ||
+6 node2_committed_before NULL | ||
+7 node2_committed_before NULL | ||
+8 node2_committed_before NULL | ||
+9 node2_committed_before NULL | ||
+10 node2_committed_before NULL | ||
+11 node1_committed_during NULL | ||
+12 node1_committed_during NULL | ||
+13 node1_committed_during NULL | ||
+14 node1_committed_during NULL | ||
+15 node1_committed_during NULL | ||
+16 node1_to_be_committed_after NULL | ||
+17 node1_to_be_committed_after NULL | ||
+18 node1_to_be_committed_after NULL | ||
+19 node1_to_be_committed_after NULL | ||
+20 node1_to_be_committed_after NULL | ||
+26 node2_committed_after NULL | ||
+27 node2_committed_after NULL | ||
+28 node2_committed_after NULL | ||
+29 node2_committed_after NULL | ||
+30 node2_committed_after NULL | ||
+31 node1_to_be_committed_after NULL | ||
+32 node1_to_be_committed_after NULL | ||
+33 node1_to_be_committed_after NULL | ||
+34 node1_to_be_committed_after NULL | ||
+35 node1_to_be_committed_after NULL | ||
+36 node1_committed_after NULL | ||
+37 node1_committed_after NULL | ||
+38 node1_committed_after NULL | ||
+39 node1_committed_after NULL | ||
+40 node1_committed_after NULL | ||
+SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; | ||
+COUNT(*) = 0 | ||
+1 | ||
+COMMIT; | ||
+connection node_1; | ||
+SET AUTOCOMMIT=ON; | ||
+SET SESSION wsrep_sync_wait=15; | ||
+SELECT COUNT(*) AS EXPECT_3 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1'; | ||
+EXPECT_3 | ||
+3 | ||
+SELECT COUNT(*) AS EXPECT_35 FROM t1; | ||
+EXPECT_35 | ||
+35 | ||
+SELECT * FROM t1; | ||
+id f1 f2 | ||
+1 node1_committed_before NULL | ||
+2 node1_committed_before NULL | ||
+3 node1_committed_before NULL | ||
+4 node1_committed_before NULL | ||
+5 node1_committed_before NULL | ||
+6 node2_committed_before NULL | ||
+7 node2_committed_before NULL | ||
+8 node2_committed_before NULL | ||
+9 node2_committed_before NULL | ||
+10 node2_committed_before NULL | ||
+11 node1_committed_during NULL | ||
+12 node1_committed_during NULL | ||
+13 node1_committed_during NULL | ||
+14 node1_committed_during NULL | ||
+15 node1_committed_during NULL | ||
+16 node1_to_be_committed_after NULL | ||
+17 node1_to_be_committed_after NULL | ||
+18 node1_to_be_committed_after NULL | ||
+19 node1_to_be_committed_after NULL | ||
+20 node1_to_be_committed_after NULL | ||
+26 node2_committed_after NULL | ||
+27 node2_committed_after NULL | ||
+28 node2_committed_after NULL | ||
+29 node2_committed_after NULL | ||
+30 node2_committed_after NULL | ||
+31 node1_to_be_committed_after NULL | ||
+32 node1_to_be_committed_after NULL | ||
+33 node1_to_be_committed_after NULL | ||
+34 node1_to_be_committed_after NULL | ||
+35 node1_to_be_committed_after NULL | ||
+36 node1_committed_after NULL | ||
+37 node1_committed_after NULL | ||
+38 node1_committed_after NULL | ||
+39 node1_committed_after NULL | ||
+40 node1_committed_after NULL | ||
+SELECT COUNT(*) = 0 FROM (SELECT COUNT(*) AS c, f1 FROM t1 GROUP BY f1 HAVING c NOT IN (5, 10)) AS a1; | ||
+COUNT(*) = 0 | ||
+1 | ||
+DROP TABLE t1; | ||
+COMMIT; | ||
+SET GLOBAL debug_dbug = $debug_orig; | ||
connection node_1; | ||
# Node_1 | ||
SHOW global variables like 'gtid%pos'; | ||
Variable_name Value | ||
-gtid_binlog_pos 100-10-24 | ||
-gtid_current_pos 100-10-24 | ||
+gtid_binlog_pos 100-10-33 | ||
+gtid_current_pos 100-10-33 | ||
gtid_slave_pos | ||
Expect 100-10-24 (Release) 100-10-33 (Debug) | ||
SELECT WSREP_LAST_SEEN_GTID(); | ||
WSREP_LAST_SEEN_GTID() | ||
-100-10-24 | ||
+100-10-33 | ||
connection node_2; | ||
# Node_2 | ||
SHOW global variables like 'gtid%pos'; | ||
Variable_name Value | ||
-gtid_binlog_pos 100-10-24 | ||
-gtid_current_pos 100-10-24 | ||
+gtid_binlog_pos 100-10-33 | ||
+gtid_current_pos 100-10-33 | ||
gtid_slave_pos | ||
Expect 100-10-24 (Release) 100-10-33 (Debug) | ||
SELECT WSREP_LAST_SEEN_GTID(); | ||
WSREP_LAST_SEEN_GTID() | ||
-100-10-24 | ||
+100-10-33 | ||
disconnect node_2; | ||
disconnect node_1; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it necessary to have
--wsrep-debug
here and below? Wsrep debug is quite verbose and increases log sizes significantly.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was used to debug issue, I will remove it.