diff --git a/src/go/pt-galera-log-explainer/main_test.go b/src/go/pt-galera-log-explainer/main_test.go new file mode 100644 index 00000000..c618ba2d --- /dev/null +++ b/src/go/pt-galera-log-explainer/main_test.go @@ -0,0 +1,106 @@ +package main + +import ( + "io/ioutil" + "os/exec" + "path/filepath" + "regexp" + "strings" + "testing" + + "github.com/google/go-cmp/cmp" +) + +var toolExecutable = "../../../bin/" + toolname + +func TestMain(t *testing.T) { + tests := []struct { + name string + cmd []string + path string + }{ + { + name: "upgrade_list_all", + cmd: []string{"list", "--all"}, + path: "tests/logs/upgrade/*.log", + }, + { + name: "upgrade_list_sst", + cmd: []string{"list", "--sst"}, + path: "tests/logs/upgrade/*.log", + }, + { + name: "upgrade_list_events", + cmd: []string{"list", "--events"}, + path: "tests/logs/upgrade/*.log", + }, + { + name: "upgrade_list_views", + cmd: []string{"list", "--views"}, + path: "tests/logs/upgrade/*.log", + }, + { + name: "upgrade_list_states", + cmd: []string{"list", "--states"}, + path: "tests/logs/upgrade/*.log", + }, + { + name: "upgrade_list_all_since_until", + cmd: []string{"list", "--all", "--since=2023-03-12T13:13:14.886853Z", "--until=2023-03-12T19:35:07.644570Z"}, + path: "tests/logs/upgrade/*.log", + }, + { + name: "upgrade_list_all_since", + cmd: []string{"list", "--all", "--since=2023-03-12T13:13:14.886853Z"}, + path: "tests/logs/upgrade/*.log", + }, + { + name: "upgrade_list_all_until", + cmd: []string{"list", "--all", "--until=2023-03-12T19:35:07.644570Z"}, + path: "tests/logs/upgrade/*.log", + }, + { + name: "upgrade_list_all_until_hiding_1_node", + cmd: []string{"list", "--all", "--until=2023-03-12T13:13:19.031367Z"}, + path: "tests/logs/upgrade/*.log", + }, + { + name: "upgrade_list_all_until_hiding_2_nodes", + cmd: []string{"list", "--all", "--until=2023-03-12T12:29:51.445280Z"}, + path: "tests/logs/upgrade/*.log", + }, + } + + for _, test := range tests { + filepaths, err := filepath.Glob(test.path) + if err != nil { + t.Fatalf("error during filepath.Glob(%s): %v", test.path, err) + } + test.cmd = append(test.cmd, filepaths...) + out, err := exec.Command(toolExecutable, test.cmd...).CombinedOutput() + if err != nil { + t.Fatalf("error executing %s %s: %s: %s", toolExecutable, strings.Join(test.cmd, " "), err.Error(), string(out)) + } + expected, err := ioutil.ReadFile("tests/expected/" + test.name) + if err != nil { + t.Fatalf("error loading test 'expected' file: %s", err) + } + + if !cmp.Equal(out, expected) { + t.Errorf("%s: test %s failed: %s\nout: %s", toolname, test.name, strings.Join(test.cmd, " "), cmp.Diff(string(out), string(expected))) + } + } + +} + +func TestVersionOption(t *testing.T) { + out, err := exec.Command(toolExecutable, "--version").Output() + if err != nil { + t.Errorf("error executing %s --version: %s", toolname, err.Error()) + } + // We are using MustCompile here, because hard-coded RE should not fail + re := regexp.MustCompile(toolname + `\n.*Version v?\d+\.\d+\.\d+\n`) + if !re.Match(out) { + t.Errorf("%s --version returns wrong result:\n%s", toolname, out) + } +} diff --git a/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all new file mode 100644 index 00000000..1c8be669 --- /dev/null +++ b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all @@ -0,0 +1,312 @@ +identifier 172.17.0.2 node2 node3 +current path tests/logs/upgrade/node1.log tests/logs/upgrade/node2.log tests/logs/upgrade/node3.log +last known ip 172.17.0.2 172.17.0.3 172.17.0.4 +last known name node2 node3 +mysql version 8.0.28 8.0.28 8.0.28 + +2023-03-12T07:24:13.733958Z | starting(5.7.40) | +2023-03-12T07:24:13.771126Z | started(cluster) | +2023-03-12T07:24:14.289375Z | node1 joined | +2023-03-12T07:24:14.289412Z | node3 joined | +2023-03-12T07:24:14.789002Z | CLOSED -> OPEN | +2023-03-12T07:24:14.789075Z | PRIMARY(n=3) | +2023-03-12T07:24:14.789560Z | (restored)OPEN -> JOINED | +2023-03-12T07:24:14.789785Z | JOINED -> SYNCED | +2023-03-12T07:34:47.289292Z | received shutdown | +2023-03-12T07:34:57.286990Z | node1 joined | +2023-03-12T07:34:57.287111Z | node3 left | +2023-03-12T07:34:57.290903Z | node3 left | +2023-03-12T07:35:12.293578Z | PRIMARY(n=2) | +2023-03-12T07:35:12.293705Z | NON-PRIMARY(n=1) | +2023-03-12T07:35:12.293723Z | SYNCED -> OPEN | +2023-03-12T07:35:12.293760Z | OPEN -> CLOSED | +2023-03-12T07:35:18.533851Z | shutdown complete | +2023-03-12T07:38:06.673334Z | starting(5.7.40) | +2023-03-12T07:38:06.680025Z | started(cluster) | +2023-03-12T07:38:06.681065Z | safe_to_bootstrap: 1 | +2023-03-12T07:38:06.693619Z | bootstrapping | +2023-03-12T07:38:06.695987Z | CLOSED -> OPEN | +2023-03-12T07:38:06.696042Z | PRIMARY(n=1) | +2023-03-12T07:38:06.696187Z | (restored)OPEN -> JOINED | +2023-03-12T07:38:06.696210Z | JOINED -> SYNCED | +2023-03-12T07:39:27.162350Z | node3 joined | +2023-03-12T07:39:27.164824Z | PRIMARY(n=2) | +2023-03-12T07:43:09.063375Z | node1 joined | +2023-03-12T07:43:09.063430Z | node3 joined | +2023-03-12T07:43:09.065740Z | PRIMARY(n=3) | +2023-03-12T07:49:45.317891Z | received shutdown | +2023-03-12T07:49:55.319157Z | NON-PRIMARY(n=1) | +2023-03-12T07:49:55.319203Z | SYNCED -> OPEN | +2023-03-12T07:49:55.319230Z | OPEN -> CLOSED | +2023-03-12T07:50:00.605309Z | shutdown complete | +2023-03-12T08:46:48.943442Z | starting(5.7.40) | +2023-03-12T08:46:48.947933Z | started(cluster) | +2023-03-12T08:46:48.992365Z | node1 joined | +2023-03-12T08:46:49.463255Z | CLOSED -> OPEN | +2023-03-12T08:46:49.463334Z | PRIMARY(n=2) | +2023-03-12T08:46:49.463988Z | (restored)OPEN -> JOINED | +2023-03-12T08:46:49.464124Z | JOINED -> SYNCED | +2023-03-12T08:48:28.470198Z | node1 left | +2023-03-12T08:48:28.477643Z | node1 left | +2023-03-12T08:48:28.477680Z | PRIMARY(n=1) | +2023-03-12T08:49:41.706020Z | node1 joined | +2023-03-12T08:49:41.713788Z | PRIMARY(n=2) | +2023-03-12T09:41:30.759927Z | received shutdown | +2023-03-12T09:41:41.775338Z | NON-PRIMARY(n=1) | +2023-03-12T09:41:41.775413Z | SYNCED -> OPEN | +2023-03-12T09:41:41.775442Z | OPEN -> CLOSED | +2023-03-12T09:41:48.745926Z | shutdown complete | + 5.7.40 + (version) +  V  + 8.0.28 +2023-03-12T09:55:30.928545Z | starting(8.0.28) | +2023-03-12T09:59:01.655066Z | started(standalone) | +2023-03-12T10:01:10.488475Z | shutdown complete | +2023-03-12T10:03:03.136053Z | starting(8.0.28) | +2023-03-12T10:03:03.139798Z | started(cluster) | +2023-03-12T10:03:03.157578Z | not safe to bootstrap | +2023-03-12T10:03:03.157601Z | ABORTING | +2023-03-12T10:03:03.157774Z | shutdown complete | +2023-03-12T10:03:03.163682Z | CLOSED -> DESTROYED | +2023-03-12T10:04:12.603100Z | starting(8.0.28) | +2023-03-12T10:04:12.608219Z | started(cluster) | +2023-03-12T10:04:12.609639Z | safe_to_bootstrap: 1 | +2023-03-12T10:04:12.623957Z | bootstrapping | +2023-03-12T10:04:12.628369Z | CLOSED -> OPEN | +2023-03-12T10:04:12.628477Z | PRIMARY(n=1) | +2023-03-12T10:04:12.628792Z | (restored)OPEN -> JOINED | +2023-03-12T10:04:12.628833Z | JOINED -> SYNCED | +2023-03-12T11:23:46.950430Z | received shutdown | +2023-03-12T11:23:56.953018Z | SYNCED -> CLOSED | +2023-03-12T11:24:03.294073Z | shutdown complete | +2023-03-12T11:24:33.315663Z | starting(8.0.28) | +2023-03-12T11:24:33.319800Z | started(cluster) | +2023-03-12T11:24:33.320989Z | safe_to_bootstrap: 1 | +2023-03-12T11:24:33.332251Z | bootstrapping | +2023-03-12T11:24:33.334384Z | CLOSED -> OPEN | +2023-03-12T11:24:33.334467Z | PRIMARY(n=1) | +2023-03-12T11:24:33.334699Z | (restored)OPEN -> JOINED | +2023-03-12T11:24:33.334761Z | JOINED -> SYNCED | +2023-03-12T11:35:14.693312Z | node3 joined | +2023-03-12T11:35:14.695410Z | PRIMARY(n=2) | +2023-03-12T11:35:16.321642Z | SYNCED -> DONOR | +2023-03-12T11:35:16.342707Z | IST to node3(seqno:170403898) | +2023-03-12T11:35:17.118100Z | IST will be used | +2023-03-12T11:35:18.140723Z | finished sending IST to node3 | +2023-03-12T11:35:18.140768Z | DESYNCED -> JOINED | +2023-03-12T11:35:18.141016Z | JOINED -> SYNCED | +2023-03-12T11:35:21.030164Z | node3 left | +2023-03-12T11:35:21.035732Z | node3 left | +2023-03-12T11:35:21.035794Z | PRIMARY(n=1) | +2023-03-12T11:39:20.681083Z | node3 joined | +2023-03-12T11:39:20.683800Z | PRIMARY(n=2) | +2023-03-12T11:39:21.948554Z | SYNCED -> DONOR | +2023-03-12T11:39:21.952242Z | IST to node3(seqno:170403900) | +2023-03-12T11:39:33.420743Z | SST to node3 | +2023-03-12T11:39:38.705565Z | node3 left | +2023-03-12T11:39:38.707686Z | node3 left | +2023-03-12T11:39:38.707695Z | PRIMARY(n=1) | +2023-03-12T11:39:38.734654Z | SST error | +2023-03-12T11:39:38.738833Z | node2 failed to sync ??(node left) | +2023-03-12T11:39:38.738842Z | DESYNCED -> JOINED | +2023-03-12T11:39:38.738942Z | JOINED -> SYNCED | +2023-03-12T12:22:48.704897Z | received shutdown | +2023-03-12T12:22:58.706338Z | SYNCED -> CLOSED | +2023-03-12T12:23:04.677082Z | shutdown complete | +2023-03-12T12:24:36.270274Z | starting(8.0.28) | +2023-03-12T12:24:36.274315Z | started(cluster) | +2023-03-12T12:24:36.275472Z | safe_to_bootstrap: 1 | +2023-03-12T12:24:36.287220Z | bootstrapping | +2023-03-12T12:24:36.290286Z | CLOSED -> OPEN | +2023-03-12T12:24:36.290365Z | PRIMARY(n=1) | +2023-03-12T12:24:36.290625Z | (restored)OPEN -> JOINED | +2023-03-12T12:24:36.290667Z | JOINED -> SYNCED | +2023-03-12T12:29:49.319032Z | node1 joined | +2023-03-12T12:29:49.323505Z | PRIMARY(n=2) | +2023-03-12T12:29:51.443525Z | node1 left | +2023-03-12T12:29:51.445280Z | node1 left | +2023-03-12T12:29:51.445300Z | PRIMARY(n=1) | +2023-03-12T12:48:43.293802Z | |  starting(8.0.28) +2023-03-12T12:48:43.297858Z | |  started(cluster) +2023-03-12T12:48:43.521685Z | node3 joined | +2023-03-12T12:48:43.521846Z | |  node2 joined +2023-03-12T12:48:43.526717Z | PRIMARY(n=2) | +2023-03-12T12:48:43.820825Z | |  CLOSED -> OPEN +2023-03-12T12:48:43.820929Z | |  PRIMARY(n=2) +2023-03-12T12:48:43.822001Z | |  OPEN -> PRIMARY +2023-03-12T12:48:44.597299Z | |  will receive IST(seqno:170403905) +2023-03-12T12:48:44.599341Z | SYNCED -> DONOR |  +2023-03-12T12:48:44.599377Z | |  PRIMARY -> JOINER +2023-03-12T12:48:44.616436Z | IST to node3(seqno:170403905) |  +2023-03-12T12:48:45.044873Z | IST will be used |  +2023-03-12T12:48:46.064764Z | finished sending IST to node3 |  +2023-03-12T12:48:46.064808Z | DESYNCED -> JOINED |  +2023-03-12T12:48:46.065014Z | | got IST from node2 +2023-03-12T12:48:46.065051Z | JOINED -> SYNCED |  +2023-03-12T12:48:54.233973Z | |  wsrep recovery +2023-03-12T12:48:54.269978Z | |  IST received(seqno:170403905) +2023-03-12T12:48:54.272037Z | |  JOINER -> JOINED +2023-03-12T12:48:54.272256Z | |  JOINED -> SYNCED +2023-03-12T13:04:24.476576Z | node3 joined |  +2023-03-12T13:04:24.476642Z | node1 joined |  +2023-03-12T13:04:24.476806Z | |  node1 joined +2023-03-12T13:04:24.476863Z | |  node2 joined +2023-03-12T13:04:24.478964Z | PRIMARY(n=3) |  +2023-03-12T13:04:24.479206Z | |  PRIMARY(n=3) +2023-03-12T13:04:25.732132Z | |  SYNCED -> DONOR +2023-03-12T13:04:25.735999Z | |  IST to node1(seqno:170407335) +2023-03-12T13:04:37.415791Z | |  SST to node1 +2023-03-12T13:04:38.645597Z | node3 joined |  +2023-03-12T13:04:38.645710Z | node1 left |  +2023-03-12T13:04:38.647921Z | |  node2 joined +2023-03-12T13:04:38.647981Z | |  node1 left +2023-03-12T13:04:38.650097Z | |  node1 left +2023-03-12T13:04:38.650125Z | |  PRIMARY(n=2) +2023-03-12T13:04:38.652812Z | node1 left |  +2023-03-12T13:04:38.652875Z | PRIMARY(n=2) |  +2023-03-12T13:04:39.715275Z | |  SST error +2023-03-12T13:04:39.720325Z | node3 failed to sync ??(node left) |  +2023-03-12T13:04:39.720379Z | |  node3 failed to sync ??(node left) +2023-03-12T13:04:39.720388Z | |  DESYNCED -> JOINED +2023-03-12T13:04:39.720600Z | |  JOINED -> SYNCED +2023-03-12T13:12:02.676601Z | received shutdown |  +2023-03-12T13:12:13.679070Z | |  node2 left +2023-03-12T13:12:13.681813Z | |  node2 left +2023-03-12T13:12:13.681867Z | |  PRIMARY(n=1) +2023-03-12T13:12:13.682286Z | NON-PRIMARY(n=1) |  +2023-03-12T13:12:13.682450Z | SYNCED -> OPEN |  +2023-03-12T13:12:13.682565Z | OPEN -> CLOSED |  +2023-03-12T13:12:22.957837Z | shutdown complete |  +2023-03-12T13:13:11.498126Z | starting(8.0.28) |  +2023-03-12T13:13:11.501941Z | started(cluster) |  +2023-03-12T13:13:12.015863Z | node3 joined |  +2023-03-12T13:13:12.015998Z | | node2 joined +2023-03-12T13:13:12.020360Z | | PRIMARY(n=2) +2023-03-12T13:13:12.515546Z | CLOSED -> OPEN |  +2023-03-12T13:13:12.515641Z | PRIMARY(n=2) |  +2023-03-12T13:13:12.516249Z | OPEN -> PRIMARY |  +2023-03-12T13:13:13.245723Z | will receive IST(seqno:170407338) |  +2023-03-12T13:13:13.247750Z | PRIMARY -> JOINER |  +2023-03-12T13:13:13.248065Z | |  SYNCED -> DONOR +2023-03-12T13:13:13.262238Z | |  IST to node2(seqno:170407338) +2023-03-12T13:13:13.863959Z | |  IST will be used +2023-03-12T13:13:14.886853Z | got IST from node3 |  +2023-03-12T13:13:14.886942Z | |  finished sending IST to node2 +2023-03-12T13:13:14.887000Z | |  DESYNCED -> JOINED +2023-03-12T13:13:14.887249Z | |  JOINED -> SYNCED +2023-03-12T13:13:19.031367Z | wsrep recovery |  +2023-03-12T13:13:19.156722Z | IST received(seqno:170407338) |  +2023-03-12T13:13:19.158840Z | JOINER -> JOINED |  +2023-03-12T13:13:19.159057Z | JOINED -> SYNCED |  +2023-03-12T19:35:05.840743Z starting(8.0.28) |  |  +2023-03-12T19:35:05.848542Z started(cluster) |  |  +2023-03-12T19:35:06.375917Z | |  node2 joined +2023-03-12T19:35:06.375974Z | |  node1 joined +2023-03-12T19:35:06.376012Z node3 joined |  |  +2023-03-12T19:35:06.376016Z | node3 joined |  +2023-03-12T19:35:06.376026Z node2 joined |  |  +2023-03-12T19:35:06.376081Z | node1 joined |  +2023-03-12T19:35:06.383186Z | PRIMARY(n=3) |  +2023-03-12T19:35:06.385445Z | |  PRIMARY(n=3) +2023-03-12T19:35:06.875619Z CLOSED -> OPEN |  |  +2023-03-12T19:35:06.875717Z PRIMARY(n=3) |  |  +2023-03-12T19:35:06.876501Z OPEN -> PRIMARY |  |  +2023-03-12T19:35:07.638676Z will receive IST(seqno:178226774) |  |  +2023-03-12T19:35:07.644570Z |  |  SYNCED -> DONOR +2023-03-12T19:35:07.644683Z PRIMARY -> JOINER |  |  +2023-03-12T19:36:48.567087Z timeout from donor in gtid/keyring stage |  |  +2023-03-12T19:36:48.589084Z SST error |  |  +2023-03-12T19:36:48.590054Z |  |  node2 joined +2023-03-12T19:36:48.590121Z |  |  node1 left +2023-03-12T19:36:48.590280Z |  node3 joined |  +2023-03-12T19:36:48.590338Z NON-PRIMARY(n=1) |  |  +2023-03-12T19:36:48.590388Z |  node1 left |  +2023-03-12T19:36:48.590443Z JOINER -> OPEN |  |  +2023-03-12T19:36:48.590514Z OPEN -> CLOSED |  |  +2023-03-12T19:36:48.590632Z terminated |  |  +2023-03-12T19:36:48.590647Z former SST cancelled |  |  +2023-03-12T19:36:48.597786Z |  |  node1 left +2023-03-12T19:36:48.597826Z |  |  PRIMARY(n=2) +2023-03-12T19:36:48.604279Z |  node1 left |  +2023-03-12T19:36:48.604341Z |  PRIMARY(n=2) |  + wsrep recovery |  |  +2023-03-12T19:41:28.493046Z starting(8.0.28) |  |  +2023-03-12T19:41:28.500789Z started(cluster) |  |  +2023-03-12T19:43:17.630191Z | node3 joined |  +2023-03-12T19:43:17.630208Z node3 joined |  |  +2023-03-12T19:43:17.630221Z node2 joined |  |  +2023-03-12T19:43:17.630243Z | node1 joined |  +2023-03-12T19:43:17.634138Z | |  node2 joined +2023-03-12T19:43:17.634229Z | |  node1 joined +2023-03-12T19:43:17.643210Z | PRIMARY(n=3) |  +2023-03-12T19:43:17.648163Z | |  PRIMARY(n=3) +2023-03-12T19:43:18.130088Z CLOSED -> OPEN |  |  +2023-03-12T19:43:18.130230Z PRIMARY(n=3) |  |  +2023-03-12T19:43:18.130916Z OPEN -> PRIMARY |  |  +2023-03-12T19:43:18.904410Z will receive IST(seqno:178226792) |  |  +2023-03-12T19:43:18.913328Z |  |  node1 cannot find donor +2023-03-12T19:43:18.913429Z node1 cannot find donor |  |  +2023-03-12T19:43:18.913565Z |  node1 cannot find donor |  +2023-03-12T19:43:19.914122Z |  |  node1 cannot find donor +2023-03-12T19:43:19.914259Z node1 cannot find donor |  |  +2023-03-12T19:43:19.914362Z |  node1 cannot find donor |  +2023-03-12T19:43:20.914957Z |  |  (repeated x97)node1 cannot find donor +2023-03-12T19:43:20.915143Z (repeated x97)node1 cannot find donor |  |  +2023-03-12T19:43:20.915262Z |  (repeated x97)node1 cannot find donor |  +2023-03-12T19:44:58.999603Z |  |  node1 cannot find donor +2023-03-12T19:44:58.999791Z node1 cannot find donor |  |  +2023-03-12T19:44:58.999891Z |  node1 cannot find donor |  +2023-03-12T19:44:59.817822Z timeout from donor in gtid/keyring stage |  |  +2023-03-12T19:44:59.839692Z SST error |  |  +2023-03-12T19:44:59.840669Z |  |  node2 joined +2023-03-12T19:44:59.840745Z |  |  node1 left +2023-03-12T19:44:59.840933Z |  node3 joined |  +2023-03-12T19:44:59.841034Z |  node1 left |  +2023-03-12T19:44:59.841189Z NON-PRIMARY(n=1) |  |  +2023-03-12T19:44:59.841292Z PRIMARY -> OPEN |  |  +2023-03-12T19:44:59.841352Z OPEN -> CLOSED |  |  +2023-03-12T19:44:59.841515Z terminated |  |  +2023-03-12T19:44:59.841529Z former SST cancelled |  |  +2023-03-12T19:44:59.848349Z |  |  node1 left +2023-03-12T19:44:59.848409Z |  |  PRIMARY(n=2) +2023-03-12T19:44:59.855443Z |  node1 left |  +2023-03-12T19:44:59.855491Z |  PRIMARY(n=2) |  +2023-03-12T21:55:48.916323Z |  received shutdown |  +2023-03-12T21:55:59.918448Z |  |  node2 left +2023-03-12T21:55:59.924796Z |  |  node2 left +2023-03-12T21:55:59.924897Z |  |  PRIMARY(n=1) +2023-03-12T21:55:59.925551Z |  NON-PRIMARY(n=1) |  +2023-03-12T21:55:59.925682Z |  SYNCED -> OPEN |  +2023-03-12T21:55:59.925725Z |  OPEN -> CLOSED |  +2023-03-12T21:56:17.004067Z |  shutdown complete |  +2023-03-12T21:58:39.513891Z |  starting(8.0.28) |  +2023-03-12T21:58:39.523542Z |  started(cluster) |  +2023-03-12T21:58:44.885014Z |  | node2 joined +2023-03-12T21:58:44.885179Z |  node3 joined |  +2023-03-12T21:58:44.887985Z |  | PRIMARY(n=2) +2023-03-12T21:58:45.384740Z |  CLOSED -> OPEN |  +2023-03-12T21:58:45.384861Z |  PRIMARY(n=2) |  +2023-03-12T21:58:45.385505Z |  OPEN -> PRIMARY |  +2023-03-12T21:58:46.155159Z |  will receive IST(seqno:178226798) |  +2023-03-12T21:58:46.160014Z |  cannot find donor |  +2023-03-12T21:58:46.160016Z |  |  node2 cannot find donor +2023-03-12T21:58:47.160736Z |  |  node2 cannot find donor +2023-03-12T21:58:47.160758Z |  cannot find donor |  +2023-03-12T21:58:48.161511Z |  |  (repeated x97)node2 cannot find donor +2023-03-12T21:58:48.161544Z |  (repeated x97)cannot find donor |  +2023-03-12T22:00:26.237092Z |  |  node2 cannot find donor +2023-03-12T22:00:26.237093Z |  cannot find donor |  +2023-03-12T22:00:27.067645Z |  timeout from donor in gtid/keyring stage |  +2023-03-12T22:00:27.089809Z |  SST error |  +2023-03-12T22:00:27.237470Z |  terminated |  +2023-03-12T22:00:27.237486Z |  former SST cancelled |  +2023-03-12T22:00:28.090598Z |  |  node2 left +2023-03-12T22:00:28.094664Z |  |  node2 left +2023-03-12T22:00:28.094708Z |  |  PRIMARY(n=1) + +identifier 172.17.0.2 node2 node3 +current path tests/logs/upgrade/node1.log tests/logs/upgrade/node2.log tests/logs/upgrade/node3.log +last known ip 172.17.0.2 172.17.0.3 172.17.0.4 +last known name node2 node3 +mysql version 8.0.28 8.0.28 8.0.28 diff --git a/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all_since b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all_since new file mode 100644 index 00000000..21b96faf --- /dev/null +++ b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all_since @@ -0,0 +1,125 @@ +identifier 172.17.0.2 node2 node3 +current path tests/logs/upgrade/node1.log tests/logs/upgrade/node2.log tests/logs/upgrade/node3.log +last known ip 172.17.0.2 172.17.0.3 +last known name node2 node3 +mysql version 8.0.28 8.0.28 + +2023-03-12T13:13:14.886853Z | got SST from node3 | +2023-03-12T13:13:14.886942Z | | finished sending SST to node2 +2023-03-12T13:13:14.887000Z | | DESYNCED -> JOINED +2023-03-12T13:13:14.887249Z | | JOINED -> SYNCED +2023-03-12T13:13:19.031367Z | wsrep recovery |  +2023-03-12T13:13:19.156722Z | IST received(seqno:170407338) |  +2023-03-12T13:13:19.158840Z | JOINER -> JOINED |  +2023-03-12T13:13:19.159057Z | JOINED -> SYNCED |  +2023-03-12T19:35:05.840743Z starting(8.0.28) |  |  +2023-03-12T19:35:05.848542Z started(cluster) |  |  +2023-03-12T19:35:06.375917Z | |  node2 joined +2023-03-12T19:35:06.375974Z | |  node1 joined +2023-03-12T19:35:06.376012Z node3 joined |  |  +2023-03-12T19:35:06.376016Z | node3 joined |  +2023-03-12T19:35:06.376026Z node2 joined |  |  +2023-03-12T19:35:06.376081Z | node1 joined |  +2023-03-12T19:35:06.383186Z | PRIMARY(n=3) |  +2023-03-12T19:35:06.385445Z | |  PRIMARY(n=3) +2023-03-12T19:35:06.875619Z CLOSED -> OPEN |  |  +2023-03-12T19:35:06.875717Z PRIMARY(n=3) |  |  +2023-03-12T19:35:06.876501Z OPEN -> PRIMARY |  |  +2023-03-12T19:35:07.638676Z will receive IST(seqno:178226774) |  |  +2023-03-12T19:35:07.644570Z |  |  SYNCED -> DONOR +2023-03-12T19:35:07.644683Z PRIMARY -> JOINER |  |  +2023-03-12T19:36:48.567087Z timeout from donor in gtid/keyring stage |  |  +2023-03-12T19:36:48.589084Z SST error |  |  +2023-03-12T19:36:48.590054Z |  |  node2 joined +2023-03-12T19:36:48.590121Z |  |  node1 left +2023-03-12T19:36:48.590280Z |  node3 joined |  +2023-03-12T19:36:48.590338Z NON-PRIMARY(n=1) |  |  +2023-03-12T19:36:48.590388Z |  node1 left |  +2023-03-12T19:36:48.590443Z JOINER -> OPEN |  |  +2023-03-12T19:36:48.590514Z OPEN -> CLOSED |  |  +2023-03-12T19:36:48.590632Z terminated |  |  +2023-03-12T19:36:48.590647Z former SST cancelled |  |  +2023-03-12T19:36:48.597786Z |  |  node1 left +2023-03-12T19:36:48.597826Z |  |  PRIMARY(n=2) +2023-03-12T19:36:48.604279Z |  node1 left |  +2023-03-12T19:36:48.604341Z |  PRIMARY(n=2) |  + wsrep recovery |  |  +2023-03-12T19:41:28.493046Z starting(8.0.28) |  |  +2023-03-12T19:41:28.500789Z started(cluster) |  |  +2023-03-12T19:43:17.630191Z | node3 joined |  +2023-03-12T19:43:17.630208Z node3 joined |  |  +2023-03-12T19:43:17.630221Z node2 joined |  |  +2023-03-12T19:43:17.630243Z | node1 joined |  +2023-03-12T19:43:17.634138Z | |  node2 joined +2023-03-12T19:43:17.634229Z | |  node1 joined +2023-03-12T19:43:17.643210Z | PRIMARY(n=3) |  +2023-03-12T19:43:17.648163Z | |  PRIMARY(n=3) +2023-03-12T19:43:18.130088Z CLOSED -> OPEN |  |  +2023-03-12T19:43:18.130230Z PRIMARY(n=3) |  |  +2023-03-12T19:43:18.130916Z OPEN -> PRIMARY |  |  +2023-03-12T19:43:18.904410Z will receive IST(seqno:178226792) |  |  +2023-03-12T19:43:18.913328Z |  |  node1 cannot find donor +2023-03-12T19:43:18.913429Z node1 cannot find donor |  |  +2023-03-12T19:43:18.913565Z |  node1 cannot find donor |  +2023-03-12T19:43:19.914122Z |  |  node1 cannot find donor +2023-03-12T19:43:19.914259Z node1 cannot find donor |  |  +2023-03-12T19:43:19.914362Z |  node1 cannot find donor |  +2023-03-12T19:43:20.914957Z |  |  (repeated x97)node1 cannot find donor +2023-03-12T19:43:20.915143Z (repeated x97)node1 cannot find donor |  |  +2023-03-12T19:43:20.915262Z |  (repeated x97)node1 cannot find donor |  +2023-03-12T19:44:58.999603Z |  |  node1 cannot find donor +2023-03-12T19:44:58.999791Z node1 cannot find donor |  |  +2023-03-12T19:44:58.999891Z |  node1 cannot find donor |  +2023-03-12T19:44:59.817822Z timeout from donor in gtid/keyring stage |  |  +2023-03-12T19:44:59.839692Z SST error |  |  +2023-03-12T19:44:59.840669Z |  |  node2 joined +2023-03-12T19:44:59.840745Z |  |  node1 left +2023-03-12T19:44:59.840933Z |  node3 joined |  +2023-03-12T19:44:59.841034Z |  node1 left |  +2023-03-12T19:44:59.841189Z NON-PRIMARY(n=1) |  |  +2023-03-12T19:44:59.841292Z PRIMARY -> OPEN |  |  +2023-03-12T19:44:59.841352Z OPEN -> CLOSED |  |  +2023-03-12T19:44:59.841515Z terminated |  |  +2023-03-12T19:44:59.841529Z former SST cancelled |  |  +2023-03-12T19:44:59.848349Z |  |  node1 left +2023-03-12T19:44:59.848409Z |  |  PRIMARY(n=2) +2023-03-12T19:44:59.855443Z |  node1 left |  +2023-03-12T19:44:59.855491Z |  PRIMARY(n=2) |  +2023-03-12T21:55:48.916323Z |  received shutdown |  +2023-03-12T21:55:59.918448Z |  |  node2 left +2023-03-12T21:55:59.924796Z |  |  node2 left +2023-03-12T21:55:59.924897Z |  |  PRIMARY(n=1) +2023-03-12T21:55:59.925551Z |  NON-PRIMARY(n=1) |  +2023-03-12T21:55:59.925682Z |  SYNCED -> OPEN |  +2023-03-12T21:55:59.925725Z |  OPEN -> CLOSED |  +2023-03-12T21:56:17.004067Z |  shutdown complete |  +2023-03-12T21:58:39.513891Z |  starting(8.0.28) |  +2023-03-12T21:58:39.523542Z |  started(cluster) |  +2023-03-12T21:58:44.885014Z |  | node2 joined +2023-03-12T21:58:44.885179Z |  node3 joined |  +2023-03-12T21:58:44.887985Z |  | PRIMARY(n=2) +2023-03-12T21:58:45.384740Z |  CLOSED -> OPEN |  +2023-03-12T21:58:45.384861Z |  PRIMARY(n=2) |  +2023-03-12T21:58:45.385505Z |  OPEN -> PRIMARY |  +2023-03-12T21:58:46.155159Z |  will receive IST(seqno:178226798) |  +2023-03-12T21:58:46.160014Z |  cannot find donor |  +2023-03-12T21:58:46.160016Z |  |  node2 cannot find donor +2023-03-12T21:58:47.160736Z |  |  node2 cannot find donor +2023-03-12T21:58:47.160758Z |  cannot find donor |  +2023-03-12T21:58:48.161511Z |  |  (repeated x97)node2 cannot find donor +2023-03-12T21:58:48.161544Z |  (repeated x97)cannot find donor |  +2023-03-12T22:00:26.237092Z |  |  node2 cannot find donor +2023-03-12T22:00:26.237093Z |  cannot find donor |  +2023-03-12T22:00:27.067645Z |  timeout from donor in gtid/keyring stage |  +2023-03-12T22:00:27.089809Z |  SST error |  +2023-03-12T22:00:27.237470Z |  terminated |  +2023-03-12T22:00:27.237486Z |  former SST cancelled |  +2023-03-12T22:00:28.090598Z |  |  node2 left +2023-03-12T22:00:28.094664Z |  |  node2 left +2023-03-12T22:00:28.094708Z |  |  PRIMARY(n=1) + +identifier 172.17.0.2 node2 node3 +current path tests/logs/upgrade/node1.log tests/logs/upgrade/node2.log tests/logs/upgrade/node3.log +last known ip 172.17.0.2 172.17.0.3 +last known name node2 node3 +mysql version 8.0.28 8.0.28 diff --git a/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all_since_until b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all_since_until new file mode 100644 index 00000000..d199a514 --- /dev/null +++ b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all_since_until @@ -0,0 +1,29 @@ +identifier 172.17.0.2 node2 node3 +current path tests/logs/upgrade/node1.log tests/logs/upgrade/node2.log tests/logs/upgrade/node3.log +last known ip 172.17.0.2 +last known name node2 node3 +mysql version 8.0.28 + +2023-03-12T13:13:14.886853Z | got SST from node3 | +2023-03-12T13:13:14.886942Z | | finished sending SST to node2 +2023-03-12T13:13:14.887000Z | | DESYNCED -> JOINED +2023-03-12T13:13:14.887249Z | | JOINED -> SYNCED +2023-03-12T13:13:19.031367Z | wsrep recovery |  +2023-03-12T13:13:19.156722Z | IST received(seqno:170407338) |  +2023-03-12T13:13:19.158840Z | JOINER -> JOINED |  +2023-03-12T13:13:19.159057Z | JOINED -> SYNCED |  +2023-03-12T19:35:05.840743Z starting(8.0.28) |  |  +2023-03-12T19:35:05.848542Z started(cluster) |  |  +2023-03-12T19:35:06.375917Z | |  node2 joined +2023-03-12T19:35:06.375974Z | |  node1 joined +2023-03-12T19:35:06.376012Z node3 joined |  |  +2023-03-12T19:35:06.376016Z | node3 joined |  +2023-03-12T19:35:06.376026Z node2 joined |  |  +2023-03-12T19:35:06.376081Z | node1 joined |  +2023-03-12T19:35:06.383186Z | PRIMARY(n=3) |  +2023-03-12T19:35:06.385445Z | |  PRIMARY(n=3) +2023-03-12T19:35:06.875619Z CLOSED -> OPEN |  |  +2023-03-12T19:35:06.875717Z PRIMARY(n=3) |  |  +2023-03-12T19:35:06.876501Z OPEN -> PRIMARY |  |  +2023-03-12T19:35:07.638676Z will receive IST(seqno:178226774) |  |  +2023-03-12T19:35:07.644570Z |  |  SYNCED -> DONOR diff --git a/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all_until b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all_until new file mode 100644 index 00000000..16287212 --- /dev/null +++ b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all_until @@ -0,0 +1,222 @@ +identifier 172.17.0.2 node2 node3 +current path tests/logs/upgrade/node1.log tests/logs/upgrade/node2.log tests/logs/upgrade/node3.log +last known ip 172.17.0.2 172.17.0.3 172.17.0.4 +last known name node2 node3 +mysql version 8.0.28 8.0.28 8.0.28 + +2023-03-12T07:24:13.733958Z | starting(5.7.40) | +2023-03-12T07:24:13.771126Z | started(cluster) | +2023-03-12T07:24:14.289375Z | node1 joined | +2023-03-12T07:24:14.289412Z | node3 joined | +2023-03-12T07:24:14.789002Z | CLOSED -> OPEN | +2023-03-12T07:24:14.789075Z | PRIMARY(n=3) | +2023-03-12T07:24:14.789560Z | (restored)OPEN -> JOINED | +2023-03-12T07:24:14.789785Z | JOINED -> SYNCED | +2023-03-12T07:34:47.289292Z | received shutdown | +2023-03-12T07:34:57.286990Z | node1 joined | +2023-03-12T07:34:57.287111Z | node3 left | +2023-03-12T07:34:57.290903Z | node3 left | +2023-03-12T07:35:12.293578Z | PRIMARY(n=2) | +2023-03-12T07:35:12.293705Z | NON-PRIMARY(n=1) | +2023-03-12T07:35:12.293723Z | SYNCED -> OPEN | +2023-03-12T07:35:12.293760Z | OPEN -> CLOSED | +2023-03-12T07:35:18.533851Z | shutdown complete | +2023-03-12T07:38:06.673334Z | starting(5.7.40) | +2023-03-12T07:38:06.680025Z | started(cluster) | +2023-03-12T07:38:06.681065Z | safe_to_bootstrap: 1 | +2023-03-12T07:38:06.693619Z | bootstrapping | +2023-03-12T07:38:06.695987Z | CLOSED -> OPEN | +2023-03-12T07:38:06.696042Z | PRIMARY(n=1) | +2023-03-12T07:38:06.696187Z | (restored)OPEN -> JOINED | +2023-03-12T07:38:06.696210Z | JOINED -> SYNCED | +2023-03-12T07:39:27.162350Z | node3 joined | +2023-03-12T07:39:27.164824Z | PRIMARY(n=2) | +2023-03-12T07:43:09.063375Z | node1 joined | +2023-03-12T07:43:09.063430Z | node3 joined | +2023-03-12T07:43:09.065740Z | PRIMARY(n=3) | +2023-03-12T07:49:45.317891Z | received shutdown | +2023-03-12T07:49:55.319157Z | NON-PRIMARY(n=1) | +2023-03-12T07:49:55.319203Z | SYNCED -> OPEN | +2023-03-12T07:49:55.319230Z | OPEN -> CLOSED | +2023-03-12T07:50:00.605309Z | shutdown complete | +2023-03-12T08:46:48.943442Z | starting(5.7.40) | +2023-03-12T08:46:48.947933Z | started(cluster) | +2023-03-12T08:46:48.992365Z | node1 joined | +2023-03-12T08:46:49.463255Z | CLOSED -> OPEN | +2023-03-12T08:46:49.463334Z | PRIMARY(n=2) | +2023-03-12T08:46:49.463988Z | (restored)OPEN -> JOINED | +2023-03-12T08:46:49.464124Z | JOINED -> SYNCED | +2023-03-12T08:48:28.470198Z | node1 left | +2023-03-12T08:48:28.477643Z | node1 left | +2023-03-12T08:48:28.477680Z | PRIMARY(n=1) | +2023-03-12T08:49:41.706020Z | node1 joined | +2023-03-12T08:49:41.713788Z | PRIMARY(n=2) | +2023-03-12T09:41:30.759927Z | received shutdown | +2023-03-12T09:41:41.775338Z | NON-PRIMARY(n=1) | +2023-03-12T09:41:41.775413Z | SYNCED -> OPEN | +2023-03-12T09:41:41.775442Z | OPEN -> CLOSED | +2023-03-12T09:41:48.745926Z | shutdown complete | + 5.7.40 + (version) +  V  + 8.0.28 +2023-03-12T09:55:30.928545Z | starting(8.0.28) | +2023-03-12T09:59:01.655066Z | started(standalone) | +2023-03-12T10:01:10.488475Z | shutdown complete | +2023-03-12T10:03:03.136053Z | starting(8.0.28) | +2023-03-12T10:03:03.139798Z | started(cluster) | +2023-03-12T10:03:03.157578Z | not safe to bootstrap | +2023-03-12T10:03:03.157601Z | ABORTING | +2023-03-12T10:03:03.157774Z | shutdown complete | +2023-03-12T10:03:03.163682Z | CLOSED -> DESTROYED | +2023-03-12T10:04:12.603100Z | starting(8.0.28) | +2023-03-12T10:04:12.608219Z | started(cluster) | +2023-03-12T10:04:12.609639Z | safe_to_bootstrap: 1 | +2023-03-12T10:04:12.623957Z | bootstrapping | +2023-03-12T10:04:12.628369Z | CLOSED -> OPEN | +2023-03-12T10:04:12.628477Z | PRIMARY(n=1) | +2023-03-12T10:04:12.628792Z | (restored)OPEN -> JOINED | +2023-03-12T10:04:12.628833Z | JOINED -> SYNCED | +2023-03-12T11:23:46.950430Z | received shutdown | +2023-03-12T11:23:56.953018Z | SYNCED -> CLOSED | +2023-03-12T11:24:03.294073Z | shutdown complete | +2023-03-12T11:24:33.315663Z | starting(8.0.28) | +2023-03-12T11:24:33.319800Z | started(cluster) | +2023-03-12T11:24:33.320989Z | safe_to_bootstrap: 1 | +2023-03-12T11:24:33.332251Z | bootstrapping | +2023-03-12T11:24:33.334384Z | CLOSED -> OPEN | +2023-03-12T11:24:33.334467Z | PRIMARY(n=1) | +2023-03-12T11:24:33.334699Z | (restored)OPEN -> JOINED | +2023-03-12T11:24:33.334761Z | JOINED -> SYNCED | +2023-03-12T11:35:14.693312Z | node3 joined | +2023-03-12T11:35:14.695410Z | PRIMARY(n=2) | +2023-03-12T11:35:16.321642Z | SYNCED -> DONOR | +2023-03-12T11:35:16.342707Z | IST to node3(seqno:170403898) | +2023-03-12T11:35:17.118100Z | IST will be used | +2023-03-12T11:35:18.140723Z | finished sending IST to node3 | +2023-03-12T11:35:18.140768Z | DESYNCED -> JOINED | +2023-03-12T11:35:18.141016Z | JOINED -> SYNCED | +2023-03-12T11:35:21.030164Z | node3 left | +2023-03-12T11:35:21.035732Z | node3 left | +2023-03-12T11:35:21.035794Z | PRIMARY(n=1) | +2023-03-12T11:39:20.681083Z | node3 joined | +2023-03-12T11:39:20.683800Z | PRIMARY(n=2) | +2023-03-12T11:39:21.948554Z | SYNCED -> DONOR | +2023-03-12T11:39:21.952242Z | IST to node3(seqno:170403900) | +2023-03-12T11:39:33.420743Z | SST to node3 | +2023-03-12T11:39:38.705565Z | node3 left | +2023-03-12T11:39:38.707686Z | node3 left | +2023-03-12T11:39:38.707695Z | PRIMARY(n=1) | +2023-03-12T11:39:38.734654Z | SST error | +2023-03-12T11:39:38.738833Z | node2 failed to sync ??(node left) | +2023-03-12T11:39:38.738842Z | DESYNCED -> JOINED | +2023-03-12T11:39:38.738942Z | JOINED -> SYNCED | +2023-03-12T12:22:48.704897Z | received shutdown | +2023-03-12T12:22:58.706338Z | SYNCED -> CLOSED | +2023-03-12T12:23:04.677082Z | shutdown complete | +2023-03-12T12:24:36.270274Z | starting(8.0.28) | +2023-03-12T12:24:36.274315Z | started(cluster) | +2023-03-12T12:24:36.275472Z | safe_to_bootstrap: 1 | +2023-03-12T12:24:36.287220Z | bootstrapping | +2023-03-12T12:24:36.290286Z | CLOSED -> OPEN | +2023-03-12T12:24:36.290365Z | PRIMARY(n=1) | +2023-03-12T12:24:36.290625Z | (restored)OPEN -> JOINED | +2023-03-12T12:24:36.290667Z | JOINED -> SYNCED | +2023-03-12T12:29:49.319032Z | node1 joined | +2023-03-12T12:29:49.323505Z | PRIMARY(n=2) | +2023-03-12T12:29:51.443525Z | node1 left | +2023-03-12T12:29:51.445280Z | node1 left | +2023-03-12T12:29:51.445300Z | PRIMARY(n=1) | +2023-03-12T12:48:43.293802Z | |  starting(8.0.28) +2023-03-12T12:48:43.297858Z | |  started(cluster) +2023-03-12T12:48:43.521685Z | node3 joined | +2023-03-12T12:48:43.521846Z | |  node2 joined +2023-03-12T12:48:43.526717Z | PRIMARY(n=2) | +2023-03-12T12:48:43.820825Z | |  CLOSED -> OPEN +2023-03-12T12:48:43.820929Z | |  PRIMARY(n=2) +2023-03-12T12:48:43.822001Z | |  OPEN -> PRIMARY +2023-03-12T12:48:44.597299Z | |  will receive IST(seqno:170403905) +2023-03-12T12:48:44.599341Z | SYNCED -> DONOR |  +2023-03-12T12:48:44.599377Z | |  PRIMARY -> JOINER +2023-03-12T12:48:44.616436Z | IST to node3(seqno:170403905) |  +2023-03-12T12:48:45.044873Z | IST will be used |  +2023-03-12T12:48:46.064764Z | finished sending IST to node3 |  +2023-03-12T12:48:46.064808Z | DESYNCED -> JOINED |  +2023-03-12T12:48:46.065014Z | | got IST from node2 +2023-03-12T12:48:46.065051Z | JOINED -> SYNCED |  +2023-03-12T12:48:54.233973Z | |  wsrep recovery +2023-03-12T12:48:54.269978Z | |  IST received(seqno:170403905) +2023-03-12T12:48:54.272037Z | |  JOINER -> JOINED +2023-03-12T12:48:54.272256Z | |  JOINED -> SYNCED +2023-03-12T13:04:24.476576Z | node3 joined |  +2023-03-12T13:04:24.476642Z | node1 joined |  +2023-03-12T13:04:24.476806Z | |  node1 joined +2023-03-12T13:04:24.476863Z | |  node2 joined +2023-03-12T13:04:24.478964Z | PRIMARY(n=3) |  +2023-03-12T13:04:24.479206Z | |  PRIMARY(n=3) +2023-03-12T13:04:25.732132Z | |  SYNCED -> DONOR +2023-03-12T13:04:25.735999Z | |  IST to node1(seqno:170407335) +2023-03-12T13:04:37.415791Z | |  SST to node1 +2023-03-12T13:04:38.645597Z | node3 joined |  +2023-03-12T13:04:38.645710Z | node1 left |  +2023-03-12T13:04:38.647921Z | |  node2 joined +2023-03-12T13:04:38.647981Z | |  node1 left +2023-03-12T13:04:38.650097Z | |  node1 left +2023-03-12T13:04:38.650125Z | |  PRIMARY(n=2) +2023-03-12T13:04:38.652812Z | node1 left |  +2023-03-12T13:04:38.652875Z | PRIMARY(n=2) |  +2023-03-12T13:04:39.715275Z | |  SST error +2023-03-12T13:04:39.720325Z | node3 failed to sync ??(node left) |  +2023-03-12T13:04:39.720379Z | |  node3 failed to sync ??(node left) +2023-03-12T13:04:39.720388Z | |  DESYNCED -> JOINED +2023-03-12T13:04:39.720600Z | |  JOINED -> SYNCED +2023-03-12T13:12:02.676601Z | received shutdown |  +2023-03-12T13:12:13.679070Z | |  node2 left +2023-03-12T13:12:13.681813Z | |  node2 left +2023-03-12T13:12:13.681867Z | |  PRIMARY(n=1) +2023-03-12T13:12:13.682286Z | NON-PRIMARY(n=1) |  +2023-03-12T13:12:13.682450Z | SYNCED -> OPEN |  +2023-03-12T13:12:13.682565Z | OPEN -> CLOSED |  +2023-03-12T13:12:22.957837Z | shutdown complete |  +2023-03-12T13:13:11.498126Z | starting(8.0.28) |  +2023-03-12T13:13:11.501941Z | started(cluster) |  +2023-03-12T13:13:12.015863Z | node3 joined |  +2023-03-12T13:13:12.015998Z | | node2 joined +2023-03-12T13:13:12.020360Z | | PRIMARY(n=2) +2023-03-12T13:13:12.515546Z | CLOSED -> OPEN |  +2023-03-12T13:13:12.515641Z | PRIMARY(n=2) |  +2023-03-12T13:13:12.516249Z | OPEN -> PRIMARY |  +2023-03-12T13:13:13.245723Z | will receive IST(seqno:170407338) |  +2023-03-12T13:13:13.247750Z | PRIMARY -> JOINER |  +2023-03-12T13:13:13.248065Z | |  SYNCED -> DONOR +2023-03-12T13:13:13.262238Z | |  IST to node2(seqno:170407338) +2023-03-12T13:13:13.863959Z | |  IST will be used +2023-03-12T13:13:14.886853Z | got IST from node3 |  +2023-03-12T13:13:14.886942Z | |  finished sending IST to node2 +2023-03-12T13:13:14.887000Z | |  DESYNCED -> JOINED +2023-03-12T13:13:14.887249Z | |  JOINED -> SYNCED +2023-03-12T13:13:19.031367Z | wsrep recovery |  +2023-03-12T13:13:19.156722Z | IST received(seqno:170407338) |  +2023-03-12T13:13:19.158840Z | JOINER -> JOINED |  +2023-03-12T13:13:19.159057Z | JOINED -> SYNCED |  +2023-03-12T19:35:05.840743Z starting(8.0.28) |  |  +2023-03-12T19:35:05.848542Z started(cluster) |  |  +2023-03-12T19:35:06.375917Z | |  node2 joined +2023-03-12T19:35:06.375974Z | |  node1 joined +2023-03-12T19:35:06.376012Z node3 joined |  |  +2023-03-12T19:35:06.376016Z | node3 joined |  +2023-03-12T19:35:06.376026Z node2 joined |  |  +2023-03-12T19:35:06.376081Z | node1 joined |  +2023-03-12T19:35:06.383186Z | PRIMARY(n=3) |  +2023-03-12T19:35:06.385445Z | |  PRIMARY(n=3) +2023-03-12T19:35:06.875619Z CLOSED -> OPEN |  |  +2023-03-12T19:35:06.875717Z PRIMARY(n=3) |  |  +2023-03-12T19:35:06.876501Z OPEN -> PRIMARY |  |  +2023-03-12T19:35:07.638676Z will receive IST(seqno:178226774) |  |  +2023-03-12T19:35:07.644570Z |  |  SYNCED -> DONOR + +identifier 172.17.0.2 node2 node3 +current path tests/logs/upgrade/node1.log tests/logs/upgrade/node2.log tests/logs/upgrade/node3.log +last known ip 172.17.0.2 172.17.0.3 172.17.0.4 +last known name node2 node3 +mysql version 8.0.28 8.0.28 8.0.28 diff --git a/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all_until_hiding_1_node b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all_until_hiding_1_node new file mode 100644 index 00000000..8481e2bc --- /dev/null +++ b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all_until_hiding_1_node @@ -0,0 +1,204 @@ +identifier node2 node3 +current path tests/logs/upgrade/node2.log tests/logs/upgrade/node3.log +last known ip 172.17.0.3 172.17.0.4 +last known name node2 node3 +mysql version 8.0.28 8.0.28 + +2023-03-12T07:24:13.733958Z starting(5.7.40) | +2023-03-12T07:24:13.771126Z started(cluster) | +2023-03-12T07:24:14.289375Z node1 joined | +2023-03-12T07:24:14.289412Z node3 joined | +2023-03-12T07:24:14.789002Z CLOSED -> OPEN | +2023-03-12T07:24:14.789075Z PRIMARY(n=3) | +2023-03-12T07:24:14.789560Z (restored)OPEN -> JOINED | +2023-03-12T07:24:14.789785Z JOINED -> SYNCED | +2023-03-12T07:34:47.289292Z received shutdown | +2023-03-12T07:34:57.286990Z node1 joined | +2023-03-12T07:34:57.287111Z node3 left | +2023-03-12T07:34:57.290903Z node3 left | +2023-03-12T07:35:12.293578Z PRIMARY(n=2) | +2023-03-12T07:35:12.293705Z NON-PRIMARY(n=1) | +2023-03-12T07:35:12.293723Z SYNCED -> OPEN | +2023-03-12T07:35:12.293760Z OPEN -> CLOSED | +2023-03-12T07:35:18.533851Z shutdown complete | +2023-03-12T07:38:06.673334Z starting(5.7.40) | +2023-03-12T07:38:06.680025Z started(cluster) | +2023-03-12T07:38:06.681065Z safe_to_bootstrap: 1 | +2023-03-12T07:38:06.693619Z bootstrapping | +2023-03-12T07:38:06.695987Z CLOSED -> OPEN | +2023-03-12T07:38:06.696042Z PRIMARY(n=1) | +2023-03-12T07:38:06.696187Z (restored)OPEN -> JOINED | +2023-03-12T07:38:06.696210Z JOINED -> SYNCED | +2023-03-12T07:39:27.162350Z node3 joined | +2023-03-12T07:39:27.164824Z PRIMARY(n=2) | +2023-03-12T07:43:09.063375Z node1 joined | +2023-03-12T07:43:09.063430Z node3 joined | +2023-03-12T07:43:09.065740Z PRIMARY(n=3) | +2023-03-12T07:49:45.317891Z received shutdown | +2023-03-12T07:49:55.319157Z NON-PRIMARY(n=1) | +2023-03-12T07:49:55.319203Z SYNCED -> OPEN | +2023-03-12T07:49:55.319230Z OPEN -> CLOSED | +2023-03-12T07:50:00.605309Z shutdown complete | +2023-03-12T08:46:48.943442Z starting(5.7.40) | +2023-03-12T08:46:48.947933Z started(cluster) | +2023-03-12T08:46:48.992365Z node1 joined | +2023-03-12T08:46:49.463255Z CLOSED -> OPEN | +2023-03-12T08:46:49.463334Z PRIMARY(n=2) | +2023-03-12T08:46:49.463988Z (restored)OPEN -> JOINED | +2023-03-12T08:46:49.464124Z JOINED -> SYNCED | +2023-03-12T08:48:28.470198Z node1 left | +2023-03-12T08:48:28.477643Z node1 left | +2023-03-12T08:48:28.477680Z PRIMARY(n=1) | +2023-03-12T08:49:41.706020Z node1 joined | +2023-03-12T08:49:41.713788Z PRIMARY(n=2) | +2023-03-12T09:41:30.759927Z received shutdown | +2023-03-12T09:41:41.775338Z NON-PRIMARY(n=1) | +2023-03-12T09:41:41.775413Z SYNCED -> OPEN | +2023-03-12T09:41:41.775442Z OPEN -> CLOSED | +2023-03-12T09:41:48.745926Z shutdown complete | + 5.7.40 + (version) +  V  + 8.0.28 +2023-03-12T09:55:30.928545Z starting(8.0.28) | +2023-03-12T09:59:01.655066Z started(standalone) | +2023-03-12T10:01:10.488475Z shutdown complete | +2023-03-12T10:03:03.136053Z starting(8.0.28) | +2023-03-12T10:03:03.139798Z started(cluster) | +2023-03-12T10:03:03.157578Z not safe to bootstrap | +2023-03-12T10:03:03.157601Z ABORTING | +2023-03-12T10:03:03.157774Z shutdown complete | +2023-03-12T10:03:03.163682Z CLOSED -> DESTROYED | +2023-03-12T10:04:12.603100Z starting(8.0.28) | +2023-03-12T10:04:12.608219Z started(cluster) | +2023-03-12T10:04:12.609639Z safe_to_bootstrap: 1 | +2023-03-12T10:04:12.623957Z bootstrapping | +2023-03-12T10:04:12.628369Z CLOSED -> OPEN | +2023-03-12T10:04:12.628477Z PRIMARY(n=1) | +2023-03-12T10:04:12.628792Z (restored)OPEN -> JOINED | +2023-03-12T10:04:12.628833Z JOINED -> SYNCED | +2023-03-12T11:23:46.950430Z received shutdown | +2023-03-12T11:23:56.953018Z SYNCED -> CLOSED | +2023-03-12T11:24:03.294073Z shutdown complete | +2023-03-12T11:24:33.315663Z starting(8.0.28) | +2023-03-12T11:24:33.319800Z started(cluster) | +2023-03-12T11:24:33.320989Z safe_to_bootstrap: 1 | +2023-03-12T11:24:33.332251Z bootstrapping | +2023-03-12T11:24:33.334384Z CLOSED -> OPEN | +2023-03-12T11:24:33.334467Z PRIMARY(n=1) | +2023-03-12T11:24:33.334699Z (restored)OPEN -> JOINED | +2023-03-12T11:24:33.334761Z JOINED -> SYNCED | +2023-03-12T11:35:14.693312Z node3 joined | +2023-03-12T11:35:14.695410Z PRIMARY(n=2) | +2023-03-12T11:35:16.321642Z SYNCED -> DONOR | +2023-03-12T11:35:16.342707Z IST to node3(seqno:170403898) | +2023-03-12T11:35:17.118100Z IST will be used | +2023-03-12T11:35:18.140723Z finished sending IST to node3 | +2023-03-12T11:35:18.140768Z DESYNCED -> JOINED | +2023-03-12T11:35:18.141016Z JOINED -> SYNCED | +2023-03-12T11:35:21.030164Z node3 left | +2023-03-12T11:35:21.035732Z node3 left | +2023-03-12T11:35:21.035794Z PRIMARY(n=1) | +2023-03-12T11:39:20.681083Z node3 joined | +2023-03-12T11:39:20.683800Z PRIMARY(n=2) | +2023-03-12T11:39:21.948554Z SYNCED -> DONOR | +2023-03-12T11:39:21.952242Z IST to node3(seqno:170403900) | +2023-03-12T11:39:33.420743Z SST to node3 | +2023-03-12T11:39:38.705565Z node3 left | +2023-03-12T11:39:38.707686Z node3 left | +2023-03-12T11:39:38.707695Z PRIMARY(n=1) | +2023-03-12T11:39:38.734654Z SST error | +2023-03-12T11:39:38.738833Z node2 failed to sync ??(node left) | +2023-03-12T11:39:38.738842Z DESYNCED -> JOINED | +2023-03-12T11:39:38.738942Z JOINED -> SYNCED | +2023-03-12T12:22:48.704897Z received shutdown | +2023-03-12T12:22:58.706338Z SYNCED -> CLOSED | +2023-03-12T12:23:04.677082Z shutdown complete | +2023-03-12T12:24:36.270274Z starting(8.0.28) | +2023-03-12T12:24:36.274315Z started(cluster) | +2023-03-12T12:24:36.275472Z safe_to_bootstrap: 1 | +2023-03-12T12:24:36.287220Z bootstrapping | +2023-03-12T12:24:36.290286Z CLOSED -> OPEN | +2023-03-12T12:24:36.290365Z PRIMARY(n=1) | +2023-03-12T12:24:36.290625Z (restored)OPEN -> JOINED | +2023-03-12T12:24:36.290667Z JOINED -> SYNCED | +2023-03-12T12:29:49.319032Z node1 joined | +2023-03-12T12:29:49.323505Z PRIMARY(n=2) | +2023-03-12T12:29:51.443525Z node1 left | +2023-03-12T12:29:51.445280Z node1 left | +2023-03-12T12:29:51.445300Z PRIMARY(n=1) | +2023-03-12T12:48:43.293802Z |  starting(8.0.28) +2023-03-12T12:48:43.297858Z |  started(cluster) +2023-03-12T12:48:43.521685Z node3 joined | +2023-03-12T12:48:43.521846Z |  node2 joined +2023-03-12T12:48:43.526717Z PRIMARY(n=2) | +2023-03-12T12:48:43.820825Z |  CLOSED -> OPEN +2023-03-12T12:48:43.820929Z |  PRIMARY(n=2) +2023-03-12T12:48:43.822001Z |  OPEN -> PRIMARY +2023-03-12T12:48:44.597299Z |  will receive IST(seqno:170403905) +2023-03-12T12:48:44.599341Z SYNCED -> DONOR |  +2023-03-12T12:48:44.599377Z |  PRIMARY -> JOINER +2023-03-12T12:48:44.616436Z IST to node3(seqno:170403905) |  +2023-03-12T12:48:45.044873Z IST will be used |  +2023-03-12T12:48:46.064764Z finished sending IST to node3 |  +2023-03-12T12:48:46.064808Z DESYNCED -> JOINED |  +2023-03-12T12:48:46.065014Z | got IST from node2 +2023-03-12T12:48:46.065051Z JOINED -> SYNCED |  +2023-03-12T12:48:54.233973Z |  wsrep recovery +2023-03-12T12:48:54.269978Z |  IST received(seqno:170403905) +2023-03-12T12:48:54.272037Z |  JOINER -> JOINED +2023-03-12T12:48:54.272256Z |  JOINED -> SYNCED +2023-03-12T13:04:24.476576Z node3 joined |  +2023-03-12T13:04:24.476642Z node1 joined |  +2023-03-12T13:04:24.476806Z |  node1 joined +2023-03-12T13:04:24.476863Z |  node2 joined +2023-03-12T13:04:24.478964Z PRIMARY(n=3) |  +2023-03-12T13:04:24.479206Z |  PRIMARY(n=3) +2023-03-12T13:04:25.732132Z |  SYNCED -> DONOR +2023-03-12T13:04:25.735999Z |  IST to node1(seqno:170407335) +2023-03-12T13:04:37.415791Z |  SST to node1 +2023-03-12T13:04:38.645597Z node3 joined |  +2023-03-12T13:04:38.645710Z node1 left |  +2023-03-12T13:04:38.647921Z |  node2 joined +2023-03-12T13:04:38.647981Z |  node1 left +2023-03-12T13:04:38.650097Z |  node1 left +2023-03-12T13:04:38.650125Z |  PRIMARY(n=2) +2023-03-12T13:04:38.652812Z node1 left |  +2023-03-12T13:04:38.652875Z PRIMARY(n=2) |  +2023-03-12T13:04:39.715275Z |  SST error +2023-03-12T13:04:39.720325Z node3 failed to sync ??(node left) |  +2023-03-12T13:04:39.720379Z |  node3 failed to sync ??(node left) +2023-03-12T13:04:39.720388Z |  DESYNCED -> JOINED +2023-03-12T13:04:39.720600Z |  JOINED -> SYNCED +2023-03-12T13:12:02.676601Z received shutdown |  +2023-03-12T13:12:13.679070Z |  node2 left +2023-03-12T13:12:13.681813Z |  node2 left +2023-03-12T13:12:13.681867Z |  PRIMARY(n=1) +2023-03-12T13:12:13.682286Z NON-PRIMARY(n=1) |  +2023-03-12T13:12:13.682450Z SYNCED -> OPEN |  +2023-03-12T13:12:13.682565Z OPEN -> CLOSED |  +2023-03-12T13:12:22.957837Z shutdown complete |  +2023-03-12T13:13:11.498126Z starting(8.0.28) |  +2023-03-12T13:13:11.501941Z started(cluster) |  +2023-03-12T13:13:12.015863Z node3 joined |  +2023-03-12T13:13:12.015998Z | node2 joined +2023-03-12T13:13:12.020360Z | PRIMARY(n=2) +2023-03-12T13:13:12.515546Z CLOSED -> OPEN |  +2023-03-12T13:13:12.515641Z PRIMARY(n=2) |  +2023-03-12T13:13:12.516249Z OPEN -> PRIMARY |  +2023-03-12T13:13:13.245723Z will receive IST(seqno:170407338) |  +2023-03-12T13:13:13.247750Z PRIMARY -> JOINER |  +2023-03-12T13:13:13.248065Z |  SYNCED -> DONOR +2023-03-12T13:13:13.262238Z |  IST to node2(seqno:170407338) +2023-03-12T13:13:13.863959Z |  IST will be used +2023-03-12T13:13:14.886853Z got IST from node3 |  +2023-03-12T13:13:14.886942Z |  finished sending IST to node2 +2023-03-12T13:13:14.887000Z |  DESYNCED -> JOINED +2023-03-12T13:13:14.887249Z |  JOINED -> SYNCED +2023-03-12T13:13:19.031367Z wsrep recovery |  + +identifier node2 node3 +current path tests/logs/upgrade/node2.log tests/logs/upgrade/node3.log +last known ip 172.17.0.3 172.17.0.4 +last known name node2 node3 +mysql version 8.0.28 8.0.28 diff --git a/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all_until_hiding_2_nodes b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all_until_hiding_2_nodes new file mode 100644 index 00000000..18c1cedc --- /dev/null +++ b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_all_until_hiding_2_nodes @@ -0,0 +1,134 @@ +identifier node2 +current path tests/logs/upgrade/node2.log +last known ip 172.17.0.3 +last known name node2 +mysql version 8.0.28 + +2023-03-12T07:24:13.733958Z starting(5.7.40) +2023-03-12T07:24:13.771126Z started(cluster) +2023-03-12T07:24:14.289375Z node1 joined +2023-03-12T07:24:14.289412Z node3 joined +2023-03-12T07:24:14.789002Z CLOSED -> OPEN +2023-03-12T07:24:14.789075Z PRIMARY(n=3) +2023-03-12T07:24:14.789560Z (restored)OPEN -> JOINED +2023-03-12T07:24:14.789785Z JOINED -> SYNCED +2023-03-12T07:34:47.289292Z received shutdown +2023-03-12T07:34:57.286990Z node1 joined +2023-03-12T07:34:57.287111Z node3 left +2023-03-12T07:34:57.290903Z node3 left +2023-03-12T07:35:12.293578Z PRIMARY(n=2) +2023-03-12T07:35:12.293705Z NON-PRIMARY(n=1) +2023-03-12T07:35:12.293723Z SYNCED -> OPEN +2023-03-12T07:35:12.293760Z OPEN -> CLOSED +2023-03-12T07:35:18.533851Z shutdown complete +2023-03-12T07:38:06.673334Z starting(5.7.40) +2023-03-12T07:38:06.680025Z started(cluster) +2023-03-12T07:38:06.681065Z safe_to_bootstrap: 1 +2023-03-12T07:38:06.693619Z bootstrapping +2023-03-12T07:38:06.695987Z CLOSED -> OPEN +2023-03-12T07:38:06.696042Z PRIMARY(n=1) +2023-03-12T07:38:06.696187Z (restored)OPEN -> JOINED +2023-03-12T07:38:06.696210Z JOINED -> SYNCED +2023-03-12T07:39:27.162350Z node3 joined +2023-03-12T07:39:27.164824Z PRIMARY(n=2) +2023-03-12T07:43:09.063375Z node1 joined +2023-03-12T07:43:09.063430Z node3 joined +2023-03-12T07:43:09.065740Z PRIMARY(n=3) +2023-03-12T07:49:45.317891Z received shutdown +2023-03-12T07:49:55.319157Z NON-PRIMARY(n=1) +2023-03-12T07:49:55.319203Z SYNCED -> OPEN +2023-03-12T07:49:55.319230Z OPEN -> CLOSED +2023-03-12T07:50:00.605309Z shutdown complete +2023-03-12T08:46:48.943442Z starting(5.7.40) +2023-03-12T08:46:48.947933Z started(cluster) +2023-03-12T08:46:48.992365Z node1 joined +2023-03-12T08:46:49.463255Z CLOSED -> OPEN +2023-03-12T08:46:49.463334Z PRIMARY(n=2) +2023-03-12T08:46:49.463988Z (restored)OPEN -> JOINED +2023-03-12T08:46:49.464124Z JOINED -> SYNCED +2023-03-12T08:48:28.470198Z node1 left +2023-03-12T08:48:28.477643Z node1 left +2023-03-12T08:48:28.477680Z PRIMARY(n=1) +2023-03-12T08:49:41.706020Z node1 joined +2023-03-12T08:49:41.713788Z PRIMARY(n=2) +2023-03-12T09:41:30.759927Z received shutdown +2023-03-12T09:41:41.775338Z NON-PRIMARY(n=1) +2023-03-12T09:41:41.775413Z SYNCED -> OPEN +2023-03-12T09:41:41.775442Z OPEN -> CLOSED +2023-03-12T09:41:48.745926Z shutdown complete + 5.7.40 + (version) +  V  + 8.0.28 +2023-03-12T09:55:30.928545Z starting(8.0.28) +2023-03-12T09:59:01.655066Z started(standalone) +2023-03-12T10:01:10.488475Z shutdown complete +2023-03-12T10:03:03.136053Z starting(8.0.28) +2023-03-12T10:03:03.139798Z started(cluster) +2023-03-12T10:03:03.157578Z not safe to bootstrap +2023-03-12T10:03:03.157601Z ABORTING +2023-03-12T10:03:03.157774Z shutdown complete +2023-03-12T10:03:03.163682Z CLOSED -> DESTROYED +2023-03-12T10:04:12.603100Z starting(8.0.28) +2023-03-12T10:04:12.608219Z started(cluster) +2023-03-12T10:04:12.609639Z safe_to_bootstrap: 1 +2023-03-12T10:04:12.623957Z bootstrapping +2023-03-12T10:04:12.628369Z CLOSED -> OPEN +2023-03-12T10:04:12.628477Z PRIMARY(n=1) +2023-03-12T10:04:12.628792Z (restored)OPEN -> JOINED +2023-03-12T10:04:12.628833Z JOINED -> SYNCED +2023-03-12T11:23:46.950430Z received shutdown +2023-03-12T11:23:56.953018Z SYNCED -> CLOSED +2023-03-12T11:24:03.294073Z shutdown complete +2023-03-12T11:24:33.315663Z starting(8.0.28) +2023-03-12T11:24:33.319800Z started(cluster) +2023-03-12T11:24:33.320989Z safe_to_bootstrap: 1 +2023-03-12T11:24:33.332251Z bootstrapping +2023-03-12T11:24:33.334384Z CLOSED -> OPEN +2023-03-12T11:24:33.334467Z PRIMARY(n=1) +2023-03-12T11:24:33.334699Z (restored)OPEN -> JOINED +2023-03-12T11:24:33.334761Z JOINED -> SYNCED +2023-03-12T11:35:14.693312Z node3 joined +2023-03-12T11:35:14.695410Z PRIMARY(n=2) +2023-03-12T11:35:16.321642Z SYNCED -> DONOR +2023-03-12T11:35:16.342707Z IST to node3(seqno:170403898) +2023-03-12T11:35:17.118100Z IST will be used +2023-03-12T11:35:18.140723Z finished sending IST to node3 +2023-03-12T11:35:18.140768Z DESYNCED -> JOINED +2023-03-12T11:35:18.141016Z JOINED -> SYNCED +2023-03-12T11:35:21.030164Z node3 left +2023-03-12T11:35:21.035732Z node3 left +2023-03-12T11:35:21.035794Z PRIMARY(n=1) +2023-03-12T11:39:20.681083Z node3 joined +2023-03-12T11:39:20.683800Z PRIMARY(n=2) +2023-03-12T11:39:21.948554Z SYNCED -> DONOR +2023-03-12T11:39:21.952242Z IST to node3(seqno:170403900) +2023-03-12T11:39:33.420743Z SST to node3 +2023-03-12T11:39:38.705565Z node3 left +2023-03-12T11:39:38.707686Z node3 left +2023-03-12T11:39:38.707695Z PRIMARY(n=1) +2023-03-12T11:39:38.734654Z SST error +2023-03-12T11:39:38.738833Z node2 failed to sync ??(node left) +2023-03-12T11:39:38.738842Z DESYNCED -> JOINED +2023-03-12T11:39:38.738942Z JOINED -> SYNCED +2023-03-12T12:22:48.704897Z received shutdown +2023-03-12T12:22:58.706338Z SYNCED -> CLOSED +2023-03-12T12:23:04.677082Z shutdown complete +2023-03-12T12:24:36.270274Z starting(8.0.28) +2023-03-12T12:24:36.274315Z started(cluster) +2023-03-12T12:24:36.275472Z safe_to_bootstrap: 1 +2023-03-12T12:24:36.287220Z bootstrapping +2023-03-12T12:24:36.290286Z CLOSED -> OPEN +2023-03-12T12:24:36.290365Z PRIMARY(n=1) +2023-03-12T12:24:36.290625Z (restored)OPEN -> JOINED +2023-03-12T12:24:36.290667Z JOINED -> SYNCED +2023-03-12T12:29:49.319032Z node1 joined +2023-03-12T12:29:49.323505Z PRIMARY(n=2) +2023-03-12T12:29:51.443525Z node1 left +2023-03-12T12:29:51.445280Z node1 left + +identifier node2 +current path tests/logs/upgrade/node2.log +last known ip 172.17.0.3 +last known name node2 +mysql version 8.0.28 diff --git a/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_events b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_events new file mode 100644 index 00000000..ad9879d7 --- /dev/null +++ b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_events @@ -0,0 +1,59 @@ +identifier 172.17.0.2 node2 node3 +current path tests/logs/upgrade/node1.log tests/logs/upgrade/node2.log tests/logs/upgrade/node3.log +last known ip 172.17.0.2 172.17.0.3 172.17.0.4 +last known name node2 node3 +mysql version 8.0.28 8.0.28 8.0.28 + +2023-03-12T07:24:13.733958Z | starting(5.7.40) | +2023-03-12T07:24:13.771126Z | started(cluster) | +2023-03-12T07:34:47.289292Z | received shutdown | +2023-03-12T07:35:18.533851Z | shutdown complete | +2023-03-12T07:38:06.673334Z | starting(5.7.40) | +2023-03-12T07:38:06.680025Z | started(cluster) | +2023-03-12T07:49:45.317891Z | received shutdown | +2023-03-12T07:50:00.605309Z | shutdown complete | +2023-03-12T08:46:48.943442Z | starting(5.7.40) | +2023-03-12T08:46:48.947933Z | started(cluster) | +2023-03-12T09:41:30.759927Z | received shutdown | +2023-03-12T09:41:48.745926Z | shutdown complete | + 5.7.40 + (version) +  V  + 8.0.28 +2023-03-12T09:55:30.928545Z | starting(8.0.28) | +2023-03-12T09:59:01.655066Z | started(standalone) | +2023-03-12T10:01:10.488475Z | shutdown complete | +2023-03-12T10:03:03.136053Z | starting(8.0.28) | +2023-03-12T10:03:03.139798Z | started(cluster) | +2023-03-12T10:03:03.157601Z | ABORTING | +2023-03-12T10:03:03.157774Z | shutdown complete | +2023-03-12T10:04:12.603100Z | starting(8.0.28) | +2023-03-12T10:04:12.608219Z | started(cluster) | +2023-03-12T11:23:46.950430Z | received shutdown | +2023-03-12T11:24:03.294073Z | shutdown complete | +2023-03-12T11:24:33.315663Z | starting(8.0.28) | +2023-03-12T11:24:33.319800Z | started(cluster) | +2023-03-12T12:22:48.704897Z | received shutdown | +2023-03-12T12:23:04.677082Z | shutdown complete | +2023-03-12T12:24:36.270274Z | starting(8.0.28) | +2023-03-12T12:24:36.274315Z | started(cluster) | +2023-03-12T12:48:43.293802Z | |  starting(8.0.28) +2023-03-12T12:48:43.297858Z | |  started(cluster) +2023-03-12T12:48:54.233973Z | |  wsrep recovery +2023-03-12T13:12:02.676601Z | received shutdown |  +2023-03-12T13:12:22.957837Z | shutdown complete |  +2023-03-12T13:13:11.498126Z | starting(8.0.28) |  +2023-03-12T13:13:11.501941Z | started(cluster) |  +2023-03-12T13:13:19.031367Z | wsrep recovery |  +2023-03-12T19:35:05.840743Z starting(8.0.28) |  |  +2023-03-12T19:35:05.848542Z started(cluster) |  |  +2023-03-12T19:36:48.590632Z terminated |  |  + wsrep recovery |  |  +2023-03-12T19:41:28.493046Z starting(8.0.28) |  |  +2023-03-12T19:41:28.500789Z started(cluster) |  |  +2023-03-12T19:44:59.841515Z terminated |  |  +2023-03-12T21:55:48.916323Z |  received shutdown |  +2023-03-12T21:56:17.004067Z |  shutdown complete |  +2023-03-12T21:58:39.513891Z |  starting(8.0.28) |  +2023-03-12T21:58:39.523542Z |  started(cluster) |  +2023-03-12T22:00:27.237470Z |  terminated |  diff --git a/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_sst b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_sst new file mode 100644 index 00000000..122fb03a --- /dev/null +++ b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_sst @@ -0,0 +1,72 @@ +identifier 172.17.0.2 node2 node3 +current path tests/logs/upgrade/node1.log tests/logs/upgrade/node2.log tests/logs/upgrade/node3.log +last known ip 172.17.0.2 172.17.0.3 172.17.0.4 +last known name node2 node3 +mysql version 8.0.28 8.0.28 8.0.28 + + 5.7.40 + (version) +  V  + 8.0.28 +2023-03-12T11:35:16.342707Z | IST to node3(seqno:170403898) | +2023-03-12T11:35:17.118100Z | IST will be used | +2023-03-12T11:35:18.140723Z | finished sending IST to node3 | +2023-03-12T11:39:21.952242Z | IST to node3(seqno:170403900) | +2023-03-12T11:39:33.420743Z | SST to node3 | +2023-03-12T11:39:38.734654Z | SST error | +2023-03-12T11:39:38.738833Z | node2 failed to sync ??(node left) | +2023-03-12T12:48:44.597299Z | |  will receive IST(seqno:170403905) +2023-03-12T12:48:44.616436Z | IST to node3(seqno:170403905) |  +2023-03-12T12:48:45.044873Z | IST will be used |  +2023-03-12T12:48:46.064764Z | finished sending IST to node3 |  +2023-03-12T12:48:46.065014Z | | got IST from node2 +2023-03-12T12:48:54.269978Z | |  IST received(seqno:170403905) +2023-03-12T13:04:25.735999Z | |  IST to node1(seqno:170407335) +2023-03-12T13:04:37.415791Z | |  SST to node1 +2023-03-12T13:04:39.715275Z | |  SST error +2023-03-12T13:04:39.720325Z | node3 failed to sync ??(node left) |  +2023-03-12T13:04:39.720379Z | |  node3 failed to sync ??(node left) +2023-03-12T13:13:13.245723Z | will receive IST(seqno:170407338) |  +2023-03-12T13:13:13.262238Z | |  IST to node2(seqno:170407338) +2023-03-12T13:13:13.863959Z | |  IST will be used +2023-03-12T13:13:14.886853Z | got IST from node3 |  +2023-03-12T13:13:14.886942Z | |  finished sending IST to node2 +2023-03-12T13:13:19.156722Z | IST received(seqno:170407338) |  +2023-03-12T19:35:07.638676Z will receive IST(seqno:178226774) |  |  +2023-03-12T19:36:48.567087Z timeout from donor in gtid/keyring stage |  |  +2023-03-12T19:36:48.589084Z SST error |  |  +2023-03-12T19:36:48.590647Z former SST cancelled |  |  +2023-03-12T19:43:18.904410Z will receive IST(seqno:178226792) |  |  +2023-03-12T19:43:18.913328Z |  |  node1 cannot find donor +2023-03-12T19:43:18.913429Z node1 cannot find donor |  |  +2023-03-12T19:43:18.913565Z |  node1 cannot find donor |  +2023-03-12T19:43:19.914122Z |  |  node1 cannot find donor +2023-03-12T19:43:19.914259Z node1 cannot find donor |  |  +2023-03-12T19:43:19.914362Z |  node1 cannot find donor |  +2023-03-12T19:43:20.914957Z |  |  (repeated x97)node1 cannot find donor +2023-03-12T19:43:20.915143Z (repeated x97)node1 cannot find donor |  |  +2023-03-12T19:43:20.915262Z |  (repeated x97)node1 cannot find donor |  +2023-03-12T19:44:58.999603Z |  |  node1 cannot find donor +2023-03-12T19:44:58.999791Z node1 cannot find donor |  |  +2023-03-12T19:44:58.999891Z |  node1 cannot find donor |  +2023-03-12T19:44:59.817822Z timeout from donor in gtid/keyring stage |  |  +2023-03-12T19:44:59.839692Z SST error |  |  +2023-03-12T19:44:59.841529Z former SST cancelled |  |  +2023-03-12T21:58:46.155159Z |  will receive IST(seqno:178226798) |  +2023-03-12T21:58:46.160014Z |  cannot find donor |  +2023-03-12T21:58:46.160016Z |  |  node2 cannot find donor +2023-03-12T21:58:47.160736Z |  |  node2 cannot find donor +2023-03-12T21:58:47.160758Z |  cannot find donor |  +2023-03-12T21:58:48.161511Z |  |  (repeated x97)node2 cannot find donor +2023-03-12T21:58:48.161544Z |  (repeated x97)cannot find donor |  +2023-03-12T22:00:26.237092Z |  |  node2 cannot find donor +2023-03-12T22:00:26.237093Z |  cannot find donor |  +2023-03-12T22:00:27.067645Z |  timeout from donor in gtid/keyring stage |  +2023-03-12T22:00:27.089809Z |  SST error |  +2023-03-12T22:00:27.237486Z |  former SST cancelled |  + +identifier 172.17.0.2 node2 node3 +current path tests/logs/upgrade/node1.log tests/logs/upgrade/node2.log tests/logs/upgrade/node3.log +last known ip 172.17.0.2 172.17.0.3 172.17.0.4 +last known name node2 node3 +mysql version 8.0.28 8.0.28 8.0.28 diff --git a/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_states b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_states new file mode 100644 index 00000000..f152ea4a --- /dev/null +++ b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_states @@ -0,0 +1,84 @@ +identifier 172.17.0.2 node2 node3 +current path tests/logs/upgrade/node1.log tests/logs/upgrade/node2.log tests/logs/upgrade/node3.log +last known ip 172.17.0.2 172.17.0.3 172.17.0.4 +last known name node2 node3 +mysql version 8.0.28 8.0.28 8.0.28 + +2023-03-12T07:24:14.789002Z | CLOSED -> OPEN | +2023-03-12T07:24:14.789560Z | (restored)OPEN -> JOINED | +2023-03-12T07:24:14.789785Z | JOINED -> SYNCED | +2023-03-12T07:35:12.293723Z | SYNCED -> OPEN | +2023-03-12T07:35:12.293760Z | OPEN -> CLOSED | +2023-03-12T07:38:06.695987Z | CLOSED -> OPEN | +2023-03-12T07:38:06.696187Z | (restored)OPEN -> JOINED | +2023-03-12T07:38:06.696210Z | JOINED -> SYNCED | +2023-03-12T07:49:55.319203Z | SYNCED -> OPEN | +2023-03-12T07:49:55.319230Z | OPEN -> CLOSED | +2023-03-12T08:46:49.463255Z | CLOSED -> OPEN | +2023-03-12T08:46:49.463988Z | (restored)OPEN -> JOINED | +2023-03-12T08:46:49.464124Z | JOINED -> SYNCED | +2023-03-12T09:41:41.775413Z | SYNCED -> OPEN | +2023-03-12T09:41:41.775442Z | OPEN -> CLOSED | + 5.7.40 + (version) +  V  + 8.0.28 +2023-03-12T10:03:03.163682Z | CLOSED -> DESTROYED | +2023-03-12T10:04:12.628369Z | CLOSED -> OPEN | +2023-03-12T10:04:12.628792Z | (restored)OPEN -> JOINED | +2023-03-12T10:04:12.628833Z | JOINED -> SYNCED | +2023-03-12T11:23:56.953018Z | SYNCED -> CLOSED | +2023-03-12T11:24:33.334384Z | CLOSED -> OPEN | +2023-03-12T11:24:33.334699Z | (restored)OPEN -> JOINED | +2023-03-12T11:24:33.334761Z | JOINED -> SYNCED | +2023-03-12T11:35:16.321642Z | SYNCED -> DONOR | +2023-03-12T11:35:18.140768Z | DESYNCED -> JOINED | +2023-03-12T11:35:18.141016Z | JOINED -> SYNCED | +2023-03-12T11:39:21.948554Z | SYNCED -> DONOR | +2023-03-12T11:39:38.738842Z | DESYNCED -> JOINED | +2023-03-12T11:39:38.738942Z | JOINED -> SYNCED | +2023-03-12T12:22:58.706338Z | SYNCED -> CLOSED | +2023-03-12T12:24:36.290286Z | CLOSED -> OPEN | +2023-03-12T12:24:36.290625Z | (restored)OPEN -> JOINED | +2023-03-12T12:24:36.290667Z | JOINED -> SYNCED | +2023-03-12T12:48:43.820825Z | |  CLOSED -> OPEN +2023-03-12T12:48:43.822001Z | |  OPEN -> PRIMARY +2023-03-12T12:48:44.599341Z | SYNCED -> DONOR | +2023-03-12T12:48:44.599377Z | |  PRIMARY -> JOINER +2023-03-12T12:48:46.064808Z | DESYNCED -> JOINED |  +2023-03-12T12:48:46.065051Z | JOINED -> SYNCED |  +2023-03-12T12:48:54.272037Z | |  JOINER -> JOINED +2023-03-12T12:48:54.272256Z | |  JOINED -> SYNCED +2023-03-12T13:04:25.732132Z | |  SYNCED -> DONOR +2023-03-12T13:04:39.720388Z | |  DESYNCED -> JOINED +2023-03-12T13:04:39.720600Z | |  JOINED -> SYNCED +2023-03-12T13:12:13.682450Z | SYNCED -> OPEN |  +2023-03-12T13:12:13.682565Z | OPEN -> CLOSED |  +2023-03-12T13:13:12.515546Z | CLOSED -> OPEN |  +2023-03-12T13:13:12.516249Z | OPEN -> PRIMARY |  +2023-03-12T13:13:13.247750Z | PRIMARY -> JOINER |  +2023-03-12T13:13:13.248065Z | |  SYNCED -> DONOR +2023-03-12T13:13:14.887000Z | |  DESYNCED -> JOINED +2023-03-12T13:13:14.887249Z | |  JOINED -> SYNCED +2023-03-12T13:13:19.158840Z | JOINER -> JOINED |  +2023-03-12T13:13:19.159057Z | JOINED -> SYNCED |  +2023-03-12T19:35:06.875619Z CLOSED -> OPEN |  |  +2023-03-12T19:35:06.876501Z OPEN -> PRIMARY |  |  +2023-03-12T19:35:07.644570Z | |  SYNCED -> DONOR +2023-03-12T19:35:07.644683Z PRIMARY -> JOINER |  |  +2023-03-12T19:36:48.590443Z JOINER -> OPEN |  |  +2023-03-12T19:36:48.590514Z OPEN -> CLOSED |  |  +2023-03-12T19:43:18.130088Z CLOSED -> OPEN |  |  +2023-03-12T19:43:18.130916Z OPEN -> PRIMARY |  |  +2023-03-12T19:44:59.841292Z PRIMARY -> OPEN |  |  +2023-03-12T19:44:59.841352Z OPEN -> CLOSED |  |  +2023-03-12T21:55:59.925682Z |  SYNCED -> OPEN |  +2023-03-12T21:55:59.925725Z |  OPEN -> CLOSED |  +2023-03-12T21:58:45.384740Z |  CLOSED -> OPEN |  +2023-03-12T21:58:45.385505Z |  OPEN -> PRIMARY |  + +identifier 172.17.0.2 node2 node3 +current path tests/logs/upgrade/node1.log tests/logs/upgrade/node2.log tests/logs/upgrade/node3.log +last known ip 172.17.0.2 172.17.0.3 172.17.0.4 +last known name node2 node3 +mysql version 8.0.28 8.0.28 8.0.28 diff --git a/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_views b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_views new file mode 100644 index 00000000..ef3a976c --- /dev/null +++ b/src/go/pt-galera-log-explainer/tests/expected/upgrade_list_views @@ -0,0 +1,139 @@ +identifier 172.17.0.2 node2 node3 +current path tests/logs/upgrade/node1.log tests/logs/upgrade/node2.log tests/logs/upgrade/node3.log +last known ip 172.17.0.2 172.17.0.3 172.17.0.4 +last known name node2 node3 +mysql version 8.0.28 8.0.28 8.0.28 + +2023-03-12T07:24:14.289375Z | node1 joined | +2023-03-12T07:24:14.289412Z | node3 joined | +2023-03-12T07:24:14.789075Z | PRIMARY(n=3) | +2023-03-12T07:34:57.286990Z | node1 joined | +2023-03-12T07:34:57.287111Z | node3 left | +2023-03-12T07:34:57.290903Z | node3 left | +2023-03-12T07:35:12.293578Z | PRIMARY(n=2) | +2023-03-12T07:35:12.293705Z | NON-PRIMARY(n=1) | +2023-03-12T07:38:06.681065Z | safe_to_bootstrap: 1 | +2023-03-12T07:38:06.693619Z | bootstrapping | +2023-03-12T07:38:06.696042Z | PRIMARY(n=1) | +2023-03-12T07:39:27.162350Z | node3 joined | +2023-03-12T07:39:27.164824Z | PRIMARY(n=2) | +2023-03-12T07:43:09.063375Z | node1 joined | +2023-03-12T07:43:09.063430Z | node3 joined | +2023-03-12T07:43:09.065740Z | PRIMARY(n=3) | +2023-03-12T07:49:55.319157Z | NON-PRIMARY(n=1) | +2023-03-12T08:46:48.992365Z | node1 joined | +2023-03-12T08:46:49.463334Z | PRIMARY(n=2) | +2023-03-12T08:48:28.470198Z | node1 left | +2023-03-12T08:48:28.477643Z | node1 left | +2023-03-12T08:48:28.477680Z | PRIMARY(n=1) | +2023-03-12T08:49:41.706020Z | node1 joined | +2023-03-12T08:49:41.713788Z | PRIMARY(n=2) | +2023-03-12T09:41:41.775338Z | NON-PRIMARY(n=1) | + 5.7.40 + (version) +  V  + 8.0.28 +2023-03-12T10:03:03.157578Z | not safe to bootstrap | +2023-03-12T10:04:12.609639Z | safe_to_bootstrap: 1 | +2023-03-12T10:04:12.623957Z | bootstrapping | +2023-03-12T10:04:12.628477Z | PRIMARY(n=1) | +2023-03-12T11:24:33.320989Z | safe_to_bootstrap: 1 | +2023-03-12T11:24:33.332251Z | bootstrapping | +2023-03-12T11:24:33.334467Z | PRIMARY(n=1) | +2023-03-12T11:35:14.693312Z | node3 joined | +2023-03-12T11:35:14.695410Z | PRIMARY(n=2) | +2023-03-12T11:35:21.030164Z | node3 left | +2023-03-12T11:35:21.035732Z | node3 left | +2023-03-12T11:35:21.035794Z | PRIMARY(n=1) | +2023-03-12T11:39:20.681083Z | node3 joined | +2023-03-12T11:39:20.683800Z | PRIMARY(n=2) | +2023-03-12T11:39:38.705565Z | node3 left | +2023-03-12T11:39:38.707686Z | node3 left | +2023-03-12T11:39:38.707695Z | PRIMARY(n=1) | +2023-03-12T12:24:36.275472Z | safe_to_bootstrap: 1 | +2023-03-12T12:24:36.287220Z | bootstrapping | +2023-03-12T12:24:36.290365Z | PRIMARY(n=1) | +2023-03-12T12:29:49.319032Z | node1 joined | +2023-03-12T12:29:49.323505Z | PRIMARY(n=2) | +2023-03-12T12:29:51.443525Z | node1 left | +2023-03-12T12:29:51.445280Z | node1 left | +2023-03-12T12:29:51.445300Z | PRIMARY(n=1) | +2023-03-12T12:48:43.521685Z | node3 joined | +2023-03-12T12:48:43.521846Z | |  node2 joined +2023-03-12T12:48:43.526717Z | PRIMARY(n=2) | +2023-03-12T12:48:43.820929Z | |  PRIMARY(n=2) +2023-03-12T13:04:24.476576Z | node3 joined |  +2023-03-12T13:04:24.476642Z | node1 joined |  +2023-03-12T13:04:24.476806Z | |  node1 joined +2023-03-12T13:04:24.476863Z | |  node2 joined +2023-03-12T13:04:24.478964Z | PRIMARY(n=3) |  +2023-03-12T13:04:24.479206Z | |  PRIMARY(n=3) +2023-03-12T13:04:38.645597Z | node3 joined |  +2023-03-12T13:04:38.645710Z | node1 left |  +2023-03-12T13:04:38.647921Z | |  node2 joined +2023-03-12T13:04:38.647981Z | |  node1 left +2023-03-12T13:04:38.650097Z | |  node1 left +2023-03-12T13:04:38.650125Z | |  PRIMARY(n=2) +2023-03-12T13:04:38.652812Z | node1 left |  +2023-03-12T13:04:38.652875Z | PRIMARY(n=2) |  +2023-03-12T13:12:13.679070Z | |  node2 left +2023-03-12T13:12:13.681813Z | |  node2 left +2023-03-12T13:12:13.681867Z | |  PRIMARY(n=1) +2023-03-12T13:12:13.682286Z | NON-PRIMARY(n=1) |  +2023-03-12T13:13:12.015863Z | node3 joined |  +2023-03-12T13:13:12.015998Z | | node2 joined +2023-03-12T13:13:12.020360Z | | PRIMARY(n=2) +2023-03-12T13:13:12.515641Z | PRIMARY(n=2) |  +2023-03-12T19:35:06.375917Z | |  node2 joined +2023-03-12T19:35:06.375974Z | |  node1 joined +2023-03-12T19:35:06.376012Z node3 joined |  |  +2023-03-12T19:35:06.376016Z | node3 joined |  +2023-03-12T19:35:06.376026Z node2 joined |  |  +2023-03-12T19:35:06.376081Z | node1 joined |  +2023-03-12T19:35:06.383186Z | PRIMARY(n=3) |  +2023-03-12T19:35:06.385445Z | |  PRIMARY(n=3) +2023-03-12T19:35:06.875717Z PRIMARY(n=3) |  |  +2023-03-12T19:36:48.590054Z |  |  node2 joined +2023-03-12T19:36:48.590121Z |  |  node1 left +2023-03-12T19:36:48.590280Z |  node3 joined |  +2023-03-12T19:36:48.590338Z NON-PRIMARY(n=1) |  |  +2023-03-12T19:36:48.590388Z |  node1 left |  +2023-03-12T19:36:48.597786Z |  |  node1 left +2023-03-12T19:36:48.597826Z |  |  PRIMARY(n=2) +2023-03-12T19:36:48.604279Z |  node1 left |  +2023-03-12T19:36:48.604341Z |  PRIMARY(n=2) |  +2023-03-12T19:43:17.630191Z | node3 joined |  +2023-03-12T19:43:17.630208Z node3 joined |  |  +2023-03-12T19:43:17.630221Z node2 joined |  |  +2023-03-12T19:43:17.630243Z | node1 joined |  +2023-03-12T19:43:17.634138Z | |  node2 joined +2023-03-12T19:43:17.634229Z | |  node1 joined +2023-03-12T19:43:17.643210Z | PRIMARY(n=3) |  +2023-03-12T19:43:17.648163Z | |  PRIMARY(n=3) +2023-03-12T19:43:18.130230Z PRIMARY(n=3) |  |  +2023-03-12T19:44:59.840669Z | |  node2 joined +2023-03-12T19:44:59.840745Z | |  node1 left +2023-03-12T19:44:59.840933Z | node3 joined |  +2023-03-12T19:44:59.841034Z | node1 left |  +2023-03-12T19:44:59.841189Z NON-PRIMARY(n=1) |  |  +2023-03-12T19:44:59.848349Z |  |  node1 left +2023-03-12T19:44:59.848409Z |  |  PRIMARY(n=2) +2023-03-12T19:44:59.855443Z |  node1 left |  +2023-03-12T19:44:59.855491Z |  PRIMARY(n=2) |  +2023-03-12T21:55:59.918448Z |  |  node2 left +2023-03-12T21:55:59.924796Z |  |  node2 left +2023-03-12T21:55:59.924897Z |  |  PRIMARY(n=1) +2023-03-12T21:55:59.925551Z |  NON-PRIMARY(n=1) |  +2023-03-12T21:58:44.885014Z |  | node2 joined +2023-03-12T21:58:44.885179Z |  node3 joined |  +2023-03-12T21:58:44.887985Z |  | PRIMARY(n=2) +2023-03-12T21:58:45.384861Z |  PRIMARY(n=2) |  +2023-03-12T22:00:28.090598Z |  |  node2 left +2023-03-12T22:00:28.094664Z |  |  node2 left +2023-03-12T22:00:28.094708Z |  |  PRIMARY(n=1) + +identifier 172.17.0.2 node2 node3 +current path tests/logs/upgrade/node1.log tests/logs/upgrade/node2.log tests/logs/upgrade/node3.log +last known ip 172.17.0.2 172.17.0.3 172.17.0.4 +last known name node2 node3 +mysql version 8.0.28 8.0.28 8.0.28 diff --git a/src/go/pt-galera-log-explainer/tests/logs/upgrade/node1.log b/src/go/pt-galera-log-explainer/tests/logs/upgrade/node1.log new file mode 100644 index 00000000..8b35e9ee --- /dev/null +++ b/src/go/pt-galera-log-explainer/tests/logs/upgrade/node1.log @@ -0,0 +1,579 @@ +2023-03-12T19:35:05.838493Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead. +2023-03-12T19:35:05.838511Z 0 [Warning] [MY-011069] [Server] The syntax '--master-info-repository' is deprecated and will be removed in a future release. +2023-03-12T19:35:05.838518Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T19:35:05.838549Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T19:35:05.838559Z 0 [Warning] [MY-011068] [Server] The syntax 'log_slave_updates' is deprecated and will be removed in a future release. Please use log_replica_updates instead. +2023-03-12T19:35:05.838567Z 0 [Warning] [MY-011068] [Server] The syntax 'skip_slave_start' is deprecated and will be removed in a future release. Please use skip_replica_start instead. +2023-03-12T19:35:05.838584Z 0 [Warning] [MY-011068] [Server] The syntax 'wsrep_slave_threads' is deprecated and will be removed in a future release. Please use wsrep_applier_threads instead. +2023-03-12T19:35:05.840728Z 0 [Note] [MY-010949] [Server] Basedir set to /usr/. +2023-03-12T19:35:05.840743Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.28-19.1) starting as process 2070978 +2023-03-12T19:35:05.841616Z 0 [Warning] [MY-013242] [Server] --character-set-server: 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous. +2023-03-12T19:35:05.841622Z 0 [Warning] [MY-013244] [Server] --collation-server: 'utf8_general_ci' is a collation of the deprecated character set UTF8MB3. Please consider using UTF8MB4 with an appropriate collation instead. +2023-03-12T19:35:05.846622Z 0 [Note] [MY-010182] [Server] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +2023-03-12T19:35:05.846740Z 0 [Note] [MY-010304] [Server] Skipping generation of SSL certificates as certificate files are present in data directory. +2023-03-12T19:35:05.848442Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. +2023-03-12T19:35:05.848473Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. +2023-03-12T19:35:05.848484Z 0 [Note] [MY-000000] [WSREP] New joining cluster node configured to use specified SSL artifacts +2023-03-12T19:35:05.848525Z 0 [Note] [MY-000000] [Galera] Loading provider /usr/lib64/libgalera_smm.so initial position: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T19:35:05.848542Z 0 [Note] [MY-000000] [Galera] wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so' +2023-03-12T19:35:05.851530Z 0 [Note] [MY-000000] [Galera] wsrep_load(): Galera 4.11(a9008fc) by Codership Oy (modified by Percona ) loaded successfully. +2023-03-12T19:35:05.851570Z 0 [Note] [MY-000000] [Galera] CRC-32C: using 64-bit x86 acceleration. +2023-03-12T19:35:05.852131Z 0 [Note] [MY-000000] [Galera] Found saved state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896, safe_to_bootstrap: 0 +2023-03-12T19:35:05.853307Z 0 [Note] [MY-000000] [Galera] GCache DEBUG: opened preamble: +Version: 0 +UUID: 00000000-0000-0000-0000-000000000000 +Seqno: -1 - -1 +Offset: -1 +Synced: 0 +2023-03-12T19:35:05.853332Z 0 [Note] [MY-000000] [Galera] Skipped GCache ring buffer recovery: could not determine history UUID. +2023-03-12T19:35:05.859104Z 0 [Warning] [MY-000000] [Galera] Option 'gcs.fc_master_slave' is deprecated and will be removed in the future versions, please use 'gcs.fc_single_primary' instead. +2023-03-12T19:35:05.859705Z 0 [Note] [MY-000000] [Galera] Passing config to GCS: base_dir = /var/lib/mysql; base_host = 172.17.0.2; base_port = 4567; cert.log_conflicts = no; cert.optimistic_pa = no; debug = no; evs.auto_evict = 0; evs.delay_margin = PT1S; evs.delayed_keep_period = PT30S; evs.inactive_check_period = PT0.5S; evs.inactive_timeout = PT15S; evs.join_retrans_period = PT1S; evs.max_install_timeouts = 3; evs.send_window = 10; evs.stats_report_period = PT1M; evs.suspect_timeout = PT5S; evs.user_send_window = 4; evs.view_forget_timeout = PT24H; gcache.dir = /var/lib/mysql; gcache.freeze_purge_at_seqno = -1; gcache.keep_pages_count = 0; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = galera.cache; gcache.page_size = 128M; gcache.recover = yes; gcache.size = 50G; gcomm.thread_prio = ; gcs.fc_debug = 0; gcs.fc_factor = 1.0; gcs.fc_limit = 100; gcs.fc_master_slave = no; gcs.fc_single_primary = no; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = no; gmcast.segment = 0; gmcast.version = 0; pc.announce_timeout = PT3S; pc.checksum = false; pc.ignore_quorum = false; pc.ignore_sb = false; pc.npvo = false; pc.recovery = true; pc.version = 0; pc.wait_prim = true; pc.wait_prim_timeout = PT30S; pc.weight = 1; protonet.backend = asio; protonet.version = 0; repl.causal_read_timeout = PT30S; repl.commit_order = 3; repl.key_format = FLAT8; repl.max_ws_size = 2147483647; repl.proto_max = 10; socket.checksum = 2; socket.recv_buf_size = auto; socket.send_buf_size = auto; socket.ssl = YES; socket.ssl_ca = ca.pem; socket.ssl_cert = server-cert.pem; socket.ssl_cipher = ; socket.ssl_compression = YES; socket.ssl_key = server-key.pem; socket.ssl_reload = 1; +2023-03-12T19:35:05.871746Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T19:35:05.871808Z 0 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896, protocol version: -1 +2023-03-12T19:35:05.871835Z 0 [Note] [MY-000000] [Galera] GCache history reset: 00000000-0000-0000-0000-000000000000:0 -> 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T19:35:05.873848Z 0 [Note] [MY-000000] [WSREP] Starting replication +2023-03-12T19:35:05.873867Z 0 [Note] [MY-000000] [Galera] Connecting with bootstrap option: 0 +2023-03-12T19:35:05.873881Z 0 [Note] [MY-000000] [Galera] Setting GCS initial position to 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T19:35:05.873923Z 0 [Note] [MY-000000] [Galera] protonet asio version 0 +2023-03-12T19:35:05.874250Z 0 [Note] [MY-000000] [Galera] Using CRC-32C for message checksums. +2023-03-12T19:35:05.874274Z 0 [Note] [MY-000000] [Galera] backend: asio +2023-03-12T19:35:05.874373Z 0 [Note] [MY-000000] [Galera] gcomm thread scheduling priority set to other:0 +2023-03-12T19:35:05.874454Z 0 [Warning] [MY-000000] [Galera] Fail to access the file (/var/lib/mysql/gvwstate.dat) error (No such file or directory). It is possible if node is booting for first time or re-booting after a graceful shutdown +2023-03-12T19:35:05.874468Z 0 [Note] [MY-000000] [Galera] Restoring primary-component from disk failed. Either node is booting for first time or re-booting after a graceful shutdown +2023-03-12T19:35:05.874589Z 0 [Note] [MY-000000] [Galera] GMCast version 0 +2023-03-12T19:35:05.874692Z 0 [Note] [MY-000000] [Galera] (ca2c2a5f-a82a, 'ssl://0.0.0.0:4567') listening at ssl://0.0.0.0:4567 +2023-03-12T19:35:05.874702Z 0 [Note] [MY-000000] [Galera] (ca2c2a5f-a82a, 'ssl://0.0.0.0:4567') multicast: , ttl: 1 +2023-03-12T19:35:05.874881Z 0 [Note] [MY-000000] [Galera] EVS version 1 +2023-03-12T19:35:05.874938Z 0 [Note] [MY-000000] [Galera] gcomm: connecting to group 'pxc_cluster', peer '172.17.0.2:,172.17.0.3:,172.17.0.4:' +2023-03-12T19:35:05.878714Z 0 [Note] [MY-000000] [Galera] (ca2c2a5f-a82a, 'ssl://0.0.0.0:4567') Found matching local endpoint for a connection, blacklisting address ssl://172.17.0.2:4567 +2023-03-12T19:35:05.881164Z 0 [Note] [MY-000000] [Galera] (ca2c2a5f-a82a, 'ssl://0.0.0.0:4567') connection established to 7026494c-a649 ssl://172.17.0.3:4567 +2023-03-12T19:35:05.881223Z 0 [Note] [MY-000000] [Galera] (ca2c2a5f-a82a, 'ssl://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T19:35:05.896920Z 0 [Note] [MY-000000] [Galera] (ca2c2a5f-a82a, 'ssl://0.0.0.0:4567') connection established to 0509936f-8cc2 ssl://172.17.0.4:4567 +2023-03-12T19:35:05.897109Z 0 [Note] [MY-000000] [Galera] (ca2c2a5f-a82a, 'ssl://0.0.0.0:4567') connection established to 0509936f-8cc2 ssl://172.17.0.4:4567 +2023-03-12T19:35:06.375965Z 0 [Note] [MY-000000] [Galera] EVS version upgrade 0 -> 1 +2023-03-12T19:35:06.376012Z 0 [Note] [MY-000000] [Galera] declaring 0509936f-8cc2 at ssl://172.17.0.4:4567 stable +2023-03-12T19:35:06.376026Z 0 [Note] [MY-000000] [Galera] declaring 7026494c-a649 at ssl://172.17.0.3:4567 stable +2023-03-12T19:35:06.376044Z 0 [Note] [MY-000000] [Galera] PC protocol upgrade 0 -> 1 +2023-03-12T19:35:06.376304Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T19:35:06.376551Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,9) +memb { + 0509936f-8cc2,0 + 7026494c-a649,0 + ca2c2a5f-a82a,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T19:35:06.376568Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T19:35:06.875414Z 0 [Note] [MY-000000] [Galera] gcomm: connected +2023-03-12T19:35:06.875464Z 0 [Note] [MY-000000] [Galera] Changing maximum packet size to 64500, resulting msg size: 32636 +2023-03-12T19:35:06.875619Z 0 [Note] [MY-000000] [Galera] Shifting CLOSED -> OPEN (TO: 0) +2023-03-12T19:35:06.875634Z 0 [Note] [MY-000000] [Galera] Opened channel 'pxc_cluster' +2023-03-12T19:35:06.875717Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 2, memb_num = 3 +2023-03-12T19:35:06.875755Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: Waiting for state UUID. +2023-03-12T19:35:06.875766Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.875779Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.875790Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.875800Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.875810Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.875818Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.875828Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.875838Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.875848Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.875857Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.875867Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.875877Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.875886Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.875896Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.875906Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.875914Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.875931Z 1 [Note] [MY-000000] [WSREP] Starting rollbacker thread 1 +2023-03-12T19:35:06.875960Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: ca7a22c9-dc8d-11ed-964b-af60786b1721 +2023-03-12T19:35:06.875979Z 2 [Note] [MY-000000] [WSREP] Starting applier thread 2 +2023-03-12T19:35:06.876015Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ca7a22c9-dc8d-11ed-964b-af60786b1721 from 0 (node3) +2023-03-12T19:35:06.876043Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ca7a22c9-dc8d-11ed-964b-af60786b1721 from 1 (node2) +2023-03-12T19:35:06.876427Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ca7a22c9-dc8d-11ed-964b-af60786b1721 from 2 (node1) +2023-03-12T19:35:06.876442Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 8, + members = 2/3 (primary/total), + act_id = 178226773, + last_appl. = 178226713, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T19:35:06.876491Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [173, 173] +2023-03-12T19:35:06.876501Z 0 [Note] [MY-000000] [Galera] Shifting OPEN -> PRIMARY (TO: 178226774) +2023-03-12T19:35:06.876554Z 2 [Note] [MY-000000] [Galera] ####### processing CC 178226774, local, ordered +2023-03-12T19:35:06.876572Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 170403896 upto current CC event 178226774 upto:170403896 +2023-03-12T19:35:06.876586Z 2 [Note] [MY-000000] [Galera] Drain monitors from 170403896 up to 170403896 +2023-03-12T19:35:06.876603Z 2 [Note] [MY-000000] [Galera] Process first view: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 my uuid: ca2c2a5f-dc8d-11ed-a82a-ebad461f7ad9 +2023-03-12T19:35:06.876625Z 2 [Note] [MY-000000] [Galera] Server node1 connected to cluster at position 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226774 with ID ca2c2a5f-dc8d-11ed-a82a-ebad461f7ad9 +2023-03-12T19:35:06.876639Z 2 [Note] [MY-000000] [WSREP] Server status change disconnected -> connected +2023-03-12T19:35:06.876665Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T19:35:06.876690Z 2 [Note] [MY-000000] [Galera] ####### My UUID: ca2c2a5f-dc8d-11ed-a82a-ebad461f7ad9 +2023-03-12T19:35:06.876704Z 2 [Note] [MY-000000] [Galera] Cert index reset to 00000000-0000-0000-0000-000000000000:-1 (proto: 10), state transfer needed: yes +2023-03-12T19:35:06.876736Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T19:35:06.876764Z 2 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 00000000-0000-0000-0000-000000000000:-1, protocol version: -1 +2023-03-12T19:35:06.876777Z 2 [Note] [MY-000000] [Galera] State transfer required: + Group state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226774 + Local state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T19:35:06.876785Z 2 [Note] [MY-000000] [WSREP] Server status change connected -> joiner +2023-03-12T19:35:06.876795Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T19:35:06.876942Z 0 [Note] [MY-000000] [WSREP] Initiating SST/IST transfer on JOINER side (wsrep_sst_xtrabackup-v2 --role 'joiner' --address '172.17.0.2' --datadir '/var/lib/mysql' --basedir '/usr/' --plugindir '/usr/lib64/mysql/plugin/' --defaults-file '/etc/my.cnf' --defaults-group-suffix '' --parent '2070978' --mysqld-version '8.0.28-19.1' '' ) +2023-03-12T19:35:07.638354Z 2 [Note] [MY-000000] [WSREP] Prepared SST request: xtrabackup-v2|172.17.0.2:4444/xtrabackup_sst//1 +2023-03-12T19:35:07.638410Z 2 [Note] [MY-000000] [Galera] Check if state gap can be serviced using IST +2023-03-12T19:35:07.638435Z 2 [Note] [MY-000000] [Galera] ####### IST uuid:9db0bcdf-b31a-11ed-a398-2a4cfdd82049 f: 170403897, l: 178226774, STRv: 3 +2023-03-12T19:35:07.638510Z 2 [Note] [MY-000000] [Galera] IST receiver addr using ssl://172.17.0.2:4568 +2023-03-12T19:35:07.638540Z 2 [Note] [MY-000000] [Galera] IST receiver using ssl +2023-03-12T19:35:07.638676Z 2 [Note] [MY-000000] [Galera] Prepared IST receiver for 170403897-178226774, listening at: ssl://172.17.0.2:4568 +2023-03-12T19:35:07.644638Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:35:07.644668Z 0 [Note] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node'. Selected 0.0 (node3)(SYNCED) as donor. +2023-03-12T19:35:07.644683Z 0 [Note] [MY-000000] [Galera] Shifting PRIMARY -> JOINER (TO: 178226790) +2023-03-12T19:35:07.644728Z 2 [Note] [MY-000000] [Galera] Requesting state transfer: success, donor: 0 +2023-03-12T19:35:09.375742Z 0 [Note] [MY-000000] [Galera] (ca2c2a5f-a82a, 'ssl://0.0.0.0:4567') turning message relay requesting off +2023-03-12T19:36:47.542094Z 0 [Note] [MY-000000] [WSREP-SST] Trying to terminate (2071446) socat -u openssl-listen:4444,reuseaddr,cert=/var/lib/mysqlserver-cert.pem,key=/var/lib/mysqlserver-key.pem,cafile=/var/lib/mysqlca.pem,verify=1,retry=30 stdio | /usr/bin/pxc_extra/pxb-8.0/bin/xbstream -x with SIGTERM +2023-03-12T19:36:47.564067Z 0 [Note] [MY-000000] [WSREP-SST] /usr/bin/wsrep_sst_xtrabackup-v2: line 212: 2071448 Exit 143 socat -u openssl-listen:4444,reuseaddr,cert=/var/lib/mysqlserver-cert.pem,key=/var/lib/mysqlserver-key.pem,cafile=/var/lib/mysqlca.pem,verify=1,retry=30 stdio +2023-03-12T19:36:47.564124Z 0 [Note] [MY-000000] [WSREP-SST] 2071449 Terminated | /usr/bin/pxc_extra/pxb-8.0/bin/xbstream -x +2023-03-12T19:36:48.566628Z 0 [ERROR] [MY-000000] [WSREP-SST] ******************* FATAL ERROR ********************** +2023-03-12T19:36:48.567087Z 0 [ERROR] [MY-000000] [WSREP-SST] Possible timeout in receving first data from donor in gtid/keyring stage +2023-03-12T19:36:48.567109Z 0 [ERROR] [MY-000000] [WSREP-SST] Line 1304 +2023-03-12T19:36:48.567118Z 0 [ERROR] [MY-000000] [WSREP-SST] ****************************************************** +2023-03-12T19:36:48.567128Z 0 [ERROR] [MY-000000] [WSREP-SST] Cleanup after exit with status:32 +2023-03-12T19:36:48.589084Z 0 [ERROR] [MY-000000] [WSREP] Process completed with error: wsrep_sst_xtrabackup-v2 --role 'joiner' --address '172.17.0.2' --datadir '/var/lib/mysql' --basedir '/usr/' --plugindir '/usr/lib64/mysql/plugin/' --defaults-file '/etc/my.cnf' --defaults-group-suffix '' --parent '2070978' --mysqld-version '8.0.28-19.1' '' : 32 (Broken pipe) +2023-03-12T19:36:48.589138Z 0 [ERROR] [MY-000000] [WSREP] Failed to read uuid:seqno from joiner script. +2023-03-12T19:36:48.589159Z 0 [ERROR] [MY-000000] [WSREP] SST script aborted with error 32 (Broken pipe) +2023-03-12T19:36:48.589237Z 3 [Note] [MY-000000] [Galera] Processing SST received +2023-03-12T19:36:48.589265Z 3 [Note] [MY-000000] [Galera] SST request was cancelled +2023-03-12T19:36:48.589296Z 3 [ERROR] [MY-000000] [Galera] State transfer request failed unrecoverably: 32 (Broken pipe). Most likely it is due to inability to communicate with the cluster primary component. Restart required. +2023-03-12T19:36:48.589312Z 3 [Note] [MY-000000] [Galera] ReplicatorSMM::abort() +2023-03-12T19:36:48.589326Z 3 [Note] [MY-000000] [Galera] Closing send monitor... +2023-03-12T19:36:48.589346Z 3 [Note] [MY-000000] [Galera] Closed send monitor. +2023-03-12T19:36:48.589360Z 3 [Note] [MY-000000] [Galera] gcomm: terminating thread +2023-03-12T19:36:48.589381Z 3 [Note] [MY-000000] [Galera] gcomm: joining thread +2023-03-12T19:36:48.589473Z 3 [Note] [MY-000000] [Galera] gcomm: closing backend +2023-03-12T19:36:48.590013Z 3 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(NON_PRIM,0509936f-8cc2,9) +memb { + ca2c2a5f-a82a,0 + } +joined { + } +left { + } +partitioned { + 0509936f-8cc2,0 + 7026494c-a649,0 + } +) +2023-03-12T19:36:48.590071Z 3 [Note] [MY-000000] [Galera] PC protocol downgrade 1 -> 0 +2023-03-12T19:36:48.590096Z 3 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view ((empty)) +2023-03-12T19:36:48.590284Z 3 [Note] [MY-000000] [Galera] gcomm: closed +2023-03-12T19:36:48.590338Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = no, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T19:36:48.590412Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [100, 100] +2023-03-12T19:36:48.590431Z 0 [Note] [MY-000000] [Galera] Received NON-PRIMARY. +2023-03-12T19:36:48.590443Z 0 [Note] [MY-000000] [Galera] Shifting JOINER -> OPEN (TO: 178226790) +2023-03-12T19:36:48.590462Z 0 [Note] [MY-000000] [Galera] New SELF-LEAVE. +2023-03-12T19:36:48.590482Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [0, 0] +2023-03-12T19:36:48.590503Z 0 [Note] [MY-000000] [Galera] Received SELF-LEAVE. Closing connection. +2023-03-12T19:36:48.590514Z 0 [Note] [MY-000000] [Galera] Shifting OPEN -> CLOSED (TO: 178226790) +2023-03-12T19:36:48.590529Z 0 [Note] [MY-000000] [Galera] RECV thread exiting 0: Success +2023-03-12T19:36:48.590584Z 3 [Note] [MY-000000] [Galera] recv_thread() joined. +2023-03-12T19:36:48.590603Z 3 [Note] [MY-000000] [Galera] Closing replication queue. +2023-03-12T19:36:48.590614Z 3 [Note] [MY-000000] [Galera] Closing slave action queue. +2023-03-12T19:36:48.590632Z 3 [Note] [MY-000000] [Galera] /usr/sbin/mysqld: Terminated. +2023-03-12T19:36:48.590647Z 3 [Note] [MY-000000] [WSREP] Initiating SST cancellation +2023-03-12T19:36:48.590660Z 3 [Note] [MY-000000] [WSREP] Terminating SST process +Log of wsrep recovery (--wsrep-recover): + INFO: WSREP: Running position recovery with --log_error='/var/lib/mysqlwsrep_recovery_verbose.d7cEYM' --pid-file='/var/lib/mysql.pid' + INFO: WSREP: Recovered position 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T19:41:28.490918Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead. +2023-03-12T19:41:28.490933Z 0 [Warning] [MY-011069] [Server] The syntax '--master-info-repository' is deprecated and will be removed in a future release. +2023-03-12T19:41:28.490940Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T19:41:28.490970Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T19:41:28.490980Z 0 [Warning] [MY-011068] [Server] The syntax 'log_slave_updates' is deprecated and will be removed in a future release. Please use log_replica_updates instead. +2023-03-12T19:41:28.490987Z 0 [Warning] [MY-011068] [Server] The syntax 'skip_slave_start' is deprecated and will be removed in a future release. Please use skip_replica_start instead. +2023-03-12T19:41:28.491002Z 0 [Warning] [MY-011068] [Server] The syntax 'wsrep_slave_threads' is deprecated and will be removed in a future release. Please use wsrep_applier_threads instead. +2023-03-12T19:41:28.493032Z 0 [Note] [MY-010949] [Server] Basedir set to /usr/. +2023-03-12T19:41:28.493046Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.28-19.1) starting as process 2072129 +2023-03-12T19:41:28.493882Z 0 [Warning] [MY-013242] [Server] --character-set-server: 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous. +2023-03-12T19:41:28.493889Z 0 [Warning] [MY-013244] [Server] --collation-server: 'utf8_general_ci' is a collation of the deprecated character set UTF8MB3. Please consider using UTF8MB4 with an appropriate collation instead. +2023-03-12T19:41:28.498822Z 0 [Note] [MY-010182] [Server] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +2023-03-12T19:41:28.498966Z 0 [Note] [MY-010304] [Server] Skipping generation of SSL certificates as certificate files are present in data directory. +2023-03-12T19:41:28.500666Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. +2023-03-12T19:41:28.500708Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. +2023-03-12T19:41:28.500726Z 0 [Note] [MY-000000] [WSREP] New joining cluster node configured to use specified SSL artifacts +2023-03-12T19:41:28.500767Z 0 [Note] [MY-000000] [Galera] Loading provider /usr/lib64/libgalera_smm.so initial position: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T19:41:28.500789Z 0 [Note] [MY-000000] [Galera] wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so' +2023-03-12T19:41:28.504332Z 0 [Note] [MY-000000] [Galera] wsrep_load(): Galera 4.11(a9008fc) by Codership Oy (modified by Percona ) loaded successfully. +2023-03-12T19:41:28.504385Z 0 [Note] [MY-000000] [Galera] CRC-32C: using 64-bit x86 acceleration. +2023-03-12T19:41:28.504952Z 0 [Note] [MY-000000] [Galera] Found saved state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:-1, safe_to_bootstrap: 0 +2023-03-12T19:41:28.509395Z 0 [Note] [MY-000000] [Galera] GCache DEBUG: opened preamble: +Version: 2 +UUID: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +Seqno: -1 - -1 +Offset: -1 +Synced: 0 +2023-03-12T19:41:28.509433Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: version: 2, UUID: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049, offset: -1 +2023-03-12T19:41:28.509506Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer initial scan... 0.0% ( 0/53687091224 bytes) complete. +2023-03-12T19:41:38.511646Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer initial scan... 34.3% (18438160384/53687091224 bytes) complete. +2023-03-12T19:41:48.512784Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer initial scan... 71.5% (38411436032/53687091224 bytes) complete. +2023-03-12T19:41:56.652795Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer initial scan...100.0% (53687091224/53687091224 bytes) complete. +2023-03-12T19:41:56.656455Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: Recovery failed, need to do full reset. +2023-03-12T19:41:56.666035Z 0 [Note] [MY-000000] [Galera] Complete reset of the galera cache +2023-03-12T19:43:13.076415Z 0 [Note] [MY-000000] [Galera] Flushing memory map to disk... +2023-03-12T19:43:17.104673Z 0 [Warning] [MY-000000] [Galera] Option 'gcs.fc_master_slave' is deprecated and will be removed in the future versions, please use 'gcs.fc_single_primary' instead. +2023-03-12T19:43:17.105407Z 0 [Note] [MY-000000] [Galera] Passing config to GCS: base_dir = /var/lib/mysql; base_host = 172.17.0.2; base_port = 4567; cert.log_conflicts = no; cert.optimistic_pa = no; debug = no; evs.auto_evict = 0; evs.delay_margin = PT1S; evs.delayed_keep_period = PT30S; evs.inactive_check_period = PT0.5S; evs.inactive_timeout = PT15S; evs.join_retrans_period = PT1S; evs.max_install_timeouts = 3; evs.send_window = 10; evs.stats_report_period = PT1M; evs.suspect_timeout = PT5S; evs.user_send_window = 4; evs.view_forget_timeout = PT24H; gcache.dir = /var/lib/mysql; gcache.freeze_purge_at_seqno = -1; gcache.keep_pages_count = 0; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = galera.cache; gcache.page_size = 128M; gcache.recover = yes; gcache.size = 50G; gcomm.thread_prio = ; gcs.fc_debug = 0; gcs.fc_factor = 1.0; gcs.fc_limit = 100; gcs.fc_master_slave = no; gcs.fc_single_primary = no; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = no; gmcast.segment = 0; gmcast.version = 0; pc.announce_timeout = PT3S; pc.checksum = false; pc.ignore_quorum = false; pc.ignore_sb = false; pc.npvo = false; pc.recovery = true; pc.version = 0; pc.wait_prim = true; pc.wait_prim_timeout = PT30S; pc.weight = 1; protonet.backend = asio; protonet.version = 0; repl.causal_read_timeout = PT30S; repl.commit_order = 3; repl.key_format = FLAT8; repl.max_ws_size = 2147483647; repl.proto_max = 10; socket.checksum = 2; socket.recv_buf_size = auto; socket.send_buf_size = auto; socket.ssl = YES; socket.ssl_ca = ca.pem; socket.ssl_cert = server-cert.pem; socket.ssl_cipher = ; socket.ssl_compression = YES; socket.ssl_key = server-key.pem; socket.ssl_reload = 1; +2023-03-12T19:43:17.123279Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T19:43:17.123360Z 0 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896, protocol version: -1 +2023-03-12T19:43:17.123396Z 0 [Note] [MY-000000] [Galera] GCache history reset: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:0 -> 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T19:43:17.127972Z 0 [Note] [MY-000000] [WSREP] Starting replication +2023-03-12T19:43:17.128006Z 0 [Note] [MY-000000] [Galera] Connecting with bootstrap option: 0 +2023-03-12T19:43:17.128032Z 0 [Note] [MY-000000] [Galera] Setting GCS initial position to 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T19:43:17.128094Z 0 [Note] [MY-000000] [Galera] protonet asio version 0 +2023-03-12T19:43:17.128475Z 0 [Note] [MY-000000] [Galera] Using CRC-32C for message checksums. +2023-03-12T19:43:17.128505Z 0 [Note] [MY-000000] [Galera] backend: asio +2023-03-12T19:43:17.128579Z 0 [Note] [MY-000000] [Galera] gcomm thread scheduling priority set to other:0 +2023-03-12T19:43:17.128675Z 0 [Warning] [MY-000000] [Galera] Fail to access the file (/var/lib/mysql/gvwstate.dat) error (No such file or directory). It is possible if node is booting for first time or re-booting after a graceful shutdown +2023-03-12T19:43:17.128694Z 0 [Note] [MY-000000] [Galera] Restoring primary-component from disk failed. Either node is booting for first time or re-booting after a graceful shutdown +2023-03-12T19:43:17.128815Z 0 [Note] [MY-000000] [Galera] GMCast version 0 +2023-03-12T19:43:17.128935Z 0 [Note] [MY-000000] [Galera] (eefb9c8a-b69a, 'ssl://0.0.0.0:4567') listening at ssl://0.0.0.0:4567 +2023-03-12T19:43:17.128952Z 0 [Note] [MY-000000] [Galera] (eefb9c8a-b69a, 'ssl://0.0.0.0:4567') multicast: , ttl: 1 +2023-03-12T19:43:17.129135Z 0 [Note] [MY-000000] [Galera] EVS version 1 +2023-03-12T19:43:17.129206Z 0 [Note] [MY-000000] [Galera] gcomm: connecting to group 'pxc_cluster', peer '172.17.0.2:,172.17.0.3:,172.17.0.4:' +2023-03-12T19:43:17.133790Z 0 [Note] [MY-000000] [Galera] (eefb9c8a-b69a, 'ssl://0.0.0.0:4567') Found matching local endpoint for a connection, blacklisting address ssl://172.17.0.2:4567 +2023-03-12T19:43:17.133988Z 0 [Note] [MY-000000] [Galera] (eefb9c8a-b69a, 'ssl://0.0.0.0:4567') connection established to 7026494c-a649 ssl://172.17.0.3:4567 +2023-03-12T19:43:17.134030Z 0 [Note] [MY-000000] [Galera] (eefb9c8a-b69a, 'ssl://0.0.0.0:4567') connection established to 0509936f-8cc2 ssl://172.17.0.4:4567 +2023-03-12T19:43:17.134099Z 0 [Note] [MY-000000] [Galera] (eefb9c8a-b69a, 'ssl://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T19:43:17.630145Z 0 [Note] [MY-000000] [Galera] EVS version upgrade 0 -> 1 +2023-03-12T19:43:17.630208Z 0 [Note] [MY-000000] [Galera] declaring 0509936f-8cc2 at ssl://172.17.0.4:4567 stable +2023-03-12T19:43:17.630221Z 0 [Note] [MY-000000] [Galera] declaring 7026494c-a649 at ssl://172.17.0.3:4567 stable +2023-03-12T19:43:17.630246Z 0 [Note] [MY-000000] [Galera] PC protocol upgrade 0 -> 1 +2023-03-12T19:43:17.634701Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T19:43:17.635037Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,11) +memb { + 0509936f-8cc2,0 + 7026494c-a649,0 + eefb9c8a-b69a,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T19:43:17.635065Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T19:43:18.129605Z 0 [Note] [MY-000000] [Galera] gcomm: connected +2023-03-12T19:43:18.129659Z 0 [Note] [MY-000000] [Galera] Changing maximum packet size to 64500, resulting msg size: 32636 +2023-03-12T19:43:18.130088Z 0 [Note] [MY-000000] [Galera] Shifting CLOSED -> OPEN (TO: 0) +2023-03-12T19:43:18.130117Z 0 [Note] [MY-000000] [Galera] Opened channel 'pxc_cluster' +2023-03-12T19:43:18.130230Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 2, memb_num = 3 +2023-03-12T19:43:18.130280Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: Waiting for state UUID. +2023-03-12T19:43:18.130331Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: ef4ae07b-dc8e-11ed-92ad-47fe88dd637c +2023-03-12T19:43:18.130361Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ef4ae07b-dc8e-11ed-92ad-47fe88dd637c from 0 (node3) +2023-03-12T19:43:18.130381Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ef4ae07b-dc8e-11ed-92ad-47fe88dd637c from 1 (node2) +2023-03-12T19:43:18.130520Z 2 [Note] [MY-000000] [WSREP] Starting rollbacker thread 2 +2023-03-12T19:43:18.130624Z 1 [Note] [MY-000000] [WSREP] Starting applier thread 1 +2023-03-12T19:43:18.130826Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ef4ae07b-dc8e-11ed-92ad-47fe88dd637c from 2 (node1) +2023-03-12T19:43:18.130845Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 10, + members = 2/3 (primary/total), + act_id = 178226791, + last_appl. = 178226713, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T19:43:18.130900Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [173, 173] +2023-03-12T19:43:18.130916Z 0 [Note] [MY-000000] [Galera] Shifting OPEN -> PRIMARY (TO: 178226792) +2023-03-12T19:43:18.130979Z 1 [Note] [MY-000000] [Galera] ####### processing CC 178226792, local, ordered +2023-03-12T19:43:18.131012Z 1 [Note] [MY-000000] [Galera] Maybe drain monitors from 170403896 upto current CC event 178226792 upto:170403896 +2023-03-12T19:43:18.131032Z 1 [Note] [MY-000000] [Galera] Drain monitors from 170403896 up to 170403896 +2023-03-12T19:43:18.131060Z 1 [Note] [MY-000000] [Galera] Process first view: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 my uuid: eefb9c8a-dc8e-11ed-b69a-5ff81ce70855 +2023-03-12T19:43:18.131099Z 1 [Note] [MY-000000] [Galera] Server node1 connected to cluster at position 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226792 with ID eefb9c8a-dc8e-11ed-b69a-5ff81ce70855 +2023-03-12T19:43:18.131120Z 1 [Note] [MY-000000] [WSREP] Server status change disconnected -> connected +2023-03-12T19:43:18.131156Z 1 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T19:43:18.131189Z 1 [Note] [MY-000000] [Galera] ####### My UUID: eefb9c8a-dc8e-11ed-b69a-5ff81ce70855 +2023-03-12T19:43:18.131209Z 1 [Note] [MY-000000] [Galera] Cert index reset to 00000000-0000-0000-0000-000000000000:-1 (proto: 10), state transfer needed: yes +2023-03-12T19:43:18.131247Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T19:43:18.131282Z 1 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 00000000-0000-0000-0000-000000000000:-1, protocol version: -1 +2023-03-12T19:43:18.131301Z 1 [Note] [MY-000000] [Galera] State transfer required: + Group state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226792 + Local state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T19:43:18.131311Z 1 [Note] [MY-000000] [WSREP] Server status change connected -> joiner +2023-03-12T19:43:18.131322Z 1 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T19:43:18.131504Z 0 [Note] [MY-000000] [WSREP] Initiating SST/IST transfer on JOINER side (wsrep_sst_xtrabackup-v2 --role 'joiner' --address '172.17.0.2' --datadir '/var/lib/mysql' --basedir '/usr/' --plugindir '/usr/lib64/mysql/plugin/' --defaults-file '/etc/my.cnf' --defaults-group-suffix '' --parent '2072129' --mysqld-version '8.0.28-19.1' '' ) +2023-03-12T19:43:18.507732Z 0 [Warning] [MY-000000] [WSREP-SST] Found a stale sst_in_progress file: /var/lib/mysql/sst_in_progress +2023-03-12T19:43:18.904004Z 1 [Note] [MY-000000] [WSREP] Prepared SST request: xtrabackup-v2|172.17.0.2:4444/xtrabackup_sst//1 +2023-03-12T19:43:18.904085Z 1 [Note] [MY-000000] [Galera] Check if state gap can be serviced using IST +2023-03-12T19:43:18.904117Z 1 [Note] [MY-000000] [Galera] ####### IST uuid:9db0bcdf-b31a-11ed-a398-2a4cfdd82049 f: 170403897, l: 178226792, STRv: 3 +2023-03-12T19:43:18.904196Z 1 [Note] [MY-000000] [Galera] IST receiver addr using ssl://172.17.0.2:4568 +2023-03-12T19:43:18.904237Z 1 [Note] [MY-000000] [Galera] IST receiver using ssl +2023-03-12T19:43:18.904410Z 1 [Note] [MY-000000] [Galera] Prepared IST receiver for 170403897-178226792, listening at: ssl://172.17.0.2:4568 +2023-03-12T19:43:18.913384Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:18.913429Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:18.913478Z 1 [Note] [MY-000000] [Galera] Requesting state transfer failed: -11(Resource temporarily unavailable). Will keep retrying every 1 second(s) +2023-03-12T19:43:19.914195Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:19.914259Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:20.629868Z 0 [Note] [MY-000000] [Galera] (eefb9c8a-b69a, 'ssl://0.0.0.0:4567') turning message relay requesting off +2023-03-12T19:43:20.915085Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:20.915143Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:21.916061Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:21.916151Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:22.916971Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:22.917070Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:23.917940Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:23.918014Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:24.918890Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:24.918962Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:25.919805Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:25.919886Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:26.920759Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:26.920848Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:27.921693Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:27.921784Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:28.922621Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:28.922696Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:29.923504Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:29.923575Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:30.924476Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:30.924541Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:31.925339Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:31.925407Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:32.926188Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:32.926282Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:33.927093Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:33.927175Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:34.927960Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:34.928027Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:35.928841Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:35.928915Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:36.929682Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:36.929753Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:37.930480Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:37.930579Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:38.931294Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:38.931395Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:39.932202Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:39.932277Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:40.933017Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:40.933102Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:41.933850Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:41.933919Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:42.934701Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:42.934782Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:43.935527Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:43.935617Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:44.936351Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:44.936439Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:45.937201Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:45.937283Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:46.938032Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:46.938114Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:47.938900Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:47.938960Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:48.939728Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:48.939823Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:49.940599Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:49.940690Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:50.941564Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:50.941630Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:51.942462Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:51.942536Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:52.943303Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:52.943372Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:53.944226Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:53.944307Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:54.945093Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:54.945181Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:55.945935Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:55.946010Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:56.946879Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:56.946960Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:57.947756Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:57.947813Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:58.948681Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:58.948769Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:59.949559Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:59.949643Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:00.950394Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:00.950488Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:01.951244Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:01.951320Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:02.952128Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:02.952201Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:03.953032Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:03.953102Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:04.953900Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:04.953969Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:05.954722Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:05.954821Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:06.955656Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:06.955734Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:07.956552Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:07.956622Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:08.957451Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:08.957519Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:09.958375Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:09.958440Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:10.959225Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:10.959326Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:11.960221Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:11.960292Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:12.961043Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:12.961127Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:13.961891Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:13.961966Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:14.962746Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:14.962830Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:15.963664Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:15.963747Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:16.964549Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:16.964650Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:17.965465Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:17.965541Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:18.966251Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:18.966320Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:19.967066Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:19.967141Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:20.967883Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:20.967946Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:21.968706Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:21.968780Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:22.969501Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:22.969579Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:23.971518Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:23.971585Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:24.972252Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:24.972320Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:25.972956Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:25.973023Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:26.973679Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:26.973760Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:27.974430Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:27.974501Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:28.975247Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:28.975316Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:29.976078Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:29.976138Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:30.976912Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:30.976996Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:31.977737Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:31.977795Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:32.978471Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:32.978548Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:33.979258Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:33.979335Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:34.979986Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:34.980062Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:35.980756Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:35.980823Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:36.981585Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:36.981649Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:37.982289Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:37.982364Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:38.983159Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:38.983259Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:39.984060Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:39.984123Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:40.985107Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:40.985186Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:41.985915Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:41.985988Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:42.986733Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:42.986796Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:43.987509Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:43.987589Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:44.988408Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:44.988478Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:45.989168Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:45.989223Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:46.989929Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:46.989996Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:47.990686Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:47.990747Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:48.991442Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:48.991529Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:49.992180Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:49.992262Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:50.992947Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:50.993015Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:51.993718Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:51.993771Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:52.994445Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:52.994499Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:53.995254Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:53.995317Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:54.995982Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:54.996062Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:55.996766Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:55.996831Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:56.997566Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:56.997629Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:57.998986Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:57.999038Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:58.796607Z 0 [Note] [MY-000000] [WSREP-SST] Trying to terminate (2072653) socat -u openssl-listen:4444,reuseaddr,cert=/var/lib/mysqlserver-cert.pem,key=/var/lib/mysqlserver-key.pem,cafile=/var/lib/mysqlca.pem,verify=1,retry=30 stdio | /usr/bin/pxc_extra/pxb-8.0/bin/xbstream -x with SIGTERM +2023-03-12T19:44:58.814422Z 0 [Note] [MY-000000] [WSREP-SST] /usr/bin/wsrep_sst_xtrabackup-v2: line 212: 2072655 Exit 143 socat -u openssl-listen:4444,reuseaddr,cert=/var/lib/mysqlserver-cert.pem,key=/var/lib/mysqlserver-key.pem,cafile=/var/lib/mysqlca.pem,verify=1,retry=30 stdio +2023-03-12T19:44:58.814478Z 0 [Note] [MY-000000] [WSREP-SST] 2072656 Terminated | /usr/bin/pxc_extra/pxb-8.0/bin/xbstream -x +2023-03-12T19:44:58.999736Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:58.999791Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:59.816942Z 0 [ERROR] [MY-000000] [WSREP-SST] ******************* FATAL ERROR ********************** +2023-03-12T19:44:59.817822Z 0 [ERROR] [MY-000000] [WSREP-SST] Possible timeout in receving first data from donor in gtid/keyring stage +2023-03-12T19:44:59.817848Z 0 [ERROR] [MY-000000] [WSREP-SST] Line 1304 +2023-03-12T19:44:59.817858Z 0 [ERROR] [MY-000000] [WSREP-SST] ****************************************************** +2023-03-12T19:44:59.817872Z 0 [ERROR] [MY-000000] [WSREP-SST] Cleanup after exit with status:32 +2023-03-12T19:44:59.839692Z 0 [ERROR] [MY-000000] [WSREP] Process completed with error: wsrep_sst_xtrabackup-v2 --role 'joiner' --address '172.17.0.2' --datadir '/var/lib/mysql' --basedir '/usr/' --plugindir '/usr/lib64/mysql/plugin/' --defaults-file '/etc/my.cnf' --defaults-group-suffix '' --parent '2072129' --mysqld-version '8.0.28-19.1' '' : 32 (Broken pipe) +2023-03-12T19:44:59.839773Z 0 [ERROR] [MY-000000] [WSREP] Failed to read uuid:seqno from joiner script. +2023-03-12T19:44:59.839795Z 0 [ERROR] [MY-000000] [WSREP] SST script aborted with error 32 (Broken pipe) +2023-03-12T19:44:59.839898Z 3 [Note] [MY-000000] [Galera] Processing SST received +2023-03-12T19:44:59.839926Z 3 [Note] [MY-000000] [Galera] SST request was cancelled +2023-03-12T19:44:59.839949Z 3 [ERROR] [MY-000000] [Galera] State transfer request failed unrecoverably: 32 (Broken pipe). Most likely it is due to inability to communicate with the cluster primary component. Restart required. +2023-03-12T19:44:59.839965Z 3 [Note] [MY-000000] [Galera] ReplicatorSMM::abort() +2023-03-12T19:44:59.839986Z 3 [Note] [MY-000000] [Galera] Closing send monitor... +2023-03-12T19:44:59.840006Z 3 [Note] [MY-000000] [Galera] Closed send monitor. +2023-03-12T19:44:59.840019Z 3 [Note] [MY-000000] [Galera] gcomm: terminating thread +2023-03-12T19:44:59.840042Z 3 [Note] [MY-000000] [Galera] gcomm: joining thread +2023-03-12T19:44:59.840150Z 3 [Note] [MY-000000] [Galera] gcomm: closing backend +2023-03-12T19:44:59.840697Z 3 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(NON_PRIM,0509936f-8cc2,11) +memb { + eefb9c8a-b69a,0 + } +joined { + } +left { + } +partitioned { + 0509936f-8cc2,0 + 7026494c-a649,0 + } +) +2023-03-12T19:44:59.840744Z 3 [Note] [MY-000000] [Galera] PC protocol downgrade 1 -> 0 +2023-03-12T19:44:59.840769Z 3 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view ((empty)) +2023-03-12T19:44:59.840968Z 3 [Note] [MY-000000] [Galera] gcomm: closed +2023-03-12T19:44:59.841189Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = no, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T19:44:59.841260Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [100, 100] +2023-03-12T19:44:59.841279Z 0 [Note] [MY-000000] [Galera] Received NON-PRIMARY. +2023-03-12T19:44:59.841292Z 0 [Note] [MY-000000] [Galera] Shifting PRIMARY -> OPEN (TO: 178226792) +2023-03-12T19:44:59.841311Z 0 [Note] [MY-000000] [Galera] New SELF-LEAVE. +2023-03-12T19:44:59.841327Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [0, 0] +2023-03-12T19:44:59.841341Z 0 [Note] [MY-000000] [Galera] Received SELF-LEAVE. Closing connection. +2023-03-12T19:44:59.841352Z 0 [Note] [MY-000000] [Galera] Shifting OPEN -> CLOSED (TO: 178226792) +2023-03-12T19:44:59.841365Z 0 [Note] [MY-000000] [Galera] RECV thread exiting 0: Success +2023-03-12T19:44:59.841464Z 3 [Note] [MY-000000] [Galera] recv_thread() joined. +2023-03-12T19:44:59.841485Z 3 [Note] [MY-000000] [Galera] Closing replication queue. +2023-03-12T19:44:59.841496Z 3 [Note] [MY-000000] [Galera] Closing slave action queue. +2023-03-12T19:44:59.841515Z 3 [Note] [MY-000000] [Galera] /usr/sbin/mysqld: Terminated. +2023-03-12T19:44:59.841529Z 3 [Note] [MY-000000] [WSREP] Initiating SST cancellation +2023-03-12T19:44:59.841539Z 3 [Note] [MY-000000] [WSREP] Terminating SST process diff --git a/src/go/pt-galera-log-explainer/tests/logs/upgrade/node2.log b/src/go/pt-galera-log-explainer/tests/logs/upgrade/node2.log new file mode 100644 index 00000000..bc943ab4 --- /dev/null +++ b/src/go/pt-galera-log-explainer/tests/logs/upgrade/node2.log @@ -0,0 +1,5465 @@ +2023-03-12T07:24:13.732788Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details). +2023-03-12T07:24:13.732839Z 0 [Warning] 'NO_AUTO_CREATE_USER' sql mode was not set. +2023-03-12T07:24:13.733958Z 0 [Note] /usr/sbin/mysqld (mysqld 5.7.40-43-57-log) starting as process 1706517 ... +2023-03-12T07:24:13.771108Z 0 [Note] WSREP: Setting wsrep_ready to false +2023-03-12T07:24:13.771122Z 0 [Note] WSREP: No pre-stored wsrep-start position found. Skipping position initialization. +2023-03-12T07:24:13.771126Z 0 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so' +2023-03-12T07:24:13.771655Z 0 [Note] WSREP: wsrep_load(): Galera 3.63(rf47405c) by Codership Oy loaded successfully. +2023-03-12T07:24:13.771702Z 0 [Note] WSREP: CRC-32C: using 64-bit x86 acceleration. +2023-03-12T07:24:13.771951Z 0 [Note] WSREP: Found saved state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403894, safe_to_bootstrap: 0 +2023-03-12T07:24:13.773063Z 0 [Note] WSREP: Skipped GCache ring buffer recovery: could not determine history UUID. +2023-03-12T07:24:13.776492Z 0 [Note] WSREP: Passing config to GCS: base_dir = /var/lib/mysql; base_host = 172.17.0.3; base_port = 4567; cert.log_conflicts = no; cert.optimistic_pa = yes; debug = no; evs.auto_evict = 0; evs.delay_margin = PT1S; evs.delayed_keep_period = PT30S; evs.inactive_check_period = PT0.5S; evs.inactive_timeout = PT15S; evs.join_retrans_period = PT1S; evs.max_install_timeouts = 3; evs.send_window = 10; evs.stats_report_period = PT1M; evs.suspect_timeout = PT5S; evs.user_send_window = 4; evs.view_forget_timeout = PT24H; gcache.dir = /var/lib/mysql; gcache.freeze_purge_at_seqno = -1; gcache.keep_pages_count = 0; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/mysql/galera.cache; gcache.page_size = 128M; gcache.recover = yes; gcache.size = 100G; gcomm.thread_prio = ; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 100; gcs.fc_master_slave = no; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = no; gmcast.segment = 0; gmcast.version = 0; pc.announce_timeout = PT3S; pc.checksum = false; pc.ignore_quorum = false; pc.ignore_sb = false; pc.npvo = false; pc.recovery = true; pc.version = 0; pc.wait_prim = true; pc.wait_prim_timeout = PT30S; pc.weight = 1; protonet.backend = asio; protonet.version = 0; repl.causal_read_timeout = PT30S; repl.commit_order = 3; repl.key_format = FLAT8; repl.max_ws_size = 2147483647; repl.proto_max = 9; socket.checksum = 2; socket.recv_buf_size = auto; socket.send_buf_size = auto; +2023-03-12T07:24:13.786667Z 0 [Note] WSREP: GCache history reset: 00000000-0000-0000-0000-000000000000:0 -> 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403894 +2023-03-12T07:24:13.787421Z 0 [Note] WSREP: Assign initial position for certification: 170403894, protocol version: -1 +2023-03-12T07:24:13.787441Z 0 [Note] WSREP: Preparing to initiate SST/IST +2023-03-12T07:24:13.787445Z 0 [Note] WSREP: Starting replication +2023-03-12T07:24:13.787450Z 0 [Note] WSREP: Setting initial position to 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403894 +2023-03-12T07:24:13.787702Z 0 [Note] WSREP: Using CRC-32C for message checksums. +2023-03-12T07:24:13.787816Z 0 [Note] WSREP: gcomm thread scheduling priority set to other:0 +2023-03-12T07:24:13.787869Z 0 [Note] WSREP: Fail to access the file (/var/lib/mysql/gvwstate.dat) error (No such file or directory). It is possible if node is booting for first time or re-booting after a graceful shutdown +2023-03-12T07:24:13.787874Z 0 [Note] WSREP: Restoring primary-component from disk failed. Either node is booting for first time or re-booting after a graceful shutdown +2023-03-12T07:24:13.788001Z 0 [Note] WSREP: GMCast version 0 +2023-03-12T07:24:13.788116Z 0 [Note] WSREP: (b04ac56c, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567 +2023-03-12T07:24:13.788121Z 0 [Note] WSREP: (b04ac56c, 'tcp://0.0.0.0:4567') multicast: , ttl: 1 +2023-03-12T07:24:13.788285Z 0 [Note] WSREP: EVS version 0 +2023-03-12T07:24:13.788332Z 0 [Note] WSREP: gcomm: connecting to group 'pxc_cluster', peer '172.17.0.2:,172.17.0.3:,172.17.0.4:' +2023-03-12T07:24:13.788797Z 0 [Note] WSREP: (b04ac56c, 'tcp://0.0.0.0:4567') Found matching local endpoint for a connection, blacklisting address tcp://172.17.0.3:4567 +2023-03-12T07:24:13.789261Z 0 [Note] WSREP: (b04ac56c, 'tcp://0.0.0.0:4567') connection established to 1d3ea8f5 tcp://172.17.0.2:4567 +2023-03-12T07:24:13.789305Z 0 [Note] WSREP: (b04ac56c, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T07:24:13.789425Z 0 [Note] WSREP: (b04ac56c, 'tcp://0.0.0.0:4567') connection established to 3a0423db tcp://172.17.0.4:4567 +2023-03-12T07:24:14.289375Z 0 [Note] WSREP: declaring 1d3ea8f5 at tcp://172.17.0.2:4567 stable +2023-03-12T07:24:14.289412Z 0 [Note] WSREP: declaring 3a0423db at tcp://172.17.0.4:4567 stable +2023-03-12T07:24:14.289626Z 0 [Note] WSREP: Node 1d3ea8f5 state primary +2023-03-12T07:24:14.289803Z 0 [Note] WSREP: Current view of cluster as seen by this node +view (view_id(PRIM,1d3ea8f5,17) +memb { + 1d3ea8f5,0 + 3a0423db,0 + b04ac56c,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T07:24:14.289811Z 0 [Note] WSREP: Save the discovered primary-component to disk +2023-03-12T07:24:14.788809Z 0 [Note] WSREP: gcomm: connected +2023-03-12T07:24:14.789002Z 0 [Note] WSREP: Shifting CLOSED -> OPEN (TO: 0) +2023-03-12T07:24:14.789075Z 0 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 2, memb_num = 3 +2023-03-12T07:24:14.789101Z 0 [Note] WSREP: STATE EXCHANGE: Waiting for state UUID. +2023-03-12T07:24:14.789133Z 0 [Note] WSREP: STATE EXCHANGE: sent state msg: b097ab3a-dc27-11ed-8362-1e7c67b607cf +2023-03-12T07:24:14.789139Z 0 [Note] WSREP: STATE EXCHANGE: got state msg: b097ab3a-dc27-11ed-8362-1e7c67b607cf from 0 (node1) +2023-03-12T07:24:14.789140Z 0 [Note] WSREP: Waiting for SST/IST to complete. +2023-03-12T07:24:14.789143Z 0 [Note] WSREP: STATE EXCHANGE: got state msg: b097ab3a-dc27-11ed-8362-1e7c67b607cf from 1 (node3) +2023-03-12T07:24:14.789546Z 0 [Note] WSREP: STATE EXCHANGE: got state msg: b097ab3a-dc27-11ed-8362-1e7c67b607cf from 2 (node2) +2023-03-12T07:24:14.789552Z 0 [Note] WSREP: Quorum results: + version = 6, + component = PRIMARY, + conf_id = 16, + members = 3/3 (primary/total), + act_id = 170403894, + last_appl. = -1, + protocols = 0/9/3 (gcs/repl/appl), + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T07:24:14.789557Z 0 [Note] WSREP: Flow-control interval: [173, 173] +2023-03-12T07:24:14.789560Z 0 [Note] WSREP: Restored state OPEN -> JOINED (170403894) +2023-03-12T07:24:14.789615Z 2 [Note] WSREP: REPL Protocols: 9 (4, 2) +2023-03-12T07:24:14.789636Z 2 [Note] WSREP: REPL Protocols: 9 (4, 2) +2023-03-12T07:24:14.789646Z 2 [Note] WSREP: New cluster view: global state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403894, view# 17: Primary, number of nodes: 3, my index: 2, protocol version 3 +2023-03-12T07:24:14.789649Z 2 [Note] WSREP: Setting wsrep_ready to true +2023-03-12T07:24:14.789670Z 0 [Note] WSREP: SST complete, seqno: 170403894 +2023-03-12T07:24:14.789780Z 0 [Note] WSREP: Member 2.0 (node2) synced with group. +2023-03-12T07:24:14.789785Z 0 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 170403894) +2023-03-12T07:24:14.793558Z 0 [Note] InnoDB: PUNCH HOLE support available +2023-03-12T07:24:14.793583Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins +2023-03-12T07:24:14.793587Z 0 [Note] InnoDB: Uses event mutexes +2023-03-12T07:24:14.793590Z 0 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier +2023-03-12T07:24:14.793593Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.12 +2023-03-12T07:24:14.793596Z 0 [Note] InnoDB: Using Linux native AIO +2023-03-12T07:24:14.794218Z 0 [Note] InnoDB: Number of pools: 1 +2023-03-12T07:24:14.794332Z 0 [Note] InnoDB: Using CPU crc32 instructions +2023-03-12T07:24:14.800600Z 0 [Note] InnoDB: Initializing buffer pool, total size = 120G, instances = 64, chunk size = 128M +2023-03-12T07:24:17.289135Z 0 [Note] WSREP: (b04ac56c, 'tcp://0.0.0.0:4567') turning message relay requesting off +2023-03-12T07:24:18.699232Z 0 [Note] InnoDB: Completed initialization of buffer pool +2023-03-12T07:24:20.079892Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority(). +2023-03-12T07:24:20.106402Z 0 [Note] InnoDB: Crash recovery did not find the parallel doublewrite buffer at /var/lib/mysqlxb_doublewrite +2023-03-12T07:24:20.107451Z 0 [Note] InnoDB: Highest supported file format is Barracuda. +2023-03-12T07:24:21.125574Z 0 [Note] InnoDB: Progress in MB: + 100 200 +2023-03-12T07:24:22.449221Z 0 [Note] InnoDB: Created parallel doublewrite buffer at /var/lib/mysqlxb_doublewrite, size 251658240 bytes +2023-03-12T07:24:24.260567Z 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1" +2023-03-12T07:24:24.260602Z 0 [Note] InnoDB: Creating shared tablespace for temporary tables +2023-03-12T07:24:24.260677Z 0 [Note] InnoDB: Setting file '/var/lib/mysqlibtmp1' size to 12 MB. Physically writing the file full; Please wait ... +2023-03-12T07:24:24.332275Z 0 [Note] InnoDB: File '/var/lib/mysqlibtmp1' size is now 12 MB. +2023-03-12T07:24:24.334424Z 0 [Note] InnoDB: 96 redo rollback segment(s) found. 96 redo rollback segment(s) are active. +2023-03-12T07:24:24.334449Z 0 [Note] InnoDB: 32 non-redo rollback segment(s) are active. +2023-03-12T07:24:24.334627Z 0 [Note] InnoDB: page_cleaner: 1000ms intended loop took 4255ms. The settings might not be optimal. (flushed=0, during the time.) +2023-03-12T07:24:24.336551Z 0 [Note] InnoDB: Waiting for purge to start +2023-03-12T07:24:24.386965Z 0 [Note] InnoDB: Percona XtraDB (http://www.percona.com) 5.7.40-43 started; log sequence number 35636115464232 +2023-03-12T07:24:24.387151Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysqlib_buffer_pool +2023-03-12T07:24:24.387590Z 0 [Note] Plugin 'FEDERATED' is disabled. +2023-03-12T07:24:24.401661Z 0 [Note] Salting uuid generator variables, current_pid: 1706517, server_start_time: 1681629853, bytes_sent: 0, +2023-03-12T07:24:24.401726Z 0 [Note] Generated uuid: 'b69e504b-dc27-11ed-b677-005056a720a2', server_start_time: 726486916573539506, bytes_sent: 67375328 +2023-03-12T07:24:24.401739Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: b69e504b-dc27-11ed-b677-005056a720a2. +2023-03-12T07:24:24.582472Z 0 [Note] Auto generated SSL certificates are placed in data directory. +2023-03-12T07:24:24.582549Z 0 [Warning] A deprecated TLS version TLSv1 is enabled. Please use TLSv1.2 or higher. +2023-03-12T07:24:24.582560Z 0 [Warning] A deprecated TLS version TLSv1.1 is enabled. Please use TLSv1.2 or higher. +2023-03-12T07:24:24.583164Z 0 [Warning] CA certificate ca.pem is self signed. +2023-03-12T07:24:24.765984Z 0 [Note] Auto generated RSA key files are placed in data directory. +2023-03-12T07:24:24.766123Z 0 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306 +2023-03-12T07:24:24.766142Z 0 [Note] - '0.0.0.0' resolves to '0.0.0.0'; +2023-03-12T07:24:24.766183Z 0 [Note] Server socket created on IP: '0.0.0.0'. +2023-03-12T07:24:24.779374Z 0 [ERROR] /usr/sbin/mysqld: Table './mysql/user' is marked as crashed and should be repaired +2023-03-12T07:24:24.779574Z 0 [Warning] Checking table: './mysql/user' +2023-03-12T07:24:24.779596Z 0 [ERROR] 1 client is using or hasn't closed the table properly +2023-03-12T07:24:24.784700Z 0 [ERROR] /usr/sbin/mysqld: Table './mysql/db' is marked as crashed and should be repaired +2023-03-12T07:24:24.784835Z 0 [Warning] Checking table: './mysql/db' +2023-03-12T07:24:24.784851Z 0 [ERROR] 1 client is using or hasn't closed the table properly +2023-03-12T07:24:24.856176Z 0 [Warning] Error during --relay-log-recovery: Could not locate rotate event from master in relay log file. +2023-03-12T07:24:24.856196Z 0 [Warning] Server was not able to find a rotate event from master server to initialize relay log recovery for channel ''. Skipping relay log recovery for the channel. +2023-03-12T07:24:24.871856Z 0 [Note] Event Scheduler: Loaded 0 events +2023-03-12T07:24:24.872214Z 3 [Note] Event Scheduler: scheduler thread started with id 3 +2023-03-12T07:24:24.872817Z 0 [Note] /usr/sbin/mysqld: ready for connections. +Version: '5.7.40-43-57-log' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), Release rel43, Revision ab4d0bd, WSREP version 31.63, wsrep_31.63 +2023-03-12T07:24:24.874071Z 2 [Note] WSREP: Initialized wsrep sidno 2 +2023-03-12T07:24:24.874104Z 2 [Note] WSREP: Auto Increment Offset/Increment re-align with cluster membership change (Offset: 1 -> 3) (Increment: 1 -> 3) +2023-03-12T07:24:24.874133Z 2 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T07:24:24.874162Z 2 [Note] WSREP: Assign initial position for certification: 170403894, protocol version: 4 +2023-03-12T07:24:24.874236Z 0 [Note] WSREP: Service thread queue flushed. +2023-03-12T07:24:24.875341Z 2 [Note] WSREP: Synchronized with group, ready for connections +2023-03-12T07:24:24.875367Z 2 [Note] WSREP: Setting wsrep_ready to true +2023-03-12T07:24:24.875371Z 2 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T07:24:48.599228Z 0 [Note] InnoDB: Buffer pool(s) load completed at 230416 9:24:48 +2023-03-12T07:34:47.289292Z 0 [Note] WSREP: Received shutdown signal. Will sleep for 10 secs before initiating shutdown. pxc_maint_mode switched to SHUTDOWN +2023-03-12T07:34:57.286990Z 0 [Note] WSREP: declaring 1d3ea8f5 at tcp://172.17.0.2:4567 stable +2023-03-12T07:34:57.287111Z 0 [Note] WSREP: forgetting 3a0423db (tcp://172.17.0.4:4567) +2023-03-12T07:34:57.287285Z 0 [Note] WSREP: Node 1d3ea8f5 state primary +2023-03-12T07:34:57.289327Z 0 [Note] WSREP: Current view of cluster as seen by this node +view (view_id(PRIM,1d3ea8f5,18) +memb { + 1d3ea8f5,0 + b04ac56c,0 + } +joined { + } +left { + } +partitioned { + 3a0423db,0 + } +) +2023-03-12T07:34:57.289358Z 0 [Note] WSREP: Save the discovered primary-component to disk +2023-03-12T07:34:57.289729Z 0 [Note] WSREP: Stop replication +2023-03-12T07:34:57.289783Z 0 [Note] WSREP: Closing send monitor... +2023-03-12T07:34:57.289799Z 0 [Note] WSREP: Closed send monitor. +2023-03-12T07:34:57.290903Z 0 [Note] WSREP: forgetting 3a0423db (tcp://172.17.0.4:4567) +2023-03-12T07:34:57.291007Z 0 [Note] WSREP: gcomm: terminating thread +2023-03-12T07:34:57.291036Z 0 [Note] WSREP: gcomm: joining thread +2023-03-12T07:34:57.291105Z 0 [Note] WSREP: gcomm: closing backend +2023-03-12T07:35:00.358727Z 0 [Note] WSREP: (b04ac56c, 'tcp://0.0.0.0:4567') connection to peer 1d3ea8f5 with addr tcp://172.17.0.2:4567 timed out, no messages seen in PT3S (gmcast.peer_timeout), socket stats: rtt: 5380 rttvar: 9488 rto: 206000 lost: 0 last_data_recv: 3067 cwnd: 10 last_queued_since: 67507258 last_delivered_since: 3066927638 send_queue_length: 0 send_queue_bytes: 0 segment: 0 messages: 0 +2023-03-12T07:35:00.358949Z 0 [Note] WSREP: (b04ac56c, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: tcp://172.17.0.2:4567 +2023-03-12T07:35:01.858729Z 0 [Note] WSREP: (b04ac56c, 'tcp://0.0.0.0:4567') reconnecting to 1d3ea8f5 (tcp://172.17.0.2:4567), attempt 0 +2023-03-12T07:35:02.358730Z 0 [Note] WSREP: cleaning up 3a0423db (tcp://172.17.0.4:4567) +2023-03-12T07:35:02.791365Z 0 [Note] WSREP: declaring node with index 0 suspected, timeout PT5S (evs.suspect_timeout) +2023-03-12T07:35:02.791416Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:03.291452Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:03.791582Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:04.291685Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:04.791780Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:05.291858Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:05.791972Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:06.292051Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:06.792137Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:07.292247Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:07.792343Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:08.292461Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:08.792563Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:09.292658Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:09.792733Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:10.292819Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:10.792902Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:11.292986Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:11.793101Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) suspecting node: 1d3ea8f5 +2023-03-12T07:35:12.293196Z 0 [Note] WSREP: declaring node with index 0 inactive (evs.inactive_timeout) +2023-03-12T07:35:12.293251Z 0 [Note] WSREP: evs::proto(b04ac56c, LEAVING, view_id(REG,1d3ea8f5,18)) detected inactive node: 1d3ea8f5 +2023-03-12T07:35:12.293271Z 0 [Note] WSREP: Current view of cluster as seen by this node +view (view_id(NON_PRIM,1d3ea8f5,18) +memb { + b04ac56c,0 + } +joined { + } +left { + } +partitioned { + 1d3ea8f5,0 + } +) +2023-03-12T07:35:12.293311Z 0 [Note] WSREP: Current view of cluster as seen by this node +view ((empty)) +2023-03-12T07:35:12.293508Z 0 [Note] WSREP: gcomm: closed +2023-03-12T07:35:12.293578Z 0 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 1, memb_num = 2 +2023-03-12T07:35:12.293635Z 0 [Note] WSREP: STATE EXCHANGE: Waiting for state UUID. +2023-03-12T07:35:12.293667Z 0 [Warning] WSREP: 0x32617d8 down context(s) not set +2023-03-12T07:35:12.293680Z 0 [ERROR] WSREP: gcs/src/gcs_core.cpp:core_handle_uuid_msg():885: STATE EXCHANGE: failed for: 2fd950cc-dc29-11ed-b394-d2a8f60fd858: -107 (Transport endpoint is not connected) +2023-03-12T07:35:12.293705Z 0 [Note] WSREP: New COMPONENT: primary = no, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T07:35:12.293715Z 0 [Note] WSREP: Flow-control interval: [100, 100] +2023-03-12T07:35:12.293720Z 0 [Note] WSREP: Received NON-PRIMARY. +2023-03-12T07:35:12.293723Z 0 [Note] WSREP: Shifting SYNCED -> OPEN (TO: 170403895) +2023-03-12T07:35:12.293741Z 0 [Note] WSREP: Received self-leave message. +2023-03-12T07:35:12.293747Z 0 [Note] WSREP: Flow-control interval: [0, 0] +2023-03-12T07:35:12.293750Z 0 [Note] WSREP: Received SELF-LEAVE. Closing connection. +2023-03-12T07:35:12.293760Z 0 [Note] WSREP: Shifting OPEN -> CLOSED (TO: 170403895) +2023-03-12T07:35:12.293837Z 0 [Note] WSREP: RECV thread exiting 0: Success +2023-03-12T07:35:12.293858Z 4 [Note] WSREP: New cluster view: global state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, view# -1: non-Primary, number of nodes: 1, my index: 0, protocol version 3 +2023-03-12T07:35:12.293905Z 4 [Note] WSREP: Setting wsrep_ready to false +2023-03-12T07:35:12.293885Z 0 [Note] WSREP: recv_thread() joined. +2023-03-12T07:35:12.293938Z 0 [Note] WSREP: Closing replication queue. +2023-03-12T07:35:12.293975Z 0 [Note] WSREP: Closing slave action queue. +2023-03-12T07:35:12.293949Z 4 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T07:35:12.293980Z 0 [Note] WSREP: Waiting for active wsrep applier to exit +2023-03-12T07:35:12.294002Z 4 [Note] WSREP: New cluster view: global state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, view# -1: non-Primary, number of nodes: 0, my index: -1, protocol version 3 +2023-03-12T07:35:12.294013Z 4 [Note] WSREP: Setting wsrep_ready to false +2023-03-12T07:35:12.294016Z 4 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T07:35:12.296500Z 4 [Note] WSREP: applier thread exiting (code:0) +2023-03-12T07:35:12.303923Z 9 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T07:35:12.303938Z 11 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T07:35:12.303988Z 2 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T07:35:12.303947Z 6 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T07:35:12.303963Z 10 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T07:35:12.303963Z 7 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T07:35:12.303944Z 5 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T07:35:12.304280Z 1 [Note] WSREP: rollbacker thread exiting +2023-03-12T07:35:12.304541Z 0 [Note] Giving 1 client threads a chance to die gracefully +2023-03-12T07:35:12.304568Z 0 [Note] Shutting down slave threads +2023-03-12T07:35:14.305138Z 0 [Note] Forcefully disconnecting 1 remaining clients +2023-03-12T07:35:14.305226Z 0 [Note] Event Scheduler: Killing the scheduler thread, thread id 3 +2023-03-12T07:35:14.305235Z 0 [Note] Event Scheduler: Waiting for the scheduler thread to reply +2023-03-12T07:35:14.305303Z 0 [Note] Event Scheduler: Stopped +2023-03-12T07:35:14.305312Z 0 [Note] Event Scheduler: Purging the queue. 0 events +2023-03-12T07:35:14.314392Z 0 [Note] WSREP: Service thread queue flushed. +2023-03-12T07:35:14.314571Z 0 [Note] WSREP: MemPool(SlaveTrxHandle): hit ratio: 0, misses: 1, in use: 0, in pool: 1 +2023-03-12T07:35:14.316396Z 0 [Note] Binlog end +2023-03-12T07:35:14.321039Z 0 [Note] Shutting down plugin 'ngram' +2023-03-12T07:35:14.321057Z 0 [Note] Shutting down plugin 'partition' +2023-03-12T07:35:14.321061Z 0 [Note] Shutting down plugin 'BLACKHOLE' +2023-03-12T07:35:14.321065Z 0 [Note] Shutting down plugin 'ARCHIVE' +2023-03-12T07:35:14.321068Z 0 [Note] Shutting down plugin 'MRG_MYISAM' +2023-03-12T07:35:14.321070Z 0 [Note] Shutting down plugin 'MyISAM' +2023-03-12T07:35:14.321079Z 0 [Note] Shutting down plugin 'INNODB_TABLESPACES_SCRUBBING' +2023-03-12T07:35:14.321084Z 0 [Note] Shutting down plugin 'INNODB_TABLESPACES_ENCRYPTION' +2023-03-12T07:35:14.321086Z 0 [Note] Shutting down plugin 'INNODB_SYS_VIRTUAL' +2023-03-12T07:35:14.321089Z 0 [Note] Shutting down plugin 'INNODB_CHANGED_PAGES' +2023-03-12T07:35:14.321101Z 0 [Note] Shutting down plugin 'INNODB_SYS_DATAFILES' +2023-03-12T07:35:14.321103Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESPACES' +2023-03-12T07:35:14.321106Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN_COLS' +2023-03-12T07:35:14.321108Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN' +2023-03-12T07:35:14.321110Z 0 [Note] Shutting down plugin 'INNODB_SYS_FIELDS' +2023-03-12T07:35:14.321113Z 0 [Note] Shutting down plugin 'INNODB_SYS_COLUMNS' +2023-03-12T07:35:14.321115Z 0 [Note] Shutting down plugin 'INNODB_SYS_INDEXES' +2023-03-12T07:35:14.321117Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESTATS' +2023-03-12T07:35:14.321119Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLES' +2023-03-12T07:35:14.321121Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_TABLE' +2023-03-12T07:35:14.321124Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_CACHE' +2023-03-12T07:35:14.321136Z 0 [Note] Shutting down plugin 'INNODB_FT_CONFIG' +2023-03-12T07:35:14.321143Z 0 [Note] Shutting down plugin 'INNODB_FT_BEING_DELETED' +2023-03-12T07:35:14.321145Z 0 [Note] Shutting down plugin 'INNODB_FT_DELETED' +2023-03-12T07:35:14.321155Z 0 [Note] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD' +2023-03-12T07:35:14.321158Z 0 [Note] Shutting down plugin 'INNODB_METRICS' +2023-03-12T07:35:14.321162Z 0 [Note] Shutting down plugin 'INNODB_TEMP_TABLE_INFO' +2023-03-12T07:35:14.321165Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_POOL_STATS' +2023-03-12T07:35:14.321168Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU' +2023-03-12T07:35:14.321170Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE' +2023-03-12T07:35:14.321173Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET' +2023-03-12T07:35:14.321175Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX' +2023-03-12T07:35:14.321178Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM_RESET' +2023-03-12T07:35:14.321180Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM' +2023-03-12T07:35:14.321183Z 0 [Note] Shutting down plugin 'INNODB_CMP_RESET' +2023-03-12T07:35:14.321185Z 0 [Note] Shutting down plugin 'INNODB_CMP' +2023-03-12T07:35:14.321188Z 0 [Note] Shutting down plugin 'INNODB_LOCK_WAITS' +2023-03-12T07:35:14.321191Z 0 [Note] Shutting down plugin 'INNODB_LOCKS' +2023-03-12T07:35:14.321194Z 0 [Note] Shutting down plugin 'INNODB_TRX' +2023-03-12T07:35:14.321197Z 0 [Note] Shutting down plugin 'XTRADB_ZIP_DICT_COLS' +2023-03-12T07:35:14.321201Z 0 [Note] Shutting down plugin 'XTRADB_ZIP_DICT' +2023-03-12T07:35:14.321203Z 0 [Note] Shutting down plugin 'XTRADB_RSEG' +2023-03-12T07:35:14.321206Z 0 [Note] Shutting down plugin 'XTRADB_INTERNAL_HASH_TABLES' +2023-03-12T07:35:14.321209Z 0 [Note] Shutting down plugin 'XTRADB_READ_VIEW' +2023-03-12T07:35:14.321211Z 0 [Note] Shutting down plugin 'InnoDB' +2023-03-12T07:35:14.387199Z 0 [Note] InnoDB: FTS optimize thread exiting. +2023-03-12T07:35:14.387334Z 0 [Note] InnoDB: Starting shutdown... +2023-03-12T07:35:14.487544Z 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysqlib_buffer_pool +2023-03-12T07:35:14.491513Z 0 [Note] InnoDB: Buffer pool(s) dump completed at 230416 9:35:14 +2023-03-12T07:35:14.687721Z 0 [Note] InnoDB: Waiting for page_cleaner to finish flushing of buffer pool +2023-03-12T07:35:18.531819Z 0 [Note] InnoDB: Shutdown completed; log sequence number 35636115468679 +2023-03-12T07:35:18.532029Z 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1" +2023-03-12T07:35:18.532105Z 0 [Note] Shutting down plugin 'MEMORY' +2023-03-12T07:35:18.532134Z 0 [Note] Shutting down plugin 'CSV' +2023-03-12T07:35:18.532154Z 0 [Note] Shutting down plugin 'PERFORMANCE_SCHEMA' +2023-03-12T07:35:18.532229Z 0 [Note] Shutting down plugin 'sha256_password' +2023-03-12T07:35:18.532240Z 0 [Note] Shutting down plugin 'mysql_native_password' +2023-03-12T07:35:18.532243Z 0 [Note] Shutting down plugin 'wsrep' +2023-03-12T07:35:18.532522Z 0 [Note] Shutting down plugin 'binlog' +2023-03-12T07:35:18.533851Z 0 [Note] /usr/sbin/mysqld: Shutdown complete + +2023-03-12T07:38:06.672197Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details). +2023-03-12T07:38:06.672245Z 0 [Warning] 'NO_AUTO_CREATE_USER' sql mode was not set. +2023-03-12T07:38:06.673334Z 0 [Note] /usr/sbin/mysqld (mysqld 5.7.40-43-57-log) starting as process 1708410 ... +2023-03-12T07:38:06.679999Z 0 [Note] WSREP: Setting wsrep_ready to false +2023-03-12T07:38:06.680017Z 0 [Note] WSREP: No pre-stored wsrep-start position found. Skipping position initialization. +2023-03-12T07:38:06.680025Z 0 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so' +2023-03-12T07:38:06.680693Z 0 [Note] WSREP: wsrep_load(): Galera 3.63(rf47405c) by Codership Oy loaded successfully. +2023-03-12T07:38:06.680759Z 0 [Note] WSREP: CRC-32C: using 64-bit x86 acceleration. +2023-03-12T07:38:06.681065Z 0 [Note] WSREP: Found saved state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, safe_to_bootstrap: 1 +2023-03-12T07:38:06.681190Z 0 [Note] WSREP: Recovering GCache ring buffer: version: 2, UUID: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049, offset: 1280 +2023-03-12T07:38:06.681268Z 0 [Note] WSREP: GCache::RingBuffer initial scan... 0.0% ( 0/107374182440 bytes) complete. +2023-03-12T07:38:06.681290Z 0 [Note] WSREP: GCache::RingBuffer initial scan...100.0% (107374182440/107374182440 bytes) complete. +2023-03-12T07:38:06.681296Z 0 [Note] WSREP: Recovering GCache ring buffer: found gapless sequence 170403895-170403895 +2023-03-12T07:38:06.681310Z 0 [Note] WSREP: GCache::RingBuffer unused buffers scan... 0.0% ( 0/248 bytes) complete. +2023-03-12T07:38:06.681316Z 0 [Note] WSREP: GCache::RingBuffer unused buffers scan...100.0% (248/248 bytes) complete. +2023-03-12T07:38:06.681321Z 0 [Note] WSREP: Recovering GCache ring buffer: found 0/1 locked buffers +2023-03-12T07:38:06.681325Z 0 [Note] WSREP: Recovering GCache ring buffer: free space: 107374182152/107374182400 +2023-03-12T07:38:06.682882Z 0 [Note] WSREP: Passing config to GCS: base_dir = /var/lib/mysql; base_host = 172.17.0.3; base_port = 4567; cert.log_conflicts = no; cert.optimistic_pa = yes; debug = no; evs.auto_evict = 0; evs.delay_margin = PT1S; evs.delayed_keep_period = PT30S; evs.inactive_check_period = PT0.5S; evs.inactive_timeout = PT15S; evs.join_retrans_period = PT1S; evs.max_install_timeouts = 3; evs.send_window = 10; evs.stats_report_period = PT1M; evs.suspect_timeout = PT5S; evs.user_send_window = 4; evs.view_forget_timeout = PT24H; gcache.dir = /var/lib/mysql; gcache.freeze_purge_at_seqno = -1; gcache.keep_pages_count = 0; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/mysql/galera.cache; gcache.page_size = 128M; gcache.recover = yes; gcache.size = 100G; gcomm.thread_prio = ; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 100; gcs.fc_master_slave = no; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = no; gmcast.segment = 0; gmcast.version = 0; pc.announce_timeout = PT3S; pc.checksum = false; pc.ignore_quorum = false; pc.ignore_sb = false; pc.npvo = false; pc.recovery = true; pc.version = 0; pc.wait_prim = true; pc.wait_prim_timeout = PT30S; pc.weight = 1; protonet.backend = asio; protonet.version = 0; repl.causal_read_timeout = PT30S; repl.commit_order = 3; repl.key_format = FLAT8; repl.max_ws_size = 2147483647; repl.proto_max = 9; socket.checksum = 2; socket.recv_buf_size = auto; socket.send_buf_size = auto; +2023-03-12T07:38:06.692242Z 0 [Note] WSREP: Assign initial position for certification: 170403895, protocol version: -1 +2023-03-12T07:38:06.692271Z 0 [Note] WSREP: Preparing to initiate SST/IST +2023-03-12T07:38:06.692278Z 0 [Note] WSREP: Starting replication +2023-03-12T07:38:06.692285Z 0 [Note] WSREP: Setting initial position to 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895 +2023-03-12T07:38:06.692656Z 0 [Note] WSREP: Using CRC-32C for message checksums. +2023-03-12T07:38:06.692804Z 0 [Note] WSREP: gcomm thread scheduling priority set to other:0 +2023-03-12T07:38:06.692905Z 0 [Note] WSREP: Fail to access the file (/var/lib/mysql/gvwstate.dat) error (No such file or directory). It is possible if node is booting for first time or re-booting after a graceful shutdown +2023-03-12T07:38:06.692913Z 0 [Note] WSREP: Restoring primary-component from disk failed. Either node is booting for first time or re-booting after a graceful shutdown +2023-03-12T07:38:06.693090Z 0 [Note] WSREP: GMCast version 0 +2023-03-12T07:38:06.693288Z 0 [Note] WSREP: (a0bdff1f, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567 +2023-03-12T07:38:06.693296Z 0 [Note] WSREP: (a0bdff1f, 'tcp://0.0.0.0:4567') multicast: , ttl: 1 +2023-03-12T07:38:06.693553Z 0 [Note] WSREP: EVS version 0 +2023-03-12T07:38:06.693619Z 0 [Note] WSREP: gcomm: bootstrapping new group 'pxc_cluster' +2023-03-12T07:38:06.693642Z 0 [Note] WSREP: start_prim is enabled, turn off pc_recovery +2023-03-12T07:38:06.694177Z 0 [Note] WSREP: Node a0bdff1f state primary +2023-03-12T07:38:06.694211Z 0 [Note] WSREP: Current view of cluster as seen by this node +view (view_id(PRIM,a0bdff1f,1) +memb { + a0bdff1f,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T07:38:06.694218Z 0 [Note] WSREP: Save the discovered primary-component to disk +2023-03-12T07:38:06.695758Z 0 [Note] WSREP: discarding pending addr without UUID: tcp://172.17.0.2:4567 +2023-03-12T07:38:06.695774Z 0 [Note] WSREP: discarding pending addr proto entry 0x3978ac0 +2023-03-12T07:38:06.695805Z 0 [Note] WSREP: discarding pending addr without UUID: tcp://172.17.0.3:4567 +2023-03-12T07:38:06.695810Z 0 [Note] WSREP: discarding pending addr proto entry 0x39d32c0 +2023-03-12T07:38:06.695837Z 0 [Note] WSREP: discarding pending addr without UUID: tcp://172.17.0.4:4567 +2023-03-12T07:38:06.695842Z 0 [Note] WSREP: discarding pending addr proto entry 0x39db990 +2023-03-12T07:38:06.695870Z 0 [Note] WSREP: gcomm: connected +2023-03-12T07:38:06.695987Z 0 [Note] WSREP: Shifting CLOSED -> OPEN (TO: 0) +2023-03-12T07:38:06.696042Z 0 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T07:38:06.696146Z 0 [Note] WSREP: STATE_EXCHANGE: sent state UUID: a0be7aeb-dc29-11ed-8960-47efdf15ee41 +2023-03-12T07:38:06.696152Z 0 [Note] WSREP: Waiting for SST/IST to complete. +2023-03-12T07:38:06.696154Z 0 [Note] WSREP: STATE EXCHANGE: sent state msg: a0be7aeb-dc29-11ed-8960-47efdf15ee41 +2023-03-12T07:38:06.696175Z 0 [Note] WSREP: STATE EXCHANGE: got state msg: a0be7aeb-dc29-11ed-8960-47efdf15ee41 from 0 (node2) +2023-03-12T07:38:06.696180Z 0 [Note] WSREP: Quorum results: + version = 6, + component = PRIMARY, + conf_id = 0, + members = 1/1 (primary/total), + act_id = 170403895, + last_appl. = -1, + protocols = 0/9/3 (gcs/repl/appl), + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T07:38:06.696184Z 0 [Note] WSREP: Flow-control interval: [100, 100] +2023-03-12T07:38:06.696187Z 0 [Note] WSREP: Restored state OPEN -> JOINED (170403895) +2023-03-12T07:38:06.696207Z 0 [Note] WSREP: Member 0.0 (node2) synced with group. +2023-03-12T07:38:06.696210Z 0 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 170403895) +2023-03-12T07:38:06.696333Z 2 [Note] WSREP: REPL Protocols: 9 (4, 2) +2023-03-12T07:38:06.696353Z 2 [Note] WSREP: REPL Protocols: 9 (4, 2) +2023-03-12T07:38:06.696362Z 2 [Note] WSREP: New cluster view: global state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, view# 1: Primary, number of nodes: 1, my index: 0, protocol version 3 +2023-03-12T07:38:06.696366Z 2 [Note] WSREP: Setting wsrep_ready to true +2023-03-12T07:38:06.696392Z 0 [Note] WSREP: SST complete, seqno: 170403895 +2023-03-12T07:38:06.698309Z 0 [Note] InnoDB: PUNCH HOLE support available +2023-03-12T07:38:06.698333Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins +2023-03-12T07:38:06.698338Z 0 [Note] InnoDB: Uses event mutexes +2023-03-12T07:38:06.698343Z 0 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier +2023-03-12T07:38:06.698347Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.12 +2023-03-12T07:38:06.698351Z 0 [Note] InnoDB: Using Linux native AIO +2023-03-12T07:38:06.698993Z 0 [Note] InnoDB: Number of pools: 1 +2023-03-12T07:38:06.699123Z 0 [Note] InnoDB: Using CPU crc32 instructions +2023-03-12T07:38:06.699619Z 0 [ERROR] InnoDB: Failed to create check sector file, errno:13 Please confirm O_DIRECT is supported and remove the file /data/check_sector_size if it exists. +2023-03-12T07:38:06.705077Z 0 [Note] InnoDB: Initializing buffer pool, total size = 120G, instances = 64, chunk size = 128M +2023-03-12T07:38:09.653887Z 0 [Note] InnoDB: Completed initialization of buffer pool +2023-03-12T07:38:10.404859Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority(). +2023-03-12T07:38:10.438216Z 0 [Note] InnoDB: Crash recovery did not find the parallel doublewrite buffer at /var/lib/mysqlxb_doublewrite +2023-03-12T07:38:10.440979Z 0 [Note] InnoDB: Highest supported file format is Barracuda. +2023-03-12T07:38:11.512958Z 0 [Note] InnoDB: Progress in MB: + 100 200 +2023-03-12T07:38:12.860135Z 0 [Note] InnoDB: Created parallel doublewrite buffer at /var/lib/mysqlxb_doublewrite, size 251658240 bytes +2023-03-12T07:38:14.731165Z 0 [Note] InnoDB: Creating shared tablespace for temporary tables +2023-03-12T07:38:14.731318Z 0 [Note] InnoDB: Setting file '/var/lib/mysqlibtmp1' size to 12 MB. Physically writing the file full; Please wait ... +2023-03-12T07:38:14.799825Z 0 [Note] InnoDB: File '/var/lib/mysqlibtmp1' size is now 12 MB. +2023-03-12T07:38:14.802928Z 0 [Note] InnoDB: 96 redo rollback segment(s) found. 96 redo rollback segment(s) are active. +2023-03-12T07:38:14.802965Z 0 [Note] InnoDB: 32 non-redo rollback segment(s) are active. +2023-03-12T07:38:14.803535Z 0 [Note] InnoDB: page_cleaner: 1000ms intended loop took 4399ms. The settings might not be optimal. (flushed=0, during the time.) +2023-03-12T07:38:14.805340Z 0 [Note] InnoDB: Waiting for purge to start +2023-03-12T07:38:14.855843Z 0 [Note] InnoDB: Percona XtraDB (http://www.percona.com) 5.7.40-43 started; log sequence number 35636115468679 +2023-03-12T07:38:14.856028Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysqlib_buffer_pool +2023-03-12T07:38:14.856378Z 0 [Note] Plugin 'FEDERATED' is disabled. +2023-03-12T07:38:14.876786Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +2023-03-12T07:38:14.876809Z 0 [Note] Skipping generation of SSL certificates as certificate files are present in data directory. +2023-03-12T07:38:14.876817Z 0 [Warning] A deprecated TLS version TLSv1 is enabled. Please use TLSv1.2 or higher. +2023-03-12T07:38:14.876820Z 0 [Warning] A deprecated TLS version TLSv1.1 is enabled. Please use TLSv1.2 or higher. +2023-03-12T07:38:14.877390Z 0 [Warning] CA certificate ca.pem is self signed. +2023-03-12T07:38:14.877426Z 0 [Note] Skipping generation of RSA key pair as key files are present in data directory. +2023-03-12T07:38:14.877506Z 0 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306 +2023-03-12T07:38:14.877521Z 0 [Note] - '0.0.0.0' resolves to '0.0.0.0'; +2023-03-12T07:38:14.877548Z 0 [Note] Server socket created on IP: '0.0.0.0'. +2023-03-12T07:38:14.892278Z 0 [Warning] 'proxies_priv' entry '@ root@nsql-slave' ignored in --skip-name-resolve mode. +2023-03-12T07:38:14.955431Z 0 [Warning] Error during --relay-log-recovery: Could not locate rotate event from master in relay log file. +2023-03-12T07:38:14.955451Z 0 [Warning] Server was not able to find a rotate event from master server to initialize relay log recovery for channel ''. Skipping relay log recovery for the channel. +2023-03-12T07:38:14.964041Z 0 [Warning] Recovery from master pos 69560832 and file mysql-bin.019557 for channel 'master_old'. Previous relay log pos and relay log file had been set to 4, ./relay-bin-master_old.000001 respectively. +2023-03-12T07:38:14.970301Z 0 [Note] Event Scheduler: Loaded 0 events +2023-03-12T07:38:14.970580Z 3 [Note] Event Scheduler: scheduler thread started with id 3 +2023-03-12T07:38:14.971021Z 0 [Note] /usr/sbin/mysqld: ready for connections. +Version: '5.7.40-43-57-log' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), Release rel43, Revision ab4d0bd, WSREP version 31.63, wsrep_31.63 +2023-03-12T07:38:14.973475Z 2 [Note] WSREP: Initialized wsrep sidno 2 +2023-03-12T07:38:14.973501Z 2 [Note] WSREP: Auto Increment Offset/Increment re-align with cluster membership change (Offset: 1 -> 1) (Increment: 1 -> 1) +2023-03-12T07:38:14.973528Z 2 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T07:38:14.973551Z 2 [Note] WSREP: Assign initial position for certification: 170403895, protocol version: 4 +2023-03-12T07:38:14.973613Z 0 [Note] WSREP: Service thread queue flushed. +2023-03-12T07:38:14.976517Z 2 [Note] WSREP: Synchronized with group, ready for connections +2023-03-12T07:38:14.976537Z 2 [Note] WSREP: Setting wsrep_ready to true +2023-03-12T07:38:14.976541Z 2 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T07:38:22.874815Z 0 [Note] InnoDB: Buffer pool(s) load completed at 230416 9:38:22 +2023-03-12T07:39:26.662267Z 0 [Note] WSREP: (a0bdff1f, 'tcp://0.0.0.0:4567') connection established to d0682e09 tcp://172.17.0.4:4567 +2023-03-12T07:39:26.662459Z 0 [Note] WSREP: (a0bdff1f, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T07:39:27.162350Z 0 [Note] WSREP: declaring d0682e09 at tcp://172.17.0.4:4567 stable +2023-03-12T07:39:27.162584Z 0 [Note] WSREP: Node a0bdff1f state primary +2023-03-12T07:39:27.162702Z 0 [Note] WSREP: Current view of cluster as seen by this node +view (view_id(PRIM,a0bdff1f,2) +memb { + a0bdff1f,0 + d0682e09,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T07:39:27.162719Z 0 [Note] WSREP: Save the discovered primary-component to disk +2023-03-12T07:39:27.164824Z 0 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 2 +2023-03-12T07:39:27.164912Z 0 [Note] WSREP: STATE_EXCHANGE: sent state UUID: d0b508a2-dc29-11ed-a481-e22ffd39e7c5 +2023-03-12T07:39:27.166607Z 0 [Note] WSREP: STATE EXCHANGE: sent state msg: d0b508a2-dc29-11ed-a481-e22ffd39e7c5 +2023-03-12T07:39:27.166721Z 0 [Note] WSREP: STATE EXCHANGE: got state msg: d0b508a2-dc29-11ed-a481-e22ffd39e7c5 from 0 (node2) +2023-03-12T07:39:27.662626Z 0 [Note] WSREP: STATE EXCHANGE: got state msg: d0b508a2-dc29-11ed-a481-e22ffd39e7c5 from 1 (node3) +2023-03-12T07:39:27.662683Z 0 [Note] WSREP: Quorum results: + version = 6, + component = PRIMARY, + conf_id = 1, + members = 2/2 (primary/total), + act_id = 170403895, + last_appl. = 0, + protocols = 0/9/3 (gcs/repl/appl), + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T07:39:27.662689Z 0 [Note] WSREP: Flow-control interval: [141, 141] +2023-03-12T07:39:27.662702Z 0 [Note] WSREP: Member 1.0 (node3) synced with group. +2023-03-12T07:39:27.662862Z 2 [Note] WSREP: REPL Protocols: 9 (4, 2) +2023-03-12T07:39:27.662886Z 2 [Note] WSREP: REPL Protocols: 9 (4, 2) +2023-03-12T07:39:27.662895Z 2 [Note] WSREP: New cluster view: global state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, view# 2: Primary, number of nodes: 2, my index: 0, protocol version 3 +2023-03-12T07:39:27.662899Z 2 [Note] WSREP: Setting wsrep_ready to true +2023-03-12T07:39:27.662903Z 2 [Note] WSREP: Auto Increment Offset/Increment re-align with cluster membership change (Offset: 1 -> 1) (Increment: 1 -> 2) +2023-03-12T07:39:27.662906Z 2 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T07:39:27.662912Z 2 [Note] WSREP: Assign initial position for certification: 170403895, protocol version: 4 +2023-03-12T07:39:27.662975Z 0 [Note] WSREP: Service thread queue flushed. +2023-03-12T07:39:29.704402Z 0 [Note] WSREP: (a0bdff1f, 'tcp://0.0.0.0:4567') turning message relay requesting off +2023-03-12T07:43:08.563339Z 0 [Note] WSREP: (a0bdff1f, 'tcp://0.0.0.0:4567') connection established to 54ab931e tcp://172.17.0.2:4567 +2023-03-12T07:43:08.563487Z 0 [Note] WSREP: (a0bdff1f, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T07:43:09.063375Z 0 [Note] WSREP: declaring 54ab931e at tcp://172.17.0.2:4567 stable +2023-03-12T07:43:09.063430Z 0 [Note] WSREP: declaring d0682e09 at tcp://172.17.0.4:4567 stable +2023-03-12T07:43:09.063586Z 0 [Note] WSREP: Node a0bdff1f state primary +2023-03-12T07:43:09.063835Z 0 [Note] WSREP: Current view of cluster as seen by this node +view (view_id(PRIM,54ab931e,3) +memb { + 54ab931e,0 + a0bdff1f,0 + d0682e09,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T07:43:09.063860Z 0 [Note] WSREP: Save the discovered primary-component to disk +2023-03-12T07:43:09.065740Z 0 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 1, memb_num = 3 +2023-03-12T07:43:09.065762Z 0 [Note] WSREP: STATE EXCHANGE: Waiting for state UUID. +2023-03-12T07:43:09.563585Z 0 [Note] WSREP: STATE EXCHANGE: sent state msg: 554459ab-dc2a-11ed-bee3-a2a70b8b4028 +2023-03-12T07:43:09.563712Z 0 [Note] WSREP: STATE EXCHANGE: got state msg: 554459ab-dc2a-11ed-bee3-a2a70b8b4028 from 0 (node1) +2023-03-12T07:43:09.563735Z 0 [Note] WSREP: STATE EXCHANGE: got state msg: 554459ab-dc2a-11ed-bee3-a2a70b8b4028 from 1 (node2) +2023-03-12T07:43:09.563740Z 0 [Note] WSREP: STATE EXCHANGE: got state msg: 554459ab-dc2a-11ed-bee3-a2a70b8b4028 from 2 (node3) +2023-03-12T07:43:09.563744Z 0 [Note] WSREP: Quorum results: + version = 6, + component = PRIMARY, + conf_id = 2, + members = 3/3 (primary/total), + act_id = 170403895, + last_appl. = 0, + protocols = 0/9/3 (gcs/repl/appl), + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T07:43:09.563749Z 0 [Note] WSREP: Flow-control interval: [173, 173] +2023-03-12T07:43:09.563862Z 2 [Note] WSREP: REPL Protocols: 9 (4, 2) +2023-03-12T07:43:09.563886Z 2 [Note] WSREP: REPL Protocols: 9 (4, 2) +2023-03-12T07:43:09.563893Z 2 [Note] WSREP: New cluster view: global state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, view# 3: Primary, number of nodes: 3, my index: 1, protocol version 3 +2023-03-12T07:43:09.563897Z 2 [Note] WSREP: Setting wsrep_ready to true +2023-03-12T07:43:09.563900Z 2 [Note] WSREP: Auto Increment Offset/Increment re-align with cluster membership change (Offset: 1 -> 2) (Increment: 2 -> 3) +2023-03-12T07:43:09.563904Z 2 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T07:43:09.563911Z 2 [Note] WSREP: Assign initial position for certification: 170403895, protocol version: 4 +2023-03-12T07:43:09.563983Z 0 [Note] WSREP: Service thread queue flushed. +2023-03-12T07:43:09.564002Z 0 [Note] WSREP: Member 0.0 (node1) synced with group. +2023-03-12T07:43:11.720867Z 0 [Note] WSREP: (a0bdff1f, 'tcp://0.0.0.0:4567') turning message relay requesting off +2023-03-12T07:49:45.317891Z 0 [Note] WSREP: Received shutdown signal. Will sleep for 10 secs before initiating shutdown. pxc_maint_mode switched to SHUTDOWN +2023-03-12T07:49:55.318299Z 0 [Note] WSREP: Stop replication +2023-03-12T07:49:55.318361Z 0 [Note] WSREP: Closing send monitor... +2023-03-12T07:49:55.318378Z 0 [Note] WSREP: Closed send monitor. +2023-03-12T07:49:55.318415Z 0 [Note] WSREP: gcomm: terminating thread +2023-03-12T07:49:55.318427Z 0 [Note] WSREP: gcomm: joining thread +2023-03-12T07:49:55.318474Z 0 [Note] WSREP: gcomm: closing backend +2023-03-12T07:49:55.318859Z 0 [Note] WSREP: Current view of cluster as seen by this node +view (view_id(NON_PRIM,54ab931e,3) +memb { + a0bdff1f,0 + } +joined { + } +left { + } +partitioned { + 54ab931e,0 + d0682e09,0 + } +) +2023-03-12T07:49:55.318899Z 0 [Note] WSREP: Current view of cluster as seen by this node +view ((empty)) +2023-03-12T07:49:55.319122Z 0 [Note] WSREP: gcomm: closed +2023-03-12T07:49:55.319157Z 0 [Note] WSREP: New COMPONENT: primary = no, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T07:49:55.319190Z 0 [Note] WSREP: Flow-control interval: [100, 100] +2023-03-12T07:49:55.319196Z 0 [Note] WSREP: Received NON-PRIMARY. +2023-03-12T07:49:55.319203Z 0 [Note] WSREP: Shifting SYNCED -> OPEN (TO: 170403895) +2023-03-12T07:49:55.319215Z 0 [Note] WSREP: Received self-leave message. +2023-03-12T07:49:55.319224Z 0 [Note] WSREP: Flow-control interval: [0, 0] +2023-03-12T07:49:55.319227Z 0 [Note] WSREP: Received SELF-LEAVE. Closing connection. +2023-03-12T07:49:55.319230Z 0 [Note] WSREP: Shifting OPEN -> CLOSED (TO: 170403895) +2023-03-12T07:49:55.319242Z 0 [Note] WSREP: RECV thread exiting 0: Success +2023-03-12T07:49:55.319272Z 0 [Note] WSREP: recv_thread() joined. +2023-03-12T07:49:55.319282Z 0 [Note] WSREP: Closing replication queue. +2023-03-12T07:49:55.319285Z 0 [Note] WSREP: Closing slave action queue. +2023-03-12T07:49:55.319289Z 0 [Note] WSREP: Waiting for active wsrep applier to exit +2023-03-12T07:49:55.319302Z 2 [Note] WSREP: New cluster view: global state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, view# -1: non-Primary, number of nodes: 1, my index: 0, protocol version 3 +2023-03-12T07:49:55.319327Z 2 [Note] WSREP: Setting wsrep_ready to false +2023-03-12T07:49:55.319334Z 2 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T07:49:55.319343Z 2 [Note] WSREP: New cluster view: global state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, view# -1: non-Primary, number of nodes: 0, my index: -1, protocol version 3 +2023-03-12T07:49:55.319359Z 2 [Note] WSREP: Setting wsrep_ready to false +2023-03-12T07:49:55.319366Z 2 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T07:49:55.320835Z 2 [Note] WSREP: applier thread exiting (code:0) +2023-03-12T07:49:55.329357Z 4 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T07:49:55.329365Z 9 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T07:49:55.329366Z 5 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T07:49:55.329366Z 6 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T07:49:55.329367Z 10 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T07:49:55.329373Z 7 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T07:49:55.329386Z 8 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T07:49:55.329655Z 1 [Note] WSREP: rollbacker thread exiting +2023-03-12T07:49:55.329838Z 0 [Note] Giving 1 client threads a chance to die gracefully +2023-03-12T07:49:55.329861Z 0 [Note] Shutting down slave threads +2023-03-12T07:49:57.330278Z 0 [Note] Forcefully disconnecting 1 remaining clients +2023-03-12T07:49:57.330345Z 0 [Note] Event Scheduler: Killing the scheduler thread, thread id 3 +2023-03-12T07:49:57.330354Z 0 [Note] Event Scheduler: Waiting for the scheduler thread to reply +2023-03-12T07:49:57.330423Z 0 [Note] Event Scheduler: Stopped +2023-03-12T07:49:57.330435Z 0 [Note] Event Scheduler: Purging the queue. 0 events +2023-03-12T07:49:57.338974Z 0 [Note] WSREP: Service thread queue flushed. +2023-03-12T07:49:57.339077Z 0 [Note] WSREP: MemPool(SlaveTrxHandle): hit ratio: 0, misses: 0, in use: 0, in pool: 0 +2023-03-12T07:49:57.340939Z 0 [Note] Binlog end +2023-03-12T07:49:57.342905Z 0 [Note] Shutting down plugin 'ngram' +2023-03-12T07:49:57.342936Z 0 [Note] Shutting down plugin 'partition' +2023-03-12T07:49:57.342942Z 0 [Note] Shutting down plugin 'BLACKHOLE' +2023-03-12T07:49:57.342948Z 0 [Note] Shutting down plugin 'ARCHIVE' +2023-03-12T07:49:57.342954Z 0 [Note] Shutting down plugin 'MRG_MYISAM' +2023-03-12T07:49:57.342958Z 0 [Note] Shutting down plugin 'MyISAM' +2023-03-12T07:49:57.342966Z 0 [Note] Shutting down plugin 'INNODB_TABLESPACES_SCRUBBING' +2023-03-12T07:49:57.342976Z 0 [Note] Shutting down plugin 'INNODB_TABLESPACES_ENCRYPTION' +2023-03-12T07:49:57.342978Z 0 [Note] Shutting down plugin 'INNODB_SYS_VIRTUAL' +2023-03-12T07:49:57.342981Z 0 [Note] Shutting down plugin 'INNODB_CHANGED_PAGES' +2023-03-12T07:49:57.342984Z 0 [Note] Shutting down plugin 'INNODB_SYS_DATAFILES' +2023-03-12T07:49:57.342987Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESPACES' +2023-03-12T07:49:57.342990Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN_COLS' +2023-03-12T07:49:57.342994Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN' +2023-03-12T07:49:57.342997Z 0 [Note] Shutting down plugin 'INNODB_SYS_FIELDS' +2023-03-12T07:49:57.342999Z 0 [Note] Shutting down plugin 'INNODB_SYS_COLUMNS' +2023-03-12T07:49:57.343002Z 0 [Note] Shutting down plugin 'INNODB_SYS_INDEXES' +2023-03-12T07:49:57.343005Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESTATS' +2023-03-12T07:49:57.343008Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLES' +2023-03-12T07:49:57.343012Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_TABLE' +2023-03-12T07:49:57.343017Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_CACHE' +2023-03-12T07:49:57.343019Z 0 [Note] Shutting down plugin 'INNODB_FT_CONFIG' +2023-03-12T07:49:57.343021Z 0 [Note] Shutting down plugin 'INNODB_FT_BEING_DELETED' +2023-03-12T07:49:57.343024Z 0 [Note] Shutting down plugin 'INNODB_FT_DELETED' +2023-03-12T07:49:57.343027Z 0 [Note] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD' +2023-03-12T07:49:57.343029Z 0 [Note] Shutting down plugin 'INNODB_METRICS' +2023-03-12T07:49:57.343032Z 0 [Note] Shutting down plugin 'INNODB_TEMP_TABLE_INFO' +2023-03-12T07:49:57.343036Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_POOL_STATS' +2023-03-12T07:49:57.343038Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU' +2023-03-12T07:49:57.343041Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE' +2023-03-12T07:49:57.343055Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET' +2023-03-12T07:49:57.343064Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX' +2023-03-12T07:49:57.343067Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM_RESET' +2023-03-12T07:49:57.343069Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM' +2023-03-12T07:49:57.343072Z 0 [Note] Shutting down plugin 'INNODB_CMP_RESET' +2023-03-12T07:49:57.343075Z 0 [Note] Shutting down plugin 'INNODB_CMP' +2023-03-12T07:49:57.343078Z 0 [Note] Shutting down plugin 'INNODB_LOCK_WAITS' +2023-03-12T07:49:57.343081Z 0 [Note] Shutting down plugin 'INNODB_LOCKS' +2023-03-12T07:49:57.343084Z 0 [Note] Shutting down plugin 'INNODB_TRX' +2023-03-12T07:49:57.343087Z 0 [Note] Shutting down plugin 'XTRADB_ZIP_DICT_COLS' +2023-03-12T07:49:57.343090Z 0 [Note] Shutting down plugin 'XTRADB_ZIP_DICT' +2023-03-12T07:49:57.343093Z 0 [Note] Shutting down plugin 'XTRADB_RSEG' +2023-03-12T07:49:57.343095Z 0 [Note] Shutting down plugin 'XTRADB_INTERNAL_HASH_TABLES' +2023-03-12T07:49:57.343099Z 0 [Note] Shutting down plugin 'XTRADB_READ_VIEW' +2023-03-12T07:49:57.343101Z 0 [Note] Shutting down plugin 'InnoDB' +2023-03-12T07:49:57.362824Z 0 [Note] InnoDB: FTS optimize thread exiting. +2023-03-12T07:49:57.362934Z 0 [Note] InnoDB: Starting shutdown... +2023-03-12T07:49:57.463069Z 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysqlib_buffer_pool +2023-03-12T07:49:57.464543Z 0 [Note] InnoDB: Buffer pool(s) dump completed at 230416 9:49:57 +2023-03-12T07:49:58.063558Z 0 [Note] InnoDB: Waiting for page_cleaner to finish flushing of buffer pool +2023-03-12T07:50:00.604254Z 0 [Note] InnoDB: Shutdown completed; log sequence number 35636115472123 +2023-03-12T07:50:00.604452Z 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1" +2023-03-12T07:50:00.604490Z 0 [Note] Shutting down plugin 'MEMORY' +2023-03-12T07:50:00.604506Z 0 [Note] Shutting down plugin 'CSV' +2023-03-12T07:50:00.604512Z 0 [Note] Shutting down plugin 'PERFORMANCE_SCHEMA' +2023-03-12T07:50:00.604551Z 0 [Note] Shutting down plugin 'sha256_password' +2023-03-12T07:50:00.604559Z 0 [Note] Shutting down plugin 'mysql_native_password' +2023-03-12T07:50:00.604561Z 0 [Note] Shutting down plugin 'wsrep' +2023-03-12T07:50:00.604738Z 0 [Note] Shutting down plugin 'binlog' +2023-03-12T07:50:00.605309Z 0 [Note] /usr/sbin/mysqld: Shutdown complete + +2023-03-12T08:46:48.941882Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details). +2023-03-12T08:46:48.941943Z 0 [Warning] 'NO_AUTO_CREATE_USER' sql mode was not set. +2023-03-12T08:46:48.943442Z 0 [Note] /usr/sbin/mysqld (mysqld 5.7.40-43-57-log) starting as process 1711717 ... +2023-03-12T08:46:48.947905Z 0 [Note] WSREP: Setting wsrep_ready to false +2023-03-12T08:46:48.947926Z 0 [Note] WSREP: No pre-stored wsrep-start position found. Skipping position initialization. +2023-03-12T08:46:48.947933Z 0 [Note] WSREP: wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so' +2023-03-12T08:46:48.948547Z 0 [Note] WSREP: wsrep_load(): Galera 3.63(rf47405c) by Codership Oy loaded successfully. +2023-03-12T08:46:48.948598Z 0 [Note] WSREP: CRC-32C: using 64-bit x86 acceleration. +2023-03-12T08:46:48.948835Z 0 [Note] WSREP: Found saved state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, safe_to_bootstrap: 0 +2023-03-12T08:46:48.948926Z 0 [Note] WSREP: Recovering GCache ring buffer: version: 2, UUID: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049, offset: 1280 +2023-03-12T08:46:48.948993Z 0 [Note] WSREP: GCache::RingBuffer initial scan... 0.0% ( 0/107374182440 bytes) complete. +2023-03-12T08:46:48.949007Z 0 [Note] WSREP: GCache::RingBuffer initial scan...100.0% (107374182440/107374182440 bytes) complete. +2023-03-12T08:46:48.949013Z 0 [Note] WSREP: Recovering GCache ring buffer: found gapless sequence 170403895-170403895 +2023-03-12T08:46:48.949023Z 0 [Note] WSREP: GCache::RingBuffer unused buffers scan... 0.0% ( 0/248 bytes) complete. +2023-03-12T08:46:48.949034Z 0 [Note] WSREP: GCache::RingBuffer unused buffers scan...100.0% (248/248 bytes) complete. +2023-03-12T08:46:48.949037Z 0 [Note] WSREP: Recovering GCache ring buffer: found 0/1 locked buffers +2023-03-12T08:46:48.949040Z 0 [Note] WSREP: Recovering GCache ring buffer: free space: 107374182152/107374182400 +2023-03-12T08:46:48.953801Z 0 [Note] WSREP: Passing config to GCS: base_dir = /var/lib/mysql; base_host = 172.17.0.3; base_port = 4567; cert.log_conflicts = no; cert.optimistic_pa = yes; debug = no; evs.auto_evict = 0; evs.delay_margin = PT1S; evs.delayed_keep_period = PT30S; evs.inactive_check_period = PT0.5S; evs.inactive_timeout = PT15S; evs.join_retrans_period = PT1S; evs.max_install_timeouts = 3; evs.send_window = 10; evs.stats_report_period = PT1M; evs.suspect_timeout = PT5S; evs.user_send_window = 4; evs.view_forget_timeout = PT24H; gcache.dir = /var/lib/mysql; gcache.freeze_purge_at_seqno = -1; gcache.keep_pages_count = 0; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = /var/lib/mysql/galera.cache; gcache.page_size = 128M; gcache.recover = yes; gcache.size = 100G; gcomm.thread_prio = ; gcs.fc_debug = 0; gcs.fc_factor = 1; gcs.fc_limit = 100; gcs.fc_master_slave = no; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = no; gmcast.segment = 0; gmcast.version = 0; pc.announce_timeout = PT3S; pc.checksum = false; pc.ignore_quorum = false; pc.ignore_sb = false; pc.npvo = false; pc.recovery = true; pc.version = 0; pc.wait_prim = true; pc.wait_prim_timeout = PT30S; pc.weight = 1; protonet.backend = asio; protonet.version = 0; repl.causal_read_timeout = PT30S; repl.commit_order = 3; repl.key_format = FLAT8; repl.max_ws_size = 2147483647; repl.proto_max = 9; socket.checksum = 2; socket.recv_buf_size = auto; socket.send_buf_size = auto; +2023-03-12T08:46:48.961684Z 0 [Note] WSREP: Assign initial position for certification: 170403895, protocol version: -1 +2023-03-12T08:46:48.961706Z 0 [Note] WSREP: Preparing to initiate SST/IST +2023-03-12T08:46:48.961711Z 0 [Note] WSREP: Starting replication +2023-03-12T08:46:48.961717Z 0 [Note] WSREP: Setting initial position to 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895 +2023-03-12T08:46:48.961985Z 0 [Note] WSREP: Using CRC-32C for message checksums. +2023-03-12T08:46:48.962098Z 0 [Note] WSREP: gcomm thread scheduling priority set to other:0 +2023-03-12T08:46:48.962159Z 0 [Note] WSREP: Fail to access the file (/var/lib/mysql/gvwstate.dat) error (No such file or directory). It is possible if node is booting for first time or re-booting after a graceful shutdown +2023-03-12T08:46:48.962164Z 0 [Note] WSREP: Restoring primary-component from disk failed. Either node is booting for first time or re-booting after a graceful shutdown +2023-03-12T08:46:48.962266Z 0 [Note] WSREP: GMCast version 0 +2023-03-12T08:46:48.962380Z 0 [Note] WSREP: (39ce5cf5, 'tcp://0.0.0.0:4567') listening at tcp://0.0.0.0:4567 +2023-03-12T08:46:48.962385Z 0 [Note] WSREP: (39ce5cf5, 'tcp://0.0.0.0:4567') multicast: , ttl: 1 +2023-03-12T08:46:48.962542Z 0 [Note] WSREP: EVS version 0 +2023-03-12T08:46:48.962586Z 0 [Note] WSREP: gcomm: connecting to group 'pxc_cluster', peer '172.17.0.2:,172.17.0.3:,172.17.0.4:' +2023-03-12T08:46:48.963069Z 0 [Note] WSREP: (39ce5cf5, 'tcp://0.0.0.0:4567') Found matching local endpoint for a connection, blacklisting address tcp://172.17.0.3:4567 +2023-03-12T08:46:48.963504Z 0 [Note] WSREP: (39ce5cf5, 'tcp://0.0.0.0:4567') connection established to fecde235 tcp://172.17.0.2:4567 +2023-03-12T08:46:48.963542Z 0 [Note] WSREP: (39ce5cf5, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T08:46:48.992365Z 0 [Note] WSREP: declaring fecde235 at tcp://172.17.0.2:4567 stable +2023-03-12T08:46:48.992570Z 0 [Note] WSREP: Node fecde235 state primary +2023-03-12T08:46:48.992676Z 0 [Note] WSREP: Current view of cluster as seen by this node +view (view_id(PRIM,39ce5cf5,2) +memb { + 39ce5cf5,0 + fecde235,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T08:46:48.992692Z 0 [Note] WSREP: Save the discovered primary-component to disk +2023-03-12T08:46:48.999740Z 0 [Note] WSREP: discarding pending addr without UUID: tcp://172.17.0.4:4567 +2023-03-12T08:46:49.463070Z 0 [Note] WSREP: gcomm: connected +2023-03-12T08:46:49.463255Z 0 [Note] WSREP: Shifting CLOSED -> OPEN (TO: 0) +2023-03-12T08:46:49.463334Z 0 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 2 +2023-03-12T08:46:49.463380Z 0 [Note] WSREP: Waiting for SST/IST to complete. +2023-03-12T08:46:49.463444Z 0 [Note] WSREP: STATE_EXCHANGE: sent state UUID: 3a1ad68f-dc33-11ed-b9dc-3b8fe0048c2d +2023-03-12T08:46:49.463721Z 0 [Note] WSREP: STATE EXCHANGE: sent state msg: 3a1ad68f-dc33-11ed-b9dc-3b8fe0048c2d +2023-03-12T08:46:49.463818Z 0 [Note] WSREP: STATE EXCHANGE: got state msg: 3a1ad68f-dc33-11ed-b9dc-3b8fe0048c2d from 0 (node2) +2023-03-12T08:46:49.463969Z 0 [Note] WSREP: STATE EXCHANGE: got state msg: 3a1ad68f-dc33-11ed-b9dc-3b8fe0048c2d from 1 (node1) +2023-03-12T08:46:49.463980Z 0 [Note] WSREP: Quorum results: + version = 6, + component = PRIMARY, + conf_id = 1, + members = 2/2 (primary/total), + act_id = 170403895, + last_appl. = -1, + protocols = 0/9/3 (gcs/repl/appl), + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T08:46:49.463985Z 0 [Note] WSREP: Flow-control interval: [141, 141] +2023-03-12T08:46:49.463988Z 0 [Note] WSREP: Restored state OPEN -> JOINED (170403895) +2023-03-12T08:46:49.464041Z 2 [Note] WSREP: REPL Protocols: 9 (4, 2) +2023-03-12T08:46:49.464060Z 2 [Note] WSREP: REPL Protocols: 9 (4, 2) +2023-03-12T08:46:49.464069Z 2 [Note] WSREP: New cluster view: global state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, view# 2: Primary, number of nodes: 2, my index: 0, protocol version 3 +2023-03-12T08:46:49.464072Z 2 [Note] WSREP: Setting wsrep_ready to true +2023-03-12T08:46:49.464099Z 0 [Note] WSREP: SST complete, seqno: 170403895 +2023-03-12T08:46:49.464119Z 0 [Note] WSREP: Member 0.0 (node2) synced with group. +2023-03-12T08:46:49.464124Z 0 [Note] WSREP: Shifting JOINED -> SYNCED (TO: 170403895) +2023-03-12T08:46:49.465956Z 0 [Note] InnoDB: PUNCH HOLE support available +2023-03-12T08:46:49.465982Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins +2023-03-12T08:46:49.465986Z 0 [Note] InnoDB: Uses event mutexes +2023-03-12T08:46:49.465989Z 0 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier +2023-03-12T08:46:49.465992Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.12 +2023-03-12T08:46:49.465995Z 0 [Note] InnoDB: Using Linux native AIO +2023-03-12T08:46:49.466591Z 0 [Note] InnoDB: Number of pools: 1 +2023-03-12T08:46:49.466703Z 0 [Note] InnoDB: Using CPU crc32 instructions +2023-03-12T08:46:49.467119Z 0 [ERROR] InnoDB: Failed to create check sector file, errno:13 Please confirm O_DIRECT is supported and remove the file /data/check_sector_size if it exists. +2023-03-12T08:46:49.472202Z 0 [Note] InnoDB: Initializing buffer pool, total size = 120G, instances = 64, chunk size = 128M +2023-03-12T08:46:52.463428Z 0 [Note] WSREP: (39ce5cf5, 'tcp://0.0.0.0:4567') turning message relay requesting off +2023-03-12T08:46:52.517192Z 0 [Note] InnoDB: Completed initialization of buffer pool +2023-03-12T08:46:53.938539Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority(). +2023-03-12T08:46:53.983568Z 0 [Note] InnoDB: Crash recovery did not find the parallel doublewrite buffer at /var/lib/mysqlxb_doublewrite +2023-03-12T08:46:53.991475Z 0 [Note] InnoDB: Highest supported file format is Barracuda. +2023-03-12T08:46:55.281635Z 0 [Note] InnoDB: Progress in MB: + 100 200 +2023-03-12T08:46:57.102936Z 0 [Note] InnoDB: Created parallel doublewrite buffer at /var/lib/mysqlxb_doublewrite, size 251658240 bytes +2023-03-12T08:47:00.485985Z 0 [Note] InnoDB: Creating shared tablespace for temporary tables +2023-03-12T08:47:00.486111Z 0 [Note] InnoDB: Setting file '/var/lib/mysqlibtmp1' size to 12 MB. Physically writing the file full; Please wait ... +2023-03-12T08:47:00.580970Z 0 [Note] InnoDB: File '/var/lib/mysqlibtmp1' size is now 12 MB. +2023-03-12T08:47:00.587560Z 0 [Note] InnoDB: 96 redo rollback segment(s) found. 96 redo rollback segment(s) are active. +2023-03-12T08:47:00.587585Z 0 [Note] InnoDB: 32 non-redo rollback segment(s) are active. +2023-03-12T08:47:00.587805Z 0 [Note] InnoDB: page_cleaner: 1000ms intended loop took 6649ms. The settings might not be optimal. (flushed=0, during the time.) +2023-03-12T08:47:00.596880Z 0 [Note] InnoDB: Percona XtraDB (http://www.percona.com) 5.7.40-43 started; log sequence number 35636115472123 +2023-03-12T08:47:00.597035Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysqlib_buffer_pool +2023-03-12T08:47:00.597464Z 0 [Note] Plugin 'FEDERATED' is disabled. +2023-03-12T08:47:00.655121Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +2023-03-12T08:47:00.655145Z 0 [Note] Skipping generation of SSL certificates as certificate files are present in data directory. +2023-03-12T08:47:00.655155Z 0 [Warning] A deprecated TLS version TLSv1 is enabled. Please use TLSv1.2 or higher. +2023-03-12T08:47:00.655157Z 0 [Warning] A deprecated TLS version TLSv1.1 is enabled. Please use TLSv1.2 or higher. +2023-03-12T08:47:00.655772Z 0 [Warning] CA certificate ca.pem is self signed. +2023-03-12T08:47:00.655810Z 0 [Note] Skipping generation of RSA key pair as key files are present in data directory. +2023-03-12T08:47:00.655894Z 0 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306 +2023-03-12T08:47:00.655908Z 0 [Note] - '0.0.0.0' resolves to '0.0.0.0'; +2023-03-12T08:47:00.655953Z 0 [Note] Server socket created on IP: '0.0.0.0'. +2023-03-12T08:47:00.827994Z 0 [Warning] Error during --relay-log-recovery: Could not locate rotate event from master in relay log file. +2023-03-12T08:47:00.828016Z 0 [Warning] Server was not able to find a rotate event from master server to initialize relay log recovery for channel ''. Skipping relay log recovery for the channel. +2023-03-12T08:47:00.861929Z 0 [Note] Event Scheduler: Loaded 0 events +2023-03-12T08:47:00.862210Z 3 [Note] Event Scheduler: scheduler thread started with id 3 +2023-03-12T08:47:00.862601Z 0 [Note] /usr/sbin/mysqld: ready for connections. +Version: '5.7.40-43-57-log' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), Release rel43, Revision ab4d0bd, WSREP version 31.63, wsrep_31.63 +2023-03-12T08:47:00.868701Z 2 [Note] WSREP: Initialized wsrep sidno 2 +2023-03-12T08:47:00.868728Z 2 [Note] WSREP: Auto Increment Offset/Increment re-align with cluster membership change (Offset: 1 -> 1) (Increment: 1 -> 2) +2023-03-12T08:47:00.868766Z 2 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T08:47:00.868802Z 2 [Note] WSREP: Assign initial position for certification: 170403895, protocol version: 4 +2023-03-12T08:47:00.868871Z 0 [Note] WSREP: Service thread queue flushed. +2023-03-12T08:47:00.875704Z 2 [Note] WSREP: Synchronized with group, ready for connections +2023-03-12T08:47:00.875727Z 2 [Note] WSREP: Setting wsrep_ready to true +2023-03-12T08:47:00.875732Z 2 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T08:47:10.356763Z 0 [Note] InnoDB: Buffer pool(s) load completed at 230416 10:47:10 +2023-03-12T08:48:28.470198Z 0 [Note] WSREP: forgetting fecde235 (tcp://172.17.0.2:4567) +2023-03-12T08:48:28.470281Z 0 [Note] WSREP: Node 39ce5cf5 state primary +2023-03-12T08:48:28.470304Z 0 [Note] WSREP: Current view of cluster as seen by this node +view (view_id(PRIM,39ce5cf5,3) +memb { + 39ce5cf5,0 + } +joined { + } +left { + } +partitioned { + fecde235,0 + } +) +2023-03-12T08:48:28.470316Z 0 [Note] WSREP: Save the discovered primary-component to disk +2023-03-12T08:48:28.477643Z 0 [Note] WSREP: forgetting fecde235 (tcp://172.17.0.2:4567) +2023-03-12T08:48:28.477680Z 0 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T08:48:28.477779Z 0 [Note] WSREP: STATE_EXCHANGE: sent state UUID: 751f3a5a-dc33-11ed-9882-82503278c169 +2023-03-12T08:48:28.477789Z 0 [Note] WSREP: STATE EXCHANGE: sent state msg: 751f3a5a-dc33-11ed-9882-82503278c169 +2023-03-12T08:48:28.477794Z 0 [Note] WSREP: STATE EXCHANGE: got state msg: 751f3a5a-dc33-11ed-9882-82503278c169 from 0 (node2) +2023-03-12T08:48:28.477799Z 0 [Note] WSREP: Quorum results: + version = 6, + component = PRIMARY, + conf_id = 2, + members = 1/1 (primary/total), + act_id = 170403895, + last_appl. = 0, + protocols = 0/9/3 (gcs/repl/appl), + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T08:48:28.477804Z 0 [Note] WSREP: Flow-control interval: [100, 100] +2023-03-12T08:48:28.477889Z 2 [Note] WSREP: REPL Protocols: 9 (4, 2) +2023-03-12T08:48:28.477903Z 2 [Note] WSREP: REPL Protocols: 9 (4, 2) +2023-03-12T08:48:28.477942Z 2 [Note] WSREP: New cluster view: global state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, view# 3: Primary, number of nodes: 1, my index: 0, protocol version 3 +2023-03-12T08:48:28.477951Z 2 [Note] WSREP: Setting wsrep_ready to true +2023-03-12T08:48:28.477956Z 2 [Note] WSREP: Auto Increment Offset/Increment re-align with cluster membership change (Offset: 1 -> 1) (Increment: 2 -> 1) +2023-03-12T08:48:28.477960Z 2 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T08:48:28.477966Z 2 [Note] WSREP: Assign initial position for certification: 170403895, protocol version: 4 +2023-03-12T08:48:28.477999Z 0 [Note] WSREP: Service thread queue flushed. +2023-03-12T08:48:33.478291Z 0 [Note] WSREP: cleaning up fecde235 (tcp://172.17.0.2:4567) +2023-03-12T08:49:41.206124Z 0 [Note] WSREP: (39ce5cf5, 'tcp://0.0.0.0:4567') connection established to a07872e1 tcp://172.17.0.2:4567 +2023-03-12T08:49:41.206319Z 0 [Note] WSREP: (39ce5cf5, 'tcp://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T08:49:41.706020Z 0 [Note] WSREP: declaring a07872e1 at tcp://172.17.0.2:4567 stable +2023-03-12T08:49:41.706314Z 0 [Note] WSREP: Node 39ce5cf5 state primary +2023-03-12T08:49:41.706452Z 0 [Note] WSREP: Current view of cluster as seen by this node +view (view_id(PRIM,39ce5cf5,4) +memb { + 39ce5cf5,0 + a07872e1,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T08:49:41.706462Z 0 [Note] WSREP: Save the discovered primary-component to disk +2023-03-12T08:49:41.713788Z 0 [Note] WSREP: New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 2 +2023-03-12T08:49:41.713881Z 0 [Note] WSREP: STATE_EXCHANGE: sent state UUID: a0c62bd2-dc33-11ed-a55d-7ac3a32d9414 +2023-03-12T08:49:41.723399Z 0 [Note] WSREP: STATE EXCHANGE: sent state msg: a0c62bd2-dc33-11ed-a55d-7ac3a32d9414 +2023-03-12T08:49:41.723497Z 0 [Note] WSREP: STATE EXCHANGE: got state msg: a0c62bd2-dc33-11ed-a55d-7ac3a32d9414 from 0 (node2) +2023-03-12T08:49:42.206454Z 0 [Note] WSREP: STATE EXCHANGE: got state msg: a0c62bd2-dc33-11ed-a55d-7ac3a32d9414 from 1 (node1) +2023-03-12T08:49:42.206496Z 0 [Note] WSREP: Quorum results: + version = 6, + component = PRIMARY, + conf_id = 3, + members = 2/2 (primary/total), + act_id = 170403895, + last_appl. = 0, + protocols = 0/9/3 (gcs/repl/appl), + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T08:49:42.206504Z 0 [Note] WSREP: Flow-control interval: [141, 141] +2023-03-12T08:49:42.206592Z 0 [Note] WSREP: Member 1.0 (node1) synced with group. +2023-03-12T08:49:42.206616Z 2 [Note] WSREP: REPL Protocols: 9 (4, 2) +2023-03-12T08:49:42.206627Z 2 [Note] WSREP: REPL Protocols: 9 (4, 2) +2023-03-12T08:49:42.206634Z 2 [Note] WSREP: New cluster view: global state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, view# 4: Primary, number of nodes: 2, my index: 0, protocol version 3 +2023-03-12T08:49:42.206638Z 2 [Note] WSREP: Setting wsrep_ready to true +2023-03-12T08:49:42.206642Z 2 [Note] WSREP: Auto Increment Offset/Increment re-align with cluster membership change (Offset: 1 -> 1) (Increment: 1 -> 2) +2023-03-12T08:49:42.206655Z 2 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T08:49:42.206661Z 2 [Note] WSREP: Assign initial position for certification: 170403895, protocol version: 4 +2023-03-12T08:49:42.206695Z 0 [Note] WSREP: Service thread queue flushed. +2023-03-12T08:49:44.484529Z 0 [Note] WSREP: (39ce5cf5, 'tcp://0.0.0.0:4567') turning message relay requesting off +2023-03-12T09:41:30.759927Z 0 [Note] WSREP: Received shutdown signal. Will sleep for 10 secs before initiating shutdown. pxc_maint_mode switched to SHUTDOWN +2023-03-12T09:41:40.765363Z 0 [Note] WSREP: Stop replication +2023-03-12T09:41:40.765439Z 0 [Note] WSREP: Closing send monitor... +2023-03-12T09:41:40.765472Z 0 [Note] WSREP: Closed send monitor. +2023-03-12T09:41:40.765504Z 0 [Note] WSREP: gcomm: terminating thread +2023-03-12T09:41:40.765522Z 0 [Note] WSREP: gcomm: joining thread +2023-03-12T09:41:40.765631Z 0 [Note] WSREP: gcomm: closing backend +2023-03-12T09:41:41.774958Z 0 [Note] WSREP: Current view of cluster as seen by this node +view (view_id(NON_PRIM,39ce5cf5,4) +memb { + 39ce5cf5,0 + } +joined { + } +left { + } +partitioned { + a07872e1,0 + } +) +2023-03-12T09:41:41.775079Z 0 [Note] WSREP: Current view of cluster as seen by this node +view ((empty)) +2023-03-12T09:41:41.775305Z 0 [Note] WSREP: gcomm: closed +2023-03-12T09:41:41.775338Z 0 [Note] WSREP: New COMPONENT: primary = no, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T09:41:41.775405Z 0 [Note] WSREP: Flow-control interval: [100, 100] +2023-03-12T09:41:41.775410Z 0 [Note] WSREP: Received NON-PRIMARY. +2023-03-12T09:41:41.775413Z 0 [Note] WSREP: Shifting SYNCED -> OPEN (TO: 170403895) +2023-03-12T09:41:41.775432Z 0 [Note] WSREP: Received self-leave message. +2023-03-12T09:41:41.775437Z 0 [Note] WSREP: Flow-control interval: [0, 0] +2023-03-12T09:41:41.775439Z 0 [Note] WSREP: Received SELF-LEAVE. Closing connection. +2023-03-12T09:41:41.775442Z 0 [Note] WSREP: Shifting OPEN -> CLOSED (TO: 170403895) +2023-03-12T09:41:41.775454Z 0 [Note] WSREP: RECV thread exiting 0: Success +2023-03-12T09:41:41.775540Z 2 [Note] WSREP: New cluster view: global state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, view# -1: non-Primary, number of nodes: 1, my index: 0, protocol version 3 +2023-03-12T09:41:41.775573Z 2 [Note] WSREP: Setting wsrep_ready to false +2023-03-12T09:41:41.775546Z 0 [Note] WSREP: recv_thread() joined. +2023-03-12T09:41:41.775589Z 0 [Note] WSREP: Closing replication queue. +2023-03-12T09:41:41.775593Z 0 [Note] WSREP: Closing slave action queue. +2023-03-12T09:41:41.775598Z 0 [Note] WSREP: Waiting for active wsrep applier to exit +2023-03-12T09:41:41.775612Z 2 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T09:41:41.775637Z 2 [Note] WSREP: New cluster view: global state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, view# -1: non-Primary, number of nodes: 0, my index: -1, protocol version 3 +2023-03-12T09:41:41.775642Z 2 [Note] WSREP: Setting wsrep_ready to false +2023-03-12T09:41:41.775647Z 2 [Note] WSREP: wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T09:41:41.784382Z 2 [Note] WSREP: applier thread exiting (code:0) +2023-03-12T09:41:41.785611Z 10 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T09:41:41.785644Z 11 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T09:41:41.785620Z 8 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T09:41:41.785630Z 9 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T09:41:41.785620Z 4 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T09:41:41.785660Z 6 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T09:41:41.785673Z 5 [Note] WSREP: applier thread exiting (code:6) +2023-03-12T09:41:41.786002Z 1 [Note] WSREP: rollbacker thread exiting +2023-03-12T09:41:41.786236Z 0 [Note] Giving 1 client threads a chance to die gracefully +2023-03-12T09:41:41.786261Z 0 [Note] Shutting down slave threads +2023-03-12T09:41:43.786853Z 0 [Note] Forcefully disconnecting 1 remaining clients +2023-03-12T09:41:43.786933Z 0 [Note] Event Scheduler: Killing the scheduler thread, thread id 3 +2023-03-12T09:41:43.786943Z 0 [Note] Event Scheduler: Waiting for the scheduler thread to reply +2023-03-12T09:41:43.787076Z 0 [Note] Event Scheduler: Stopped +2023-03-12T09:41:43.787096Z 0 [Note] Event Scheduler: Purging the queue. 0 events +2023-03-12T09:41:43.826363Z 0 [Note] WSREP: Service thread queue flushed. +2023-03-12T09:41:43.826541Z 0 [Note] WSREP: MemPool(SlaveTrxHandle): hit ratio: 0, misses: 0, in use: 0, in pool: 0 +2023-03-12T09:41:43.835090Z 0 [Note] Binlog end +2023-03-12T09:41:43.859739Z 0 [Note] Shutting down plugin 'ngram' +2023-03-12T09:41:43.859767Z 0 [Note] Shutting down plugin 'partition' +2023-03-12T09:41:43.859771Z 0 [Note] Shutting down plugin 'BLACKHOLE' +2023-03-12T09:41:43.859775Z 0 [Note] Shutting down plugin 'ARCHIVE' +2023-03-12T09:41:43.859777Z 0 [Note] Shutting down plugin 'MRG_MYISAM' +2023-03-12T09:41:43.859780Z 0 [Note] Shutting down plugin 'MyISAM' +2023-03-12T09:41:43.859793Z 0 [Note] Shutting down plugin 'INNODB_TABLESPACES_SCRUBBING' +2023-03-12T09:41:43.859796Z 0 [Note] Shutting down plugin 'INNODB_TABLESPACES_ENCRYPTION' +2023-03-12T09:41:43.859798Z 0 [Note] Shutting down plugin 'INNODB_SYS_VIRTUAL' +2023-03-12T09:41:43.859801Z 0 [Note] Shutting down plugin 'INNODB_CHANGED_PAGES' +2023-03-12T09:41:43.859803Z 0 [Note] Shutting down plugin 'INNODB_SYS_DATAFILES' +2023-03-12T09:41:43.859805Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESPACES' +2023-03-12T09:41:43.859808Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN_COLS' +2023-03-12T09:41:43.859810Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN' +2023-03-12T09:41:43.859812Z 0 [Note] Shutting down plugin 'INNODB_SYS_FIELDS' +2023-03-12T09:41:43.859815Z 0 [Note] Shutting down plugin 'INNODB_SYS_COLUMNS' +2023-03-12T09:41:43.859817Z 0 [Note] Shutting down plugin 'INNODB_SYS_INDEXES' +2023-03-12T09:41:43.859819Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESTATS' +2023-03-12T09:41:43.859821Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLES' +2023-03-12T09:41:43.859823Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_TABLE' +2023-03-12T09:41:43.859825Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_CACHE' +2023-03-12T09:41:43.859827Z 0 [Note] Shutting down plugin 'INNODB_FT_CONFIG' +2023-03-12T09:41:43.859830Z 0 [Note] Shutting down plugin 'INNODB_FT_BEING_DELETED' +2023-03-12T09:41:43.859832Z 0 [Note] Shutting down plugin 'INNODB_FT_DELETED' +2023-03-12T09:41:43.859834Z 0 [Note] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD' +2023-03-12T09:41:43.859836Z 0 [Note] Shutting down plugin 'INNODB_METRICS' +2023-03-12T09:41:43.859839Z 0 [Note] Shutting down plugin 'INNODB_TEMP_TABLE_INFO' +2023-03-12T09:41:43.859841Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_POOL_STATS' +2023-03-12T09:41:43.859843Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU' +2023-03-12T09:41:43.859846Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE' +2023-03-12T09:41:43.859848Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET' +2023-03-12T09:41:43.859850Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX' +2023-03-12T09:41:43.859852Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM_RESET' +2023-03-12T09:41:43.859855Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM' +2023-03-12T09:41:43.859857Z 0 [Note] Shutting down plugin 'INNODB_CMP_RESET' +2023-03-12T09:41:43.859859Z 0 [Note] Shutting down plugin 'INNODB_CMP' +2023-03-12T09:41:43.859862Z 0 [Note] Shutting down plugin 'INNODB_LOCK_WAITS' +2023-03-12T09:41:43.859864Z 0 [Note] Shutting down plugin 'INNODB_LOCKS' +2023-03-12T09:41:43.859866Z 0 [Note] Shutting down plugin 'INNODB_TRX' +2023-03-12T09:41:43.859868Z 0 [Note] Shutting down plugin 'XTRADB_ZIP_DICT_COLS' +2023-03-12T09:41:43.859871Z 0 [Note] Shutting down plugin 'XTRADB_ZIP_DICT' +2023-03-12T09:41:43.859873Z 0 [Note] Shutting down plugin 'XTRADB_RSEG' +2023-03-12T09:41:43.859881Z 0 [Note] Shutting down plugin 'XTRADB_INTERNAL_HASH_TABLES' +2023-03-12T09:41:43.859884Z 0 [Note] Shutting down plugin 'XTRADB_READ_VIEW' +2023-03-12T09:41:43.859886Z 0 [Note] Shutting down plugin 'InnoDB' +2023-03-12T09:41:43.891642Z 0 [Note] InnoDB: FTS optimize thread exiting. +2023-03-12T09:41:43.891755Z 0 [Note] InnoDB: Starting shutdown... +2023-03-12T09:41:43.991941Z 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysqlib_buffer_pool +2023-03-12T09:41:44.031462Z 0 [Note] InnoDB: Buffer pool(s) dump completed at 230416 11:41:44 +2023-03-12T09:41:44.392219Z 0 [Note] InnoDB: Waiting for page_cleaner to finish flushing of buffer pool +2023-03-12T09:41:48.723563Z 0 [Note] InnoDB: Shutdown completed; log sequence number 35636115475782 +2023-03-12T09:41:48.723809Z 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1" +2023-03-12T09:41:48.723895Z 0 [Note] Shutting down plugin 'MEMORY' +2023-03-12T09:41:48.724601Z 0 [Note] Shutting down plugin 'CSV' +2023-03-12T09:41:48.724644Z 0 [Note] Shutting down plugin 'PERFORMANCE_SCHEMA' +2023-03-12T09:41:48.724719Z 0 [Note] Shutting down plugin 'sha256_password' +2023-03-12T09:41:48.724728Z 0 [Note] Shutting down plugin 'mysql_native_password' +2023-03-12T09:41:48.724731Z 0 [Note] Shutting down plugin 'wsrep' +2023-03-12T09:41:48.725054Z 0 [Note] Shutting down plugin 'binlog' +2023-03-12T09:41:48.745926Z 0 [Note] /usr/sbin/mysqld: Shutdown complete + + INFO: Skipping wsrep-recover for 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895 pair + INFO: Assigning 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895 to wsrep_start_position +2023-03-12T09:55:30.926980Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead. +2023-03-12T09:55:30.926995Z 0 [Warning] [MY-011069] [Server] The syntax '--master-info-repository' is deprecated and will be removed in a future release. +2023-03-12T09:55:30.927001Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T09:55:30.927032Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T09:55:30.927042Z 0 [Warning] [MY-011068] [Server] The syntax 'log_slave_updates' is deprecated and will be removed in a future release. Please use log_replica_updates instead. +2023-03-12T09:55:30.927049Z 0 [Warning] [MY-011068] [Server] The syntax 'skip_slave_start' is deprecated and will be removed in a future release. Please use skip_replica_start instead. +2023-03-12T09:55:30.927063Z 0 [Warning] [MY-011068] [Server] The syntax 'wsrep_slave_threads' is deprecated and will be removed in a future release. Please use wsrep_applier_threads instead. +2023-03-12T09:55:30.928126Z 0 [Warning] [MY-000000] [WSREP] Node is not a cluster node. Disabling pxc_strict_mode +2023-03-12T09:55:30.928532Z 0 [Note] [MY-010949] [Server] Basedir set to /usr/. +2023-03-12T09:55:30.928545Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.28-19.1) starting as process 1744553 +2023-03-12T09:55:30.929421Z 0 [Warning] [MY-013242] [Server] --character-set-server: 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous. +2023-03-12T09:55:30.929427Z 0 [Warning] [MY-013244] [Server] --collation-server: 'utf8_general_ci' is a collation of the deprecated character set UTF8MB3. Please consider using UTF8MB4 with an appropriate collation instead. +2023-03-12T09:55:30.930591Z 0 [Note] [MY-010182] [Server] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +2023-03-12T09:55:30.930703Z 0 [Note] [MY-010304] [Server] Skipping generation of SSL certificates as certificate files are present in data directory. +2023-03-12T09:55:30.932437Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. +2023-03-12T09:55:30.932478Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. +2023-03-12T09:55:30.933905Z 0 [Warning] [MY-013245] [Server] The SSL library function CRYPTO_set_mem_functions failed. This is typically caused by the SSL library already being used. As a result the SSL memory allocation will not be instrumented. +2023-03-12T09:55:30.935095Z 0 [Note] [MY-012366] [InnoDB] Using Linux native AIO +2023-03-12T09:55:30.935252Z 0 [Note] [MY-010747] [Server] Plugin 'FEDERATED' is disabled. +2023-03-12T09:55:30.936554Z 1 [System] [MY-011012] [Server] Starting upgrade of data directory. +2023-03-12T09:55:30.936600Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started. +2023-03-12T09:55:30.936621Z 1 [Note] [MY-013546] [InnoDB] Atomic write enabled +2023-03-12T09:55:30.936662Z 1 [Note] [MY-012932] [InnoDB] PUNCH HOLE support available +2023-03-12T09:55:30.936681Z 1 [Note] [MY-012944] [InnoDB] Uses event mutexes +2023-03-12T09:55:30.936696Z 1 [Note] [MY-012945] [InnoDB] GCC builtin __atomic_thread_fence() is used for memory barrier +2023-03-12T09:55:30.936708Z 1 [Note] [MY-012948] [InnoDB] Compressed tables use zlib 1.2.11 +2023-03-12T09:55:30.938866Z 1 [Note] [MY-013251] [InnoDB] Number of pools: 1 +2023-03-12T09:55:30.938973Z 1 [Note] [MY-012951] [InnoDB] Using hardware accelerated crc32 and polynomial multiplication. +2023-03-12T09:55:30.939372Z 1 [Note] [MY-012203] [InnoDB] Directories to scan './' +2023-03-12T09:55:30.939422Z 1 [Note] [MY-012204] [InnoDB] Scanning './' +2023-03-12T09:55:31.006603Z 1 [Note] [MY-012208] [InnoDB] Completed space ID check of 3131 files. +2023-03-12T09:55:31.011567Z 1 [Note] [MY-012955] [InnoDB] Initializing buffer pool, total size = 120.000000G, instances = 64, chunk size =128.000000M +2023-03-12T09:55:34.779634Z 1 [Note] [MY-012957] [InnoDB] Completed initialization of buffer pool +2023-03-12T09:55:35.246363Z 0 [Note] [MY-011952] [InnoDB] If the mysqld execution user is authorized, page cleaner and LRU manager thread priority can be changed. See the man page of setpriority(). +2023-03-12T09:55:35.481482Z 1 [Note] [MY-013566] [InnoDB] Double write buffer files: 128 +2023-03-12T09:55:35.481534Z 1 [Note] [MY-013565] [InnoDB] Double write buffer pages per instance: 32 +2023-03-12T09:55:35.481638Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_0.dblwr' for doublewrite +2023-03-12T09:55:35.481998Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_1.dblwr' for doublewrite +2023-03-12T09:55:35.482379Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_2.dblwr' for doublewrite +2023-03-12T09:55:35.482694Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_3.dblwr' for doublewrite +2023-03-12T09:55:35.483396Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_4.dblwr' for doublewrite +2023-03-12T09:55:35.483702Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_5.dblwr' for doublewrite +2023-03-12T09:55:35.484131Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_6.dblwr' for doublewrite +2023-03-12T09:55:35.484410Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_7.dblwr' for doublewrite +2023-03-12T09:55:35.484738Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_8.dblwr' for doublewrite +2023-03-12T09:55:35.485025Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_9.dblwr' for doublewrite +2023-03-12T09:55:35.485356Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_10.dblwr' for doublewrite +2023-03-12T09:55:35.485635Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_11.dblwr' for doublewrite +2023-03-12T09:55:35.485959Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_12.dblwr' for doublewrite +2023-03-12T09:55:35.486234Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_13.dblwr' for doublewrite +2023-03-12T09:55:35.486556Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_14.dblwr' for doublewrite +2023-03-12T09:55:35.486828Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_15.dblwr' for doublewrite +2023-03-12T09:55:35.487163Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_16.dblwr' for doublewrite +2023-03-12T09:55:35.487437Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_17.dblwr' for doublewrite +2023-03-12T09:55:35.487760Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_18.dblwr' for doublewrite +2023-03-12T09:55:35.488042Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_19.dblwr' for doublewrite +2023-03-12T09:55:35.488372Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_20.dblwr' for doublewrite +2023-03-12T09:55:35.488644Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_21.dblwr' for doublewrite +2023-03-12T09:55:35.488980Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_22.dblwr' for doublewrite +2023-03-12T09:55:35.489261Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_23.dblwr' for doublewrite +2023-03-12T09:55:35.489600Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_24.dblwr' for doublewrite +2023-03-12T09:55:35.489873Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_25.dblwr' for doublewrite +2023-03-12T09:55:35.490205Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_26.dblwr' for doublewrite +2023-03-12T09:55:35.490480Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_27.dblwr' for doublewrite +2023-03-12T09:55:35.490801Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_28.dblwr' for doublewrite +2023-03-12T09:55:35.491086Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_29.dblwr' for doublewrite +2023-03-12T09:55:35.491413Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_30.dblwr' for doublewrite +2023-03-12T09:55:35.491683Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_31.dblwr' for doublewrite +2023-03-12T09:55:35.492016Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_32.dblwr' for doublewrite +2023-03-12T09:55:35.492293Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_33.dblwr' for doublewrite +2023-03-12T09:55:35.492616Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_34.dblwr' for doublewrite +2023-03-12T09:55:35.492888Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_35.dblwr' for doublewrite +2023-03-12T09:55:35.493223Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_36.dblwr' for doublewrite +2023-03-12T09:55:35.493499Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_37.dblwr' for doublewrite +2023-03-12T09:55:35.493819Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_38.dblwr' for doublewrite +2023-03-12T09:55:35.494101Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_39.dblwr' for doublewrite +2023-03-12T09:55:35.494429Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_40.dblwr' for doublewrite +2023-03-12T09:55:35.494719Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_41.dblwr' for doublewrite +2023-03-12T09:55:35.495034Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_42.dblwr' for doublewrite +2023-03-12T09:55:35.495289Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_43.dblwr' for doublewrite +2023-03-12T09:55:35.495596Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_44.dblwr' for doublewrite +2023-03-12T09:55:35.495852Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_45.dblwr' for doublewrite +2023-03-12T09:55:35.496169Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_46.dblwr' for doublewrite +2023-03-12T09:55:35.496434Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_47.dblwr' for doublewrite +2023-03-12T09:55:35.496737Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_48.dblwr' for doublewrite +2023-03-12T09:55:35.497005Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_49.dblwr' for doublewrite +2023-03-12T09:55:35.497313Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_50.dblwr' for doublewrite +2023-03-12T09:55:35.497568Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_51.dblwr' for doublewrite +2023-03-12T09:55:35.497865Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_52.dblwr' for doublewrite +2023-03-12T09:55:35.498125Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_53.dblwr' for doublewrite +2023-03-12T09:55:35.498459Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_54.dblwr' for doublewrite +2023-03-12T09:55:35.498755Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_55.dblwr' for doublewrite +2023-03-12T09:55:35.499087Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_56.dblwr' for doublewrite +2023-03-12T09:55:35.499350Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_57.dblwr' for doublewrite +2023-03-12T09:55:35.499662Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_58.dblwr' for doublewrite +2023-03-12T09:55:35.499923Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_59.dblwr' for doublewrite +2023-03-12T09:55:35.500226Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_60.dblwr' for doublewrite +2023-03-12T09:55:35.500495Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_61.dblwr' for doublewrite +2023-03-12T09:55:35.500816Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_62.dblwr' for doublewrite +2023-03-12T09:55:35.501076Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_63.dblwr' for doublewrite +2023-03-12T09:55:35.501392Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_64.dblwr' for doublewrite +2023-03-12T09:55:35.501659Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_65.dblwr' for doublewrite +2023-03-12T09:55:35.501990Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_66.dblwr' for doublewrite +2023-03-12T09:55:35.502245Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_67.dblwr' for doublewrite +2023-03-12T09:55:35.502546Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_68.dblwr' for doublewrite +2023-03-12T09:55:35.502803Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_69.dblwr' for doublewrite +2023-03-12T09:55:35.503124Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_70.dblwr' for doublewrite +2023-03-12T09:55:35.503380Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_71.dblwr' for doublewrite +2023-03-12T09:55:35.503692Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_72.dblwr' for doublewrite +2023-03-12T09:55:35.503958Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_73.dblwr' for doublewrite +2023-03-12T09:55:35.504271Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_74.dblwr' for doublewrite +2023-03-12T09:55:35.504527Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_75.dblwr' for doublewrite +2023-03-12T09:55:35.504828Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_76.dblwr' for doublewrite +2023-03-12T09:55:35.505099Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_77.dblwr' for doublewrite +2023-03-12T09:55:35.505412Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_78.dblwr' for doublewrite +2023-03-12T09:55:35.505670Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_79.dblwr' for doublewrite +2023-03-12T09:55:35.505999Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_80.dblwr' for doublewrite +2023-03-12T09:55:35.506260Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_81.dblwr' for doublewrite +2023-03-12T09:55:35.506576Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_82.dblwr' for doublewrite +2023-03-12T09:55:35.506832Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_83.dblwr' for doublewrite +2023-03-12T09:55:35.507140Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_84.dblwr' for doublewrite +2023-03-12T09:55:35.507410Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_85.dblwr' for doublewrite +2023-03-12T09:55:35.507721Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_86.dblwr' for doublewrite +2023-03-12T09:55:35.507987Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_87.dblwr' for doublewrite +2023-03-12T09:55:35.508301Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_88.dblwr' for doublewrite +2023-03-12T09:55:35.508584Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_89.dblwr' for doublewrite +2023-03-12T09:55:35.508895Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_90.dblwr' for doublewrite +2023-03-12T09:55:35.509164Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_91.dblwr' for doublewrite +2023-03-12T09:55:35.509466Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_92.dblwr' for doublewrite +2023-03-12T09:55:35.509725Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_93.dblwr' for doublewrite +2023-03-12T09:55:35.510041Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_94.dblwr' for doublewrite +2023-03-12T09:55:35.510300Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_95.dblwr' for doublewrite +2023-03-12T09:55:35.510622Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_96.dblwr' for doublewrite +2023-03-12T09:55:35.510881Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_97.dblwr' for doublewrite +2023-03-12T09:55:35.511194Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_98.dblwr' for doublewrite +2023-03-12T09:55:35.511455Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_99.dblwr' for doublewrite +2023-03-12T09:55:35.511784Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_100.dblwr' for doublewrite +2023-03-12T09:55:35.512060Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_101.dblwr' for doublewrite +2023-03-12T09:55:35.512361Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_102.dblwr' for doublewrite +2023-03-12T09:55:35.512615Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_103.dblwr' for doublewrite +2023-03-12T09:55:35.512930Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_104.dblwr' for doublewrite +2023-03-12T09:55:35.513192Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_105.dblwr' for doublewrite +2023-03-12T09:55:35.513497Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_106.dblwr' for doublewrite +2023-03-12T09:55:35.513755Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_107.dblwr' for doublewrite +2023-03-12T09:55:35.514071Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_108.dblwr' for doublewrite +2023-03-12T09:55:35.514328Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_109.dblwr' for doublewrite +2023-03-12T09:55:35.514632Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_110.dblwr' for doublewrite +2023-03-12T09:55:35.514885Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_111.dblwr' for doublewrite +2023-03-12T09:55:35.515205Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_112.dblwr' for doublewrite +2023-03-12T09:55:35.515458Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_113.dblwr' for doublewrite +2023-03-12T09:55:35.515763Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_114.dblwr' for doublewrite +2023-03-12T09:55:35.516028Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_115.dblwr' for doublewrite +2023-03-12T09:55:35.521974Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_116.dblwr' for doublewrite +2023-03-12T09:55:35.522248Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_117.dblwr' for doublewrite +2023-03-12T09:55:35.522559Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_118.dblwr' for doublewrite +2023-03-12T09:55:35.522811Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_119.dblwr' for doublewrite +2023-03-12T09:55:35.523132Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_120.dblwr' for doublewrite +2023-03-12T09:55:35.523392Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_121.dblwr' for doublewrite +2023-03-12T09:55:35.523706Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_122.dblwr' for doublewrite +2023-03-12T09:55:35.523968Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_123.dblwr' for doublewrite +2023-03-12T09:55:35.524268Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_124.dblwr' for doublewrite +2023-03-12T09:55:35.524526Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_125.dblwr' for doublewrite +2023-03-12T09:55:35.524835Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_126.dblwr' for doublewrite +2023-03-12T09:55:35.525099Z 1 [Note] [MY-013532] [InnoDB] Using './#ib_16384_127.dblwr' for doublewrite +2023-03-12T09:55:35.527544Z 1 [Note] [MY-012529] [InnoDB] Redo log format is v1. The redo log was created before MySQL 8.0.3. +2023-03-12T09:55:35.527580Z 1 [Note] [MY-012557] [InnoDB] Redo log is from an earlier version, v1. +2023-03-12T09:55:35.770123Z 1 [Note] [MY-013083] [InnoDB] Log background threads are being started... +2023-03-12T09:55:35.770870Z 1 [Note] [MY-012532] [InnoDB] Applying a batch of 0 redo log records ... +2023-03-12T09:55:35.770905Z 1 [Note] [MY-012535] [InnoDB] Apply batch completed! +2023-03-12T09:55:35.771260Z 1 [Note] [MY-013041] [InnoDB] Upgrading redo log: 2*536870912 bytes, LSN=35636115475782 +2023-03-12T09:55:35.771451Z 1 [Note] [MY-013084] [InnoDB] Log background threads are being closed... +2023-03-12T09:55:35.803836Z 1 [Note] [MY-012968] [InnoDB] Starting to delete and rewrite log files. +2023-03-12T09:55:35.855701Z 1 [Note] [MY-013575] [InnoDB] Creating log file /var/lib/mysqlib_logfile101 +2023-03-12T09:55:35.861326Z 1 [Note] [MY-013575] [InnoDB] Creating log file /var/lib/mysqlib_logfile1 +2023-03-12T09:55:36.003695Z 1 [Note] [MY-012892] [InnoDB] Renaming log file /var/lib/mysqlib_logfile101 to /var/lib/mysqlib_logfile0 +2023-03-12T09:55:36.003848Z 1 [Note] [MY-012893] [InnoDB] New log files created, LSN=35636115475980 +2023-03-12T09:55:36.003873Z 1 [Note] [MY-013083] [InnoDB] Log background threads are being started... +2023-03-12T09:55:36.004511Z 1 [Note] [MY-013040] [InnoDB] Will create 2 new undo tablespaces. +2023-03-12T09:55:36.012202Z 1 [Note] [MY-012896] [InnoDB] Creating UNDO Tablespace ./undo_001 +2023-03-12T09:55:36.012232Z 1 [Note] [MY-012897] [InnoDB] Setting file ./undo_001 size to 16 MB +2023-03-12T09:55:36.012244Z 1 [Note] [MY-012898] [InnoDB] Physically writing the file full +2023-03-12T09:55:36.039763Z 1 [Note] [MY-012896] [InnoDB] Creating UNDO Tablespace ./undo_002 +2023-03-12T09:55:36.039811Z 1 [Note] [MY-012897] [InnoDB] Setting file ./undo_002 size to 16 MB +2023-03-12T09:55:36.039824Z 1 [Note] [MY-012898] [InnoDB] Physically writing the file full +2023-03-12T09:55:36.062859Z 1 [Note] [MY-012915] [InnoDB] Created 2 undo tablespaces. +2023-03-12T09:55:36.063089Z 1 [Note] [MY-011980] [InnoDB] GTID recovery trx_no: 0 +2023-03-12T09:55:36.090112Z 1 [Note] [MY-013776] [InnoDB] Parallel initialization of rseg complete +2023-03-12T09:55:36.090152Z 1 [Note] [MY-013777] [InnoDB] Time taken to initialize rseg using 4 thread: 27073 ms. +2023-03-12T09:55:36.090240Z 1 [Note] [MY-012923] [InnoDB] Creating shared tablespace for temporary tables +2023-03-12T09:55:36.090320Z 1 [Note] [MY-012265] [InnoDB] Setting file '/var/lib/mysqlibtmp1' size to 12 MB. Physically writing the file full; Please wait ... +2023-03-12T09:55:36.106183Z 1 [Note] [MY-012266] [InnoDB] File '/var/lib/mysqlibtmp1' size is now 12 MB. +2023-03-12T09:55:36.107161Z 1 [Note] [MY-013627] [InnoDB] Scanning temp tablespace dir:'./#innodb_temp/' +2023-03-12T09:55:36.179234Z 1 [Note] [MY-013018] [InnoDB] Created 128 and tracked 128 new rollback segment(s) in the temporary tablespace. 128 are now active. +2023-03-12T09:55:36.182526Z 1 [Note] [MY-013018] [InnoDB] Created 128 and tracked 128 new rollback segment(s) in undo tablespace number 1. 128 are now active. +2023-03-12T09:55:36.185863Z 1 [Note] [MY-013018] [InnoDB] Created 128 and tracked 128 new rollback segment(s) in undo tablespace number 2. 128 are now active. +2023-03-12T09:55:36.362509Z 1 [Note] [MY-012976] [InnoDB] Percona XtraDB (http://www.percona.com) 8.0.28-19 started; log sequence number 35636117834710 +2023-03-12T09:55:36.447092Z 1 [Note] [MY-012922] [InnoDB] Waiting for purge to start +2023-03-12T09:55:36.518394Z 1 [System] [MY-013577] [InnoDB] InnoDB initialization has ended. +2023-03-12T09:55:36.521688Z 1 [Note] [MY-011088] [Server] Data dictionary initializing version '80023'. +2023-03-12T09:55:37.521565Z 1 [Note] [MY-010337] [Server] Created Data Dictionary for upgrade +2023-03-12T09:55:37.819182Z 0 [Note] [MY-011332] [Server] Plugin mysqlx reported: 'IPv6 is available' +2023-03-12T09:55:37.826570Z 0 [Note] [MY-011323] [Server] Plugin mysqlx reported: 'X Plugin ready for connections. bind-address: '::' port: 33060' +2023-03-12T09:55:37.826608Z 0 [Note] [MY-011323] [Server] Plugin mysqlx reported: 'X Plugin ready for connections. socket: '/var/lib/mysql/mysqlx.sock'' +2023-03-12T09:58:05.075940Z 2 [System] [MY-011003] [Server] Finished populating Data Dictionary tables with data. +2023-03-12T09:58:05.133647Z 2 [Note] [MY-011008] [Server] Finished migrating TABLE statistics data. +2023-03-12T09:58:05.584056Z 2 [Note] [MY-011008] [Server] Finished migrating TABLE statistics data. +2023-03-12T09:58:18.413937Z 2 [Note] [MY-000000] [WSREP] wsrep_init_schema_and_SR (nil) +2023-03-12T09:58:18.504217Z 2 [Note] [MY-010006] [Server] Using data dictionary with version '80023'. +2023-03-12T09:58:19.619753Z 5 [System] [MY-013381] [Server] Server upgrade from '50700' to '80028' started. +2023-03-12T09:58:19.620650Z 5 [Note] [MY-013386] [Server] Running queries to upgrade MySQL server. +2023-03-12T09:58:36.493470Z 5 [Note] [MY-013387] [Server] Upgrading system table data. +2023-03-12T09:58:36.750027Z 5 [Note] [MY-013385] [Server] Upgrading the sys schema. +2023-03-12T09:58:38.242069Z 5 [Note] [MY-013400] [Server] Upgrade of help tables started. +2023-03-12T09:58:38.421605Z 5 [Note] [MY-013400] [Server] Upgrade of help tables completed. +2023-03-12T09:58:38.421821Z 5 [Note] [MY-013394] [Server] Checking 'mysql' schema. +2023-03-12T09:59:01.359059Z 5 [System] [MY-013381] [Server] Server upgrade from '50700' to '80028' completed. +2023-03-12T09:59:01.467227Z 0 [Note] [MY-010902] [Server] Thread priority attribute setting in Resource Group SQL shall be ignored due to unsupported platform or insufficient privilege. +2023-03-12T09:59:01.536878Z 0 [Note] [MY-012487] [InnoDB] DDL log recovery : begin +2023-03-12T09:59:01.537117Z 0 [Note] [MY-012488] [InnoDB] DDL log recovery : end +2023-03-12T09:59:01.539213Z 0 [Note] [MY-011946] [InnoDB] Loading buffer pool(s) from /var/lib/mysqlib_buffer_pool +2023-03-12T09:59:01.571798Z 0 [Warning] [MY-013829] [Server] Missing data directory for ICU regular expressions: /usr/lib64/mysql/private/. +2023-03-12T09:59:01.577088Z 0 [Note] [MY-010303] [Server] Skipping generation of SSL certificates as options related to SSL are specified. +2023-03-12T09:59:01.577721Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. +2023-03-12T09:59:01.577748Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. +2023-03-12T09:59:01.577769Z 0 [Note] [MY-010308] [Server] Skipping generation of RSA key pair through --sha256_password_auto_generate_rsa_keys as key files are present in data directory. +2023-03-12T09:59:01.577781Z 0 [Note] [MY-010308] [Server] Skipping generation of RSA key pair through --caching_sha2_password_auto_generate_rsa_keys as key files are present in data directory. +2023-03-12T09:59:01.582832Z 0 [Note] [MY-010252] [Server] Server hostname (bind-address): '0.0.0.0'; port: 3306 +2023-03-12T09:59:01.582863Z 0 [Note] [MY-010264] [Server] - '0.0.0.0' resolves to '0.0.0.0'; +2023-03-12T09:59:01.582884Z 0 [Note] [MY-010251] [Server] Server socket created on IP: '0.0.0.0'. +2023-03-12T09:59:01.632204Z 0 [Warning] [MY-010533] [Repl] Error during --relay-log-recovery: Could not locate rotate event from the master. +2023-03-12T09:59:01.632235Z 0 [Warning] [MY-013504] [Repl] Server was not able to find a rotate event from master server to initialize relay log recovery for channel ''. Skipping relay log recovery for the channel. +2023-03-12T09:59:01.654952Z 0 [Note] [MY-000000] [WSREP] Initialized wsrep sidno 2 +2023-03-12T09:59:01.655035Z 0 [Note] [MY-000000] [Galera] Loading provider none initial position: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895 +2023-03-12T09:59:01.655066Z 0 [Note] [MY-000000] [Galera] wsrep_load(): loading provider library 'none' +2023-03-12T09:59:01.655082Z 8 [Note] [MY-010051] [Server] Event Scheduler: scheduler thread started with id 8 +2023-03-12T09:59:01.666265Z 0 [Note] [MY-011240] [Server] Plugin mysqlx reported: 'Using SSL configuration from MySQL Server' +2023-03-12T09:59:01.666840Z 0 [Note] [MY-011243] [Server] Plugin mysqlx reported: 'Using OpenSSL for TLS connections' +2023-03-12T09:59:01.667062Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Bind-address: '::' port: 33060, socket: /var/lib/mysql/mysqlx.sock +2023-03-12T09:59:01.667121Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.28-19.1' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), Release rel19, Revision f544540, WSREP version 26.4.3. +2023-03-12T09:59:21.992414Z 0 [Note] [MY-011946] [InnoDB] Buffer pool(s) load completed at 230416 11:59:21 +2023-03-12T10:01:03.600034Z 0 [System] [MY-013172] [Server] Received SHUTDOWN from user . Shutting down mysqld (Version: 8.0.28-19.1). +2023-03-12T10:01:03.600769Z 0 [Note] [MY-010067] [Server] Giving 1 client threads a chance to die gracefully +2023-03-12T10:01:03.600797Z 0 [Note] [MY-010117] [Server] Shutting down slave threads +2023-03-12T10:01:03.601602Z 0 [Note] [MY-010054] [Server] Event Scheduler: Killing the scheduler thread, thread id 8 +2023-03-12T10:01:03.601630Z 0 [Note] [MY-010050] [Server] Event Scheduler: Waiting for the scheduler thread to reply +2023-03-12T10:01:03.601706Z 0 [Note] [MY-010048] [Server] Event Scheduler: Stopped +2023-03-12T10:01:03.601717Z 0 [Note] [MY-010118] [Server] Forcefully disconnecting 0 remaining clients +2023-03-12T10:01:03.601728Z 0 [Note] [MY-010043] [Server] Event Scheduler: Purging the queue. 0 events +2023-03-12T10:01:03.626520Z 0 [Note] [MY-012330] [InnoDB] FTS optimize thread exiting. +2023-03-12T10:01:04.167425Z 0 [Note] [MY-010120] [Server] Binlog end +2023-03-12T10:01:04.176032Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysqlx' +2023-03-12T10:01:04.176441Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysqlx_cache_cleaner' +2023-03-12T10:01:04.176455Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'ngram' +2023-03-12T10:01:04.176460Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'BLACKHOLE' +2023-03-12T10:01:04.176467Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'ARCHIVE' +2023-03-12T10:01:04.176472Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'TempTable' +2023-03-12T10:01:04.176483Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MRG_MYISAM' +2023-03-12T10:01:04.176488Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MyISAM' +2023-03-12T10:01:04.176497Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CHANGED_PAGES' +2023-03-12T10:01:04.176502Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESPACES_SCRUBBING' +2023-03-12T10:01:04.176507Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESPACES_ENCRYPTION' +2023-03-12T10:01:04.176511Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_SESSION_TEMP_TABLESPACES' +2023-03-12T10:01:04.176515Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CACHED_INDEXES' +2023-03-12T10:01:04.176519Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_VIRTUAL' +2023-03-12T10:01:04.176523Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_COLUMNS' +2023-03-12T10:01:04.176527Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESPACES' +2023-03-12T10:01:04.176531Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_INDEXES' +2023-03-12T10:01:04.176535Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESTATS' +2023-03-12T10:01:04.176539Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLES' +2023-03-12T10:01:04.176543Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_INDEX_TABLE' +2023-03-12T10:01:04.176547Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_INDEX_CACHE' +2023-03-12T10:01:04.176551Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_CONFIG' +2023-03-12T10:01:04.176555Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_BEING_DELETED' +2023-03-12T10:01:04.176559Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_DELETED' +2023-03-12T10:01:04.176563Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD' +2023-03-12T10:01:04.176567Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_METRICS' +2023-03-12T10:01:04.176571Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TEMP_TABLE_INFO' +2023-03-12T10:01:04.176576Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_POOL_STATS' +2023-03-12T10:01:04.176580Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU' +2023-03-12T10:01:04.176584Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_PAGE' +2023-03-12T10:01:04.176588Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET' +2023-03-12T10:01:04.176592Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_PER_INDEX' +2023-03-12T10:01:04.176596Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMPMEM_RESET' +2023-03-12T10:01:04.176600Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMPMEM' +2023-03-12T10:01:04.176604Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_RESET' +2023-03-12T10:01:04.176608Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP' +2023-03-12T10:01:04.176612Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TRX' +2023-03-12T10:01:04.176616Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'InnoDB' +2023-03-12T10:01:04.176645Z 0 [Note] [MY-013072] [InnoDB] Starting shutdown... +2023-03-12T10:01:04.177752Z 0 [Note] [MY-011944] [InnoDB] Dumping buffer pool(s) to /var/lib/mysqlib_buffer_pool +2023-03-12T10:01:04.186078Z 0 [Note] [MY-011944] [InnoDB] Buffer pool(s) dump completed at 230416 12:01:04 +2023-03-12T10:01:04.208658Z 0 [Note] [MY-013084] [InnoDB] Log background threads are being closed... +2023-03-12T10:01:10.482980Z 0 [Note] [MY-012980] [InnoDB] Shutdown completed; log sequence number 35636234615491 +2023-03-12T10:01:10.483784Z 0 [Note] [MY-012255] [InnoDB] Removed temporary tablespace data file: "ibtmp1" +2023-03-12T10:01:10.483827Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MEMORY' +2023-03-12T10:01:10.483847Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'CSV' +2023-03-12T10:01:10.483856Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'PERFORMANCE_SCHEMA' +2023-03-12T10:01:10.483903Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'wsrep' +2023-03-12T10:01:10.483962Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'daemon_keyring_proxy_plugin' +2023-03-12T10:01:10.483988Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'sha2_cache_cleaner' +2023-03-12T10:01:10.483997Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'caching_sha2_password' +2023-03-12T10:01:10.484005Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'sha256_password' +2023-03-12T10:01:10.484010Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysql_native_password' +2023-03-12T10:01:10.484228Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'binlog' +2023-03-12T10:01:10.488475Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.28-19.1) Percona XtraDB Cluster (GPL), Release rel19, Revision f544540, WSREP version 26.4.3. + INFO: Skipping wsrep-recover for 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895 pair + INFO: Assigning 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895 to wsrep_start_position +2023-03-12T10:03:03.134472Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead. +2023-03-12T10:03:03.134488Z 0 [Warning] [MY-011069] [Server] The syntax '--master-info-repository' is deprecated and will be removed in a future release. +2023-03-12T10:03:03.134494Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T10:03:03.134525Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T10:03:03.134534Z 0 [Warning] [MY-011068] [Server] The syntax 'log_slave_updates' is deprecated and will be removed in a future release. Please use log_replica_updates instead. +2023-03-12T10:03:03.134541Z 0 [Warning] [MY-011068] [Server] The syntax 'skip_slave_start' is deprecated and will be removed in a future release. Please use skip_replica_start instead. +2023-03-12T10:03:03.134556Z 0 [Warning] [MY-011068] [Server] The syntax 'wsrep_slave_threads' is deprecated and will be removed in a future release. Please use wsrep_applier_threads instead. +2023-03-12T10:03:03.136043Z 0 [Note] [MY-010949] [Server] Basedir set to /usr/. +2023-03-12T10:03:03.136053Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.28-19.1) starting as process 1745491 +2023-03-12T10:03:03.136864Z 0 [Warning] [MY-013242] [Server] --character-set-server: 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous. +2023-03-12T10:03:03.136870Z 0 [Warning] [MY-013244] [Server] --collation-server: 'utf8_general_ci' is a collation of the deprecated character set UTF8MB3. Please consider using UTF8MB4 with an appropriate collation instead. +2023-03-12T10:03:03.137978Z 0 [Note] [MY-010182] [Server] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +2023-03-12T10:03:03.138082Z 0 [Note] [MY-010304] [Server] Skipping generation of SSL certificates as certificate files are present in data directory. +2023-03-12T10:03:03.139701Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. +2023-03-12T10:03:03.139733Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. +2023-03-12T10:03:03.139748Z 0 [Note] [MY-010303] [Server] Skipping generation of SSL certificates as options related to SSL are specified. +2023-03-12T10:03:03.139782Z 0 [Note] [MY-000000] [Galera] Loading provider /usr/lib64/libgalera_smm.so initial position: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895 +2023-03-12T10:03:03.139798Z 0 [Note] [MY-000000] [Galera] wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so' +2023-03-12T10:03:03.140299Z 0 [Note] [MY-000000] [Galera] wsrep_load(): Galera 4.11(a9008fc) by Codership Oy (modified by Percona ) loaded successfully. +2023-03-12T10:03:03.140334Z 0 [Note] [MY-000000] [Galera] CRC-32C: using 64-bit x86 acceleration. +2023-03-12T10:03:03.140849Z 0 [Note] [MY-000000] [Galera] Found saved state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, safe_to_bootstrap: 0 +2023-03-12T10:03:03.140995Z 0 [Note] [MY-000000] [Galera] GCache DEBUG: opened preamble: +Version: 2 +UUID: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +Seqno: 170403895 - 170403895 +Offset: 1280 +Synced: 1 +2023-03-12T10:03:03.146355Z 0 [Warning] [MY-000000] [Galera] Option 'gcs.fc_master_slave' is deprecated and will be removed in the future versions, please use 'gcs.fc_single_primary' instead. +2023-03-12T10:03:03.146893Z 0 [Note] [MY-000000] [Galera] Passing config to GCS: base_dir = /var/lib/mysql; base_host = 172.17.0.3; base_port = 4567; cert.log_conflicts = no; cert.optimistic_pa = no; debug = no; evs.auto_evict = 0; evs.delay_margin = PT1S; evs.delayed_keep_period = PT30S; evs.inactive_check_period = PT0.5S; evs.inactive_timeout = PT15S; evs.join_retrans_period = PT1S; evs.max_install_timeouts = 3; evs.send_window = 10; evs.stats_report_period = PT1M; evs.suspect_timeout = PT5S; evs.user_send_window = 4; evs.view_forget_timeout = PT24H; gcache.dir = /var/lib/mysql; gcache.freeze_purge_at_seqno = -1; gcache.keep_pages_count = 0; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = galera.cache; gcache.page_size = 128M; gcache.recover = no; gcache.size = 50G; gcomm.thread_prio = ; gcs.fc_debug = 0; gcs.fc_factor = 1.0; gcs.fc_limit = 100; gcs.fc_master_slave = no; gcs.fc_single_primary = no; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = no; gmcast.segment = 0; gmcast.version = 0; pc.announce_timeout = PT3S; pc.checksum = false; pc.ignore_quorum = false; pc.ignore_sb = false; pc.npvo = false; pc.recovery = true; pc.version = 0; pc.wait_prim = true; pc.wait_prim_timeout = PT30S; pc.weight = 1; protonet.backend = asio; protonet.version = 0; repl.causal_read_timeout = PT30S; repl.commit_order = 3; repl.key_format = FLAT8; repl.max_ws_size = 2147483647; repl.proto_max = 10; socket.checksum = 2; socket.recv_buf_size = auto; socket.send_buf_size = auto; socket.ssl = YES; socket.ssl_ca = ca.pem; socket.ssl_cert = server-cert.pem; socket.ssl_cipher = ; socket.ssl_compression = YES; socket.ssl_key = server-key.pem; socket.ssl_reload = 1; +2023-03-12T10:03:03.154726Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T10:03:03.154794Z 0 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, protocol version: -1 +2023-03-12T10:03:03.154819Z 0 [Note] [MY-000000] [Galera] GCache history reset: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:0 -> 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895 +2023-03-12T10:03:03.157445Z 0 [Note] [MY-000000] [WSREP] Starting replication +2023-03-12T10:03:03.157469Z 0 [Note] [MY-000000] [Galera] Connecting with bootstrap option: 1 +2023-03-12T10:03:03.157485Z 0 [Note] [MY-000000] [Galera] Setting GCS initial position to 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895 +2023-03-12T10:03:03.157578Z 0 [ERROR] [MY-000000] [Galera] It may not be safe to bootstrap the cluster from this node. It was not the last one to leave the cluster and may not contain all the updates. To force cluster bootstrap with this node, edit the grastate.dat file manually and set safe_to_bootstrap to 1 . +2023-03-12T10:03:03.157591Z 0 [ERROR] [MY-000000] [WSREP] Provider/Node (gcomm://172.17.0.3) failed to establish connection with cluster (reason: 7) +2023-03-12T10:03:03.157601Z 0 [ERROR] [MY-010119] [Server] Aborting +2023-03-12T10:03:03.157642Z 0 [Note] [MY-010120] [Server] Binlog end +2023-03-12T10:03:03.157774Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.28-19.1) Percona XtraDB Cluster (GPL), Release rel19, Revision f544540, WSREP version 26.4.3. +2023-03-12T10:03:03.158712Z 0 [Note] [MY-000000] [Galera] dtor state: CLOSED +2023-03-12T10:03:03.158751Z 0 [Note] [MY-000000] [Galera] MemPool(TrxHandleSlave): hit ratio: 0, misses: 0, in use: 0, in pool: 0 +2023-03-12T10:03:03.160288Z 0 [Note] [MY-000000] [Galera] apply mon: entered 0 +2023-03-12T10:03:03.161858Z 0 [Note] [MY-000000] [Galera] apply mon: entered 0 +2023-03-12T10:03:03.163470Z 0 [Note] [MY-000000] [Galera] apply mon: entered 0 +2023-03-12T10:03:03.163488Z 0 [Note] [MY-000000] [Galera] cert index usage at exit 0 +2023-03-12T10:03:03.163493Z 0 [Note] [MY-000000] [Galera] cert trx map usage at exit 0 +2023-03-12T10:03:03.163497Z 0 [Note] [MY-000000] [Galera] deps set usage at exit 0 +2023-03-12T10:03:03.163504Z 0 [Note] [MY-000000] [Galera] avg deps dist 0 +2023-03-12T10:03:03.163509Z 0 [Note] [MY-000000] [Galera] avg cert interval 0 +2023-03-12T10:03:03.163513Z 0 [Note] [MY-000000] [Galera] cert index size 0 +2023-03-12T10:03:03.163546Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T10:03:03.163577Z 0 [Note] [MY-000000] [Galera] wsdb trx map usage 0 conn query map usage 0 +2023-03-12T10:03:03.163585Z 0 [Note] [MY-000000] [Galera] MemPool(LocalTrxHandle): hit ratio: 0, misses: 0, in use: 0, in pool: 0 +2023-03-12T10:03:03.163682Z 0 [Note] [MY-000000] [Galera] Shifting CLOSED -> DESTROYED (TO: 0) +2023-03-12T10:03:03.166067Z 0 [Note] [MY-000000] [Galera] Flushing memory map to disk... + INFO: Skipping wsrep-recover for 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895 pair + INFO: Assigning 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895 to wsrep_start_position +2023-03-12T10:04:12.601069Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead. +2023-03-12T10:04:12.601084Z 0 [Warning] [MY-011069] [Server] The syntax '--master-info-repository' is deprecated and will be removed in a future release. +2023-03-12T10:04:12.601091Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T10:04:12.601121Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T10:04:12.601134Z 0 [Warning] [MY-011068] [Server] The syntax 'log_slave_updates' is deprecated and will be removed in a future release. Please use log_replica_updates instead. +2023-03-12T10:04:12.601143Z 0 [Warning] [MY-011068] [Server] The syntax 'skip_slave_start' is deprecated and will be removed in a future release. Please use skip_replica_start instead. +2023-03-12T10:04:12.601165Z 0 [Warning] [MY-011068] [Server] The syntax 'wsrep_slave_threads' is deprecated and will be removed in a future release. Please use wsrep_applier_threads instead. +2023-03-12T10:04:12.603089Z 0 [Note] [MY-010949] [Server] Basedir set to /usr/. +2023-03-12T10:04:12.603100Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.28-19.1) starting as process 1745675 +2023-03-12T10:04:12.603982Z 0 [Warning] [MY-013242] [Server] --character-set-server: 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous. +2023-03-12T10:04:12.603990Z 0 [Warning] [MY-013244] [Server] --collation-server: 'utf8_general_ci' is a collation of the deprecated character set UTF8MB3. Please consider using UTF8MB4 with an appropriate collation instead. +2023-03-12T10:04:12.605542Z 0 [Note] [MY-010182] [Server] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +2023-03-12T10:04:12.605687Z 0 [Note] [MY-010304] [Server] Skipping generation of SSL certificates as certificate files are present in data directory. +2023-03-12T10:04:12.608088Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. +2023-03-12T10:04:12.608135Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. +2023-03-12T10:04:12.608153Z 0 [Note] [MY-010303] [Server] Skipping generation of SSL certificates as options related to SSL are specified. +2023-03-12T10:04:12.608198Z 0 [Note] [MY-000000] [Galera] Loading provider /usr/lib64/libgalera_smm.so initial position: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895 +2023-03-12T10:04:12.608219Z 0 [Note] [MY-000000] [Galera] wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so' +2023-03-12T10:04:12.608866Z 0 [Note] [MY-000000] [Galera] wsrep_load(): Galera 4.11(a9008fc) by Codership Oy (modified by Percona ) loaded successfully. +2023-03-12T10:04:12.608911Z 0 [Note] [MY-000000] [Galera] CRC-32C: using 64-bit x86 acceleration. +2023-03-12T10:04:12.609639Z 0 [Note] [MY-000000] [Galera] Found saved state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, safe_to_bootstrap: 1 +2023-03-12T10:04:12.609745Z 0 [Note] [MY-000000] [Galera] GCache DEBUG: opened preamble: +Version: 2 +UUID: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +Seqno: -1 - -1 +Offset: -1 +Synced: 1 +2023-03-12T10:04:12.612886Z 0 [Warning] [MY-000000] [Galera] Option 'gcs.fc_master_slave' is deprecated and will be removed in the future versions, please use 'gcs.fc_single_primary' instead. +2023-03-12T10:04:12.613431Z 0 [Note] [MY-000000] [Galera] Passing config to GCS: base_dir = /var/lib/mysql; base_host = 172.17.0.3; base_port = 4567; cert.log_conflicts = no; cert.optimistic_pa = no; debug = no; evs.auto_evict = 0; evs.delay_margin = PT1S; evs.delayed_keep_period = PT30S; evs.inactive_check_period = PT0.5S; evs.inactive_timeout = PT15S; evs.join_retrans_period = PT1S; evs.max_install_timeouts = 3; evs.send_window = 10; evs.stats_report_period = PT1M; evs.suspect_timeout = PT5S; evs.user_send_window = 4; evs.view_forget_timeout = PT24H; gcache.dir = /var/lib/mysql; gcache.freeze_purge_at_seqno = -1; gcache.keep_pages_count = 0; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = galera.cache; gcache.page_size = 128M; gcache.recover = no; gcache.size = 50G; gcomm.thread_prio = ; gcs.fc_debug = 0; gcs.fc_factor = 1.0; gcs.fc_limit = 100; gcs.fc_master_slave = no; gcs.fc_single_primary = no; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = no; gmcast.segment = 0; gmcast.version = 0; pc.announce_timeout = PT3S; pc.checksum = false; pc.ignore_quorum = false; pc.ignore_sb = false; pc.npvo = false; pc.recovery = true; pc.version = 0; pc.wait_prim = true; pc.wait_prim_timeout = PT30S; pc.weight = 1; protonet.backend = asio; protonet.version = 0; repl.causal_read_timeout = PT30S; repl.commit_order = 3; repl.key_format = FLAT8; repl.max_ws_size = 2147483647; repl.proto_max = 10; socket.checksum = 2; socket.recv_buf_size = auto; socket.send_buf_size = auto; socket.ssl = YES; socket.ssl_ca = ca.pem; socket.ssl_cert = server-cert.pem; socket.ssl_cipher = ; socket.ssl_compression = YES; socket.ssl_key = server-key.pem; socket.ssl_reload = 1; +2023-03-12T10:04:12.621065Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T10:04:12.621131Z 0 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895, protocol version: -1 +2023-03-12T10:04:12.621157Z 0 [Note] [MY-000000] [Galera] GCache history reset: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:0 -> 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895 +2023-03-12T10:04:12.622948Z 0 [Note] [MY-000000] [WSREP] Starting replication +2023-03-12T10:04:12.622969Z 0 [Note] [MY-000000] [Galera] Connecting with bootstrap option: 1 +2023-03-12T10:04:12.622985Z 0 [Note] [MY-000000] [Galera] Setting GCS initial position to 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895 +2023-03-12T10:04:12.623018Z 0 [Note] [MY-000000] [Galera] protonet asio version 0 +2023-03-12T10:04:12.623335Z 0 [Note] [MY-000000] [Galera] Using CRC-32C for message checksums. +2023-03-12T10:04:12.623355Z 0 [Note] [MY-000000] [Galera] backend: asio +2023-03-12T10:04:12.623460Z 0 [Note] [MY-000000] [Galera] gcomm thread scheduling priority set to other:0 +2023-03-12T10:04:12.623528Z 0 [Warning] [MY-000000] [Galera] Fail to access the file (/var/lib/mysql/gvwstate.dat) error (No such file or directory). It is possible if node is booting for first time or re-booting after a graceful shutdown +2023-03-12T10:04:12.623541Z 0 [Note] [MY-000000] [Galera] Restoring primary-component from disk failed. Either node is booting for first time or re-booting after a graceful shutdown +2023-03-12T10:04:12.623657Z 0 [Note] [MY-000000] [Galera] GMCast version 0 +2023-03-12T10:04:12.623729Z 0 [Note] [MY-000000] [Galera] (09a4dbb2-842d, 'ssl://0.0.0.0:4567') listening at ssl://0.0.0.0:4567 +2023-03-12T10:04:12.623740Z 0 [Note] [MY-000000] [Galera] (09a4dbb2-842d, 'ssl://0.0.0.0:4567') multicast: , ttl: 1 +2023-03-12T10:04:12.623898Z 0 [Note] [MY-000000] [Galera] EVS version 1 +2023-03-12T10:04:12.623957Z 0 [Note] [MY-000000] [Galera] gcomm: bootstrapping new group 'pxc_cluster' +2023-03-12T10:04:12.623983Z 0 [Note] [MY-000000] [Galera] start_prim is enabled, turn off pc_recovery +2023-03-12T10:04:12.624200Z 0 [Note] [MY-000000] [Galera] EVS version upgrade 0 -> 1 +2023-03-12T10:04:12.624219Z 0 [Note] [MY-000000] [Galera] PC protocol upgrade 0 -> 1 +2023-03-12T10:04:12.624243Z 0 [Note] [MY-000000] [Galera] Node 09a4dbb2-842d state primary +2023-03-12T10:04:12.624263Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,09a4dbb2-842d,1) +memb { + 09a4dbb2-842d,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T10:04:12.624274Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T10:04:12.628206Z 0 [Note] [MY-000000] [Galera] discarding pending addr without UUID: ssl://172.17.0.3:4567 +2023-03-12T10:04:12.628224Z 0 [Note] [MY-000000] [Galera] discarding pending addr proto entry 0x71248c0 +2023-03-12T10:04:12.628270Z 0 [Note] [MY-000000] [Galera] gcomm: connected +2023-03-12T10:04:12.628286Z 0 [Note] [MY-000000] [Galera] Changing maximum packet size to 64500, resulting msg size: 32636 +2023-03-12T10:04:12.628369Z 0 [Note] [MY-000000] [Galera] Shifting CLOSED -> OPEN (TO: 0) +2023-03-12T10:04:12.628379Z 0 [Note] [MY-000000] [Galera] Opened channel 'pxc_cluster' +2023-03-12T10:04:12.628477Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T10:04:12.628617Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: 09a59fce-dc3e-11ed-8e65-9fa7bf0f1588 +2023-03-12T10:04:12.628638Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 09a59fce-dc3e-11ed-8e65-9fa7bf0f1588 +2023-03-12T10:04:12.628652Z 1 [Note] [MY-000000] [WSREP] Starting rollbacker thread 1 +2023-03-12T10:04:12.628683Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 09a59fce-dc3e-11ed-8e65-9fa7bf0f1588 from 0 (node2) +2023-03-12T10:04:12.628705Z 2 [Note] [MY-000000] [WSREP] Starting applier thread 2 +2023-03-12T10:04:12.628741Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 0, + members = 1/1 (primary/total), + act_id = 170403895, + last_appl. = 170403895, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T10:04:12.628782Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [100, 100] +2023-03-12T10:04:12.628792Z 0 [Note] [MY-000000] [Galera] Restored state OPEN -> JOINED (170403896) +2023-03-12T10:04:12.628821Z 0 [Note] [MY-000000] [Galera] Member 0.0 (node2) synced with group. +2023-03-12T10:04:12.628833Z 0 [Note] [MY-000000] [Galera] Shifting JOINED -> SYNCED (TO: 170403896) +2023-03-12T10:04:12.628846Z 2 [Note] [MY-000000] [Galera] ####### processing CC 170403896, local, ordered +2023-03-12T10:04:12.628865Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 170403895 upto current CC event 170403896 upto:170403895 +2023-03-12T10:04:12.628879Z 2 [Note] [MY-000000] [Galera] Drain monitors from 170403895 up to 170403895 +2023-03-12T10:04:12.628892Z 2 [Note] [MY-000000] [Galera] Process first view: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 my uuid: 09a4dbb2-dc3e-11ed-842d-c344795288be +2023-03-12T10:04:12.628921Z 2 [Note] [MY-000000] [Galera] Server node2 connected to cluster at position 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 with ID 09a4dbb2-dc3e-11ed-842d-c344795288be +2023-03-12T10:04:12.628937Z 2 [Note] [MY-000000] [WSREP] Server status change disconnected -> connected +2023-03-12T10:04:12.628963Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T10:04:12.628989Z 2 [Note] [MY-000000] [Galera] ####### My UUID: 09a4dbb2-dc3e-11ed-842d-c344795288be +2023-03-12T10:04:12.629002Z 2 [Note] [MY-000000] [Galera] Cert index reset to 00000000-0000-0000-0000-000000000000:-1 (proto: 10), state transfer needed: no +2023-03-12T10:04:12.629040Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T10:04:12.629075Z 2 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 00000000-0000-0000-0000-000000000000:-1, protocol version: -1 +2023-03-12T10:04:12.629088Z 2 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T10:04:12.629100Z 2 [Note] [MY-000000] [Galera] ####### Adjusting cert position: -1 -> 170403896 +2023-03-12T10:04:12.629122Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T10:04:12.629148Z 2 [Note] [MY-000000] [Galera] GCache history reset: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:0 -> 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895 +2023-03-12T10:04:12.634893Z 2 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 0 + members(1): + 0: 09a4dbb2-dc3e-11ed-842d-c344795288be, node2 +================================================= +2023-03-12T10:04:12.634929Z 2 [Note] [MY-000000] [WSREP] Server status change connected -> joiner +2023-03-12T10:04:12.634946Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T10:04:12.634965Z 2 [Note] [MY-000000] [WSREP] Server status change joiner -> initializing +2023-03-12T10:04:12.634975Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T10:04:12.636507Z 0 [Warning] [MY-013245] [Server] The SSL library function CRYPTO_set_mem_functions failed. This is typically caused by the SSL library already being used. As a result the SSL memory allocation will not be instrumented. +2023-03-12T10:04:12.637693Z 0 [Note] [MY-012366] [InnoDB] Using Linux native AIO +2023-03-12T10:04:12.637848Z 0 [Note] [MY-010747] [Server] Plugin 'FEDERATED' is disabled. +2023-03-12T10:04:12.638955Z 3 [System] [MY-013576] [InnoDB] InnoDB initialization has started. +2023-03-12T10:04:12.638997Z 3 [Note] [MY-013546] [InnoDB] Atomic write enabled +2023-03-12T10:04:12.639052Z 3 [Note] [MY-012932] [InnoDB] PUNCH HOLE support available +2023-03-12T10:04:12.639072Z 3 [Note] [MY-012944] [InnoDB] Uses event mutexes +2023-03-12T10:04:12.639085Z 3 [Note] [MY-012945] [InnoDB] GCC builtin __atomic_thread_fence() is used for memory barrier +2023-03-12T10:04:12.639096Z 3 [Note] [MY-012948] [InnoDB] Compressed tables use zlib 1.2.11 +2023-03-12T10:04:12.641362Z 3 [Note] [MY-013251] [InnoDB] Number of pools: 1 +2023-03-12T10:04:12.641453Z 3 [Note] [MY-012951] [InnoDB] Using hardware accelerated crc32 and polynomial multiplication. +2023-03-12T10:04:12.641892Z 3 [Note] [MY-012203] [InnoDB] Directories to scan './' +2023-03-12T10:04:12.641951Z 3 [Note] [MY-012204] [InnoDB] Scanning './' +2023-03-12T10:04:12.697752Z 3 [Note] [MY-012208] [InnoDB] Completed space ID check of 3118 files. +2023-03-12T10:04:12.702050Z 3 [Note] [MY-012955] [InnoDB] Initializing buffer pool, total size = 120.000000G, instances = 64, chunk size =128.000000M +2023-03-12T10:04:16.611064Z 3 [Note] [MY-012957] [InnoDB] Completed initialization of buffer pool +2023-03-12T10:04:17.023350Z 0 [Note] [MY-011952] [InnoDB] If the mysqld execution user is authorized, page cleaner and LRU manager thread priority can be changed. See the man page of setpriority(). +2023-03-12T10:04:17.026798Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_0.dblwr' for doublewrite +2023-03-12T10:04:17.027600Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_1.dblwr' for doublewrite +2023-03-12T10:04:17.028519Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_2.dblwr' for doublewrite +2023-03-12T10:04:17.029200Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_3.dblwr' for doublewrite +2023-03-12T10:04:17.030009Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_4.dblwr' for doublewrite +2023-03-12T10:04:17.030595Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_5.dblwr' for doublewrite +2023-03-12T10:04:17.031355Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_6.dblwr' for doublewrite +2023-03-12T10:04:17.031964Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_7.dblwr' for doublewrite +2023-03-12T10:04:17.032911Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_8.dblwr' for doublewrite +2023-03-12T10:04:17.033641Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_9.dblwr' for doublewrite +2023-03-12T10:04:17.034605Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_10.dblwr' for doublewrite +2023-03-12T10:04:17.035205Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_11.dblwr' for doublewrite +2023-03-12T10:04:17.035945Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_12.dblwr' for doublewrite +2023-03-12T10:04:17.036495Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_13.dblwr' for doublewrite +2023-03-12T10:04:17.037252Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_14.dblwr' for doublewrite +2023-03-12T10:04:17.037889Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_15.dblwr' for doublewrite +2023-03-12T10:04:17.038719Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_16.dblwr' for doublewrite +2023-03-12T10:04:17.039381Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_17.dblwr' for doublewrite +2023-03-12T10:04:17.040198Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_18.dblwr' for doublewrite +2023-03-12T10:04:17.040830Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_19.dblwr' for doublewrite +2023-03-12T10:04:17.041632Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_20.dblwr' for doublewrite +2023-03-12T10:04:17.042271Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_21.dblwr' for doublewrite +2023-03-12T10:04:17.043078Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_22.dblwr' for doublewrite +2023-03-12T10:04:17.043724Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_23.dblwr' for doublewrite +2023-03-12T10:04:17.044545Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_24.dblwr' for doublewrite +2023-03-12T10:04:17.045220Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_25.dblwr' for doublewrite +2023-03-12T10:04:17.046039Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_26.dblwr' for doublewrite +2023-03-12T10:04:17.046669Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_27.dblwr' for doublewrite +2023-03-12T10:04:17.047478Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_28.dblwr' for doublewrite +2023-03-12T10:04:17.048130Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_29.dblwr' for doublewrite +2023-03-12T10:04:17.048937Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_30.dblwr' for doublewrite +2023-03-12T10:04:17.049562Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_31.dblwr' for doublewrite +2023-03-12T10:04:17.050335Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_32.dblwr' for doublewrite +2023-03-12T10:04:17.050951Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_33.dblwr' for doublewrite +2023-03-12T10:04:17.051732Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_34.dblwr' for doublewrite +2023-03-12T10:04:17.052418Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_35.dblwr' for doublewrite +2023-03-12T10:04:17.053254Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_36.dblwr' for doublewrite +2023-03-12T10:04:17.053905Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_37.dblwr' for doublewrite +2023-03-12T10:04:17.054737Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_38.dblwr' for doublewrite +2023-03-12T10:04:17.055398Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_39.dblwr' for doublewrite +2023-03-12T10:04:17.056216Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_40.dblwr' for doublewrite +2023-03-12T10:04:17.056853Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_41.dblwr' for doublewrite +2023-03-12T10:04:17.057665Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_42.dblwr' for doublewrite +2023-03-12T10:04:17.058305Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_43.dblwr' for doublewrite +2023-03-12T10:04:17.059123Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_44.dblwr' for doublewrite +2023-03-12T10:04:17.059754Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_45.dblwr' for doublewrite +2023-03-12T10:04:17.060569Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_46.dblwr' for doublewrite +2023-03-12T10:04:17.061229Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_47.dblwr' for doublewrite +2023-03-12T10:04:17.062060Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_48.dblwr' for doublewrite +2023-03-12T10:04:17.062687Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_49.dblwr' for doublewrite +2023-03-12T10:04:17.063529Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_50.dblwr' for doublewrite +2023-03-12T10:04:17.064177Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_51.dblwr' for doublewrite +2023-03-12T10:04:17.064968Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_52.dblwr' for doublewrite +2023-03-12T10:04:17.065565Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_53.dblwr' for doublewrite +2023-03-12T10:04:17.066345Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_54.dblwr' for doublewrite +2023-03-12T10:04:17.066968Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_55.dblwr' for doublewrite +2023-03-12T10:04:17.067732Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_56.dblwr' for doublewrite +2023-03-12T10:04:17.068337Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_57.dblwr' for doublewrite +2023-03-12T10:04:17.069122Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_58.dblwr' for doublewrite +2023-03-12T10:04:17.069723Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_59.dblwr' for doublewrite +2023-03-12T10:04:17.070519Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_60.dblwr' for doublewrite +2023-03-12T10:04:17.071084Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_61.dblwr' for doublewrite +2023-03-12T10:04:17.071811Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_62.dblwr' for doublewrite +2023-03-12T10:04:17.072358Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_63.dblwr' for doublewrite +2023-03-12T10:04:17.073103Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_64.dblwr' for doublewrite +2023-03-12T10:04:17.073641Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_65.dblwr' for doublewrite +2023-03-12T10:04:17.074375Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_66.dblwr' for doublewrite +2023-03-12T10:04:17.074925Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_67.dblwr' for doublewrite +2023-03-12T10:04:17.075645Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_68.dblwr' for doublewrite +2023-03-12T10:04:17.076258Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_69.dblwr' for doublewrite +2023-03-12T10:04:17.077078Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_70.dblwr' for doublewrite +2023-03-12T10:04:17.077709Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_71.dblwr' for doublewrite +2023-03-12T10:04:17.078583Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_72.dblwr' for doublewrite +2023-03-12T10:04:17.079245Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_73.dblwr' for doublewrite +2023-03-12T10:04:17.080068Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_74.dblwr' for doublewrite +2023-03-12T10:04:17.080742Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_75.dblwr' for doublewrite +2023-03-12T10:04:17.081569Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_76.dblwr' for doublewrite +2023-03-12T10:04:17.082236Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_77.dblwr' for doublewrite +2023-03-12T10:04:17.083062Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_78.dblwr' for doublewrite +2023-03-12T10:04:17.083701Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_79.dblwr' for doublewrite +2023-03-12T10:04:17.084540Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_80.dblwr' for doublewrite +2023-03-12T10:04:17.085177Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_81.dblwr' for doublewrite +2023-03-12T10:04:17.086007Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_82.dblwr' for doublewrite +2023-03-12T10:04:17.086654Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_83.dblwr' for doublewrite +2023-03-12T10:04:17.087488Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_84.dblwr' for doublewrite +2023-03-12T10:04:17.088140Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_85.dblwr' for doublewrite +2023-03-12T10:04:17.088984Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_86.dblwr' for doublewrite +2023-03-12T10:04:17.089641Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_87.dblwr' for doublewrite +2023-03-12T10:04:17.090466Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_88.dblwr' for doublewrite +2023-03-12T10:04:17.091075Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_89.dblwr' for doublewrite +2023-03-12T10:04:17.091839Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_90.dblwr' for doublewrite +2023-03-12T10:04:17.092455Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_91.dblwr' for doublewrite +2023-03-12T10:04:17.093234Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_92.dblwr' for doublewrite +2023-03-12T10:04:17.093848Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_93.dblwr' for doublewrite +2023-03-12T10:04:17.094622Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_94.dblwr' for doublewrite +2023-03-12T10:04:17.095225Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_95.dblwr' for doublewrite +2023-03-12T10:04:17.095991Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_96.dblwr' for doublewrite +2023-03-12T10:04:17.096577Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_97.dblwr' for doublewrite +2023-03-12T10:04:17.097319Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_98.dblwr' for doublewrite +2023-03-12T10:04:17.098087Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_99.dblwr' for doublewrite +2023-03-12T10:04:17.098996Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_100.dblwr' for doublewrite +2023-03-12T10:04:17.099555Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_101.dblwr' for doublewrite +2023-03-12T10:04:17.100286Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_102.dblwr' for doublewrite +2023-03-12T10:04:17.100836Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_103.dblwr' for doublewrite +2023-03-12T10:04:17.101575Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_104.dblwr' for doublewrite +2023-03-12T10:04:17.102132Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_105.dblwr' for doublewrite +2023-03-12T10:04:17.102912Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_106.dblwr' for doublewrite +2023-03-12T10:04:17.103560Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_107.dblwr' for doublewrite +2023-03-12T10:04:17.104399Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_108.dblwr' for doublewrite +2023-03-12T10:04:17.105041Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_109.dblwr' for doublewrite +2023-03-12T10:04:17.106018Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_110.dblwr' for doublewrite +2023-03-12T10:04:17.106643Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_111.dblwr' for doublewrite +2023-03-12T10:04:17.107476Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_112.dblwr' for doublewrite +2023-03-12T10:04:17.108126Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_113.dblwr' for doublewrite +2023-03-12T10:04:17.108971Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_114.dblwr' for doublewrite +2023-03-12T10:04:17.109600Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_115.dblwr' for doublewrite +2023-03-12T10:04:17.110413Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_116.dblwr' for doublewrite +2023-03-12T10:04:17.111051Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_117.dblwr' for doublewrite +2023-03-12T10:04:17.111870Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_118.dblwr' for doublewrite +2023-03-12T10:04:17.112518Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_119.dblwr' for doublewrite +2023-03-12T10:04:17.113349Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_120.dblwr' for doublewrite +2023-03-12T10:04:17.113987Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_121.dblwr' for doublewrite +2023-03-12T10:04:17.114801Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_122.dblwr' for doublewrite +2023-03-12T10:04:17.115442Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_123.dblwr' for doublewrite +2023-03-12T10:04:17.116266Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_124.dblwr' for doublewrite +2023-03-12T10:04:17.116897Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_125.dblwr' for doublewrite +2023-03-12T10:04:17.117710Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_126.dblwr' for doublewrite +2023-03-12T10:04:17.118300Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_127.dblwr' for doublewrite +2023-03-12T10:04:17.315749Z 3 [Note] [MY-013566] [InnoDB] Double write buffer files: 128 +2023-03-12T10:04:17.315811Z 3 [Note] [MY-013565] [InnoDB] Double write buffer pages per instance: 32 +2023-03-12T10:04:17.315854Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_0.dblwr' for doublewrite +2023-03-12T10:04:17.315888Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_1.dblwr' for doublewrite +2023-03-12T10:04:17.315937Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_2.dblwr' for doublewrite +2023-03-12T10:04:17.315974Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_3.dblwr' for doublewrite +2023-03-12T10:04:17.316007Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_4.dblwr' for doublewrite +2023-03-12T10:04:17.316040Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_5.dblwr' for doublewrite +2023-03-12T10:04:17.316070Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_6.dblwr' for doublewrite +2023-03-12T10:04:17.316101Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_7.dblwr' for doublewrite +2023-03-12T10:04:17.316130Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_8.dblwr' for doublewrite +2023-03-12T10:04:17.316162Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_9.dblwr' for doublewrite +2023-03-12T10:04:17.316193Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_10.dblwr' for doublewrite +2023-03-12T10:04:17.316230Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_11.dblwr' for doublewrite +2023-03-12T10:04:17.316263Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_12.dblwr' for doublewrite +2023-03-12T10:04:17.316305Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_13.dblwr' for doublewrite +2023-03-12T10:04:17.316336Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_14.dblwr' for doublewrite +2023-03-12T10:04:17.316368Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_15.dblwr' for doublewrite +2023-03-12T10:04:17.316402Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_16.dblwr' for doublewrite +2023-03-12T10:04:17.316444Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_17.dblwr' for doublewrite +2023-03-12T10:04:17.316487Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_18.dblwr' for doublewrite +2023-03-12T10:04:17.316520Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_19.dblwr' for doublewrite +2023-03-12T10:04:17.316552Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_20.dblwr' for doublewrite +2023-03-12T10:04:17.316583Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_21.dblwr' for doublewrite +2023-03-12T10:04:17.316618Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_22.dblwr' for doublewrite +2023-03-12T10:04:17.316652Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_23.dblwr' for doublewrite +2023-03-12T10:04:17.316683Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_24.dblwr' for doublewrite +2023-03-12T10:04:17.316716Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_25.dblwr' for doublewrite +2023-03-12T10:04:17.316746Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_26.dblwr' for doublewrite +2023-03-12T10:04:17.316777Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_27.dblwr' for doublewrite +2023-03-12T10:04:17.316807Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_28.dblwr' for doublewrite +2023-03-12T10:04:17.316838Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_29.dblwr' for doublewrite +2023-03-12T10:04:17.316869Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_30.dblwr' for doublewrite +2023-03-12T10:04:17.316901Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_31.dblwr' for doublewrite +2023-03-12T10:04:17.316945Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_32.dblwr' for doublewrite +2023-03-12T10:04:17.316994Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_33.dblwr' for doublewrite +2023-03-12T10:04:17.317026Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_34.dblwr' for doublewrite +2023-03-12T10:04:17.317058Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_35.dblwr' for doublewrite +2023-03-12T10:04:17.317089Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_36.dblwr' for doublewrite +2023-03-12T10:04:17.317120Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_37.dblwr' for doublewrite +2023-03-12T10:04:17.317151Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_38.dblwr' for doublewrite +2023-03-12T10:04:17.317183Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_39.dblwr' for doublewrite +2023-03-12T10:04:17.317214Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_40.dblwr' for doublewrite +2023-03-12T10:04:17.317246Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_41.dblwr' for doublewrite +2023-03-12T10:04:17.317278Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_42.dblwr' for doublewrite +2023-03-12T10:04:17.317309Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_43.dblwr' for doublewrite +2023-03-12T10:04:17.317340Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_44.dblwr' for doublewrite +2023-03-12T10:04:17.317370Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_45.dblwr' for doublewrite +2023-03-12T10:04:17.317401Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_46.dblwr' for doublewrite +2023-03-12T10:04:17.317431Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_47.dblwr' for doublewrite +2023-03-12T10:04:17.317461Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_48.dblwr' for doublewrite +2023-03-12T10:04:17.317491Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_49.dblwr' for doublewrite +2023-03-12T10:04:17.317522Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_50.dblwr' for doublewrite +2023-03-12T10:04:17.317552Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_51.dblwr' for doublewrite +2023-03-12T10:04:17.317582Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_52.dblwr' for doublewrite +2023-03-12T10:04:17.317614Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_53.dblwr' for doublewrite +2023-03-12T10:04:17.317644Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_54.dblwr' for doublewrite +2023-03-12T10:04:17.317674Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_55.dblwr' for doublewrite +2023-03-12T10:04:17.317706Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_56.dblwr' for doublewrite +2023-03-12T10:04:17.317737Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_57.dblwr' for doublewrite +2023-03-12T10:04:17.317767Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_58.dblwr' for doublewrite +2023-03-12T10:04:17.317796Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_59.dblwr' for doublewrite +2023-03-12T10:04:17.317831Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_60.dblwr' for doublewrite +2023-03-12T10:04:17.317862Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_61.dblwr' for doublewrite +2023-03-12T10:04:17.317895Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_62.dblwr' for doublewrite +2023-03-12T10:04:17.317934Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_63.dblwr' for doublewrite +2023-03-12T10:04:17.317967Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_64.dblwr' for doublewrite +2023-03-12T10:04:17.317999Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_65.dblwr' for doublewrite +2023-03-12T10:04:17.318028Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_66.dblwr' for doublewrite +2023-03-12T10:04:17.318059Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_67.dblwr' for doublewrite +2023-03-12T10:04:17.318089Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_68.dblwr' for doublewrite +2023-03-12T10:04:17.318122Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_69.dblwr' for doublewrite +2023-03-12T10:04:17.318153Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_70.dblwr' for doublewrite +2023-03-12T10:04:17.318182Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_71.dblwr' for doublewrite +2023-03-12T10:04:17.318212Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_72.dblwr' for doublewrite +2023-03-12T10:04:17.318243Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_73.dblwr' for doublewrite +2023-03-12T10:04:17.318273Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_74.dblwr' for doublewrite +2023-03-12T10:04:17.318302Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_75.dblwr' for doublewrite +2023-03-12T10:04:17.318332Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_76.dblwr' for doublewrite +2023-03-12T10:04:17.318362Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_77.dblwr' for doublewrite +2023-03-12T10:04:17.318395Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_78.dblwr' for doublewrite +2023-03-12T10:04:17.318425Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_79.dblwr' for doublewrite +2023-03-12T10:04:17.318455Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_80.dblwr' for doublewrite +2023-03-12T10:04:17.318484Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_81.dblwr' for doublewrite +2023-03-12T10:04:17.318513Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_82.dblwr' for doublewrite +2023-03-12T10:04:17.318544Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_83.dblwr' for doublewrite +2023-03-12T10:04:17.318574Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_84.dblwr' for doublewrite +2023-03-12T10:04:17.318603Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_85.dblwr' for doublewrite +2023-03-12T10:04:17.318634Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_86.dblwr' for doublewrite +2023-03-12T10:04:17.318664Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_87.dblwr' for doublewrite +2023-03-12T10:04:17.318694Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_88.dblwr' for doublewrite +2023-03-12T10:04:17.318724Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_89.dblwr' for doublewrite +2023-03-12T10:04:17.318753Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_90.dblwr' for doublewrite +2023-03-12T10:04:17.318783Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_91.dblwr' for doublewrite +2023-03-12T10:04:17.318813Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_92.dblwr' for doublewrite +2023-03-12T10:04:17.318842Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_93.dblwr' for doublewrite +2023-03-12T10:04:17.318872Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_94.dblwr' for doublewrite +2023-03-12T10:04:17.318903Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_95.dblwr' for doublewrite +2023-03-12T10:04:17.318940Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_96.dblwr' for doublewrite +2023-03-12T10:04:17.318975Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_97.dblwr' for doublewrite +2023-03-12T10:04:17.319005Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_98.dblwr' for doublewrite +2023-03-12T10:04:17.319035Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_99.dblwr' for doublewrite +2023-03-12T10:04:17.319066Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_100.dblwr' for doublewrite +2023-03-12T10:04:17.319097Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_101.dblwr' for doublewrite +2023-03-12T10:04:17.319128Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_102.dblwr' for doublewrite +2023-03-12T10:04:17.319158Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_103.dblwr' for doublewrite +2023-03-12T10:04:17.319190Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_104.dblwr' for doublewrite +2023-03-12T10:04:17.319222Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_105.dblwr' for doublewrite +2023-03-12T10:04:17.319251Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_106.dblwr' for doublewrite +2023-03-12T10:04:17.319281Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_107.dblwr' for doublewrite +2023-03-12T10:04:17.319312Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_108.dblwr' for doublewrite +2023-03-12T10:04:17.319341Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_109.dblwr' for doublewrite +2023-03-12T10:04:17.324963Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_110.dblwr' for doublewrite +2023-03-12T10:04:17.325011Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_111.dblwr' for doublewrite +2023-03-12T10:04:17.325045Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_112.dblwr' for doublewrite +2023-03-12T10:04:17.325075Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_113.dblwr' for doublewrite +2023-03-12T10:04:17.325107Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_114.dblwr' for doublewrite +2023-03-12T10:04:17.325137Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_115.dblwr' for doublewrite +2023-03-12T10:04:17.325167Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_116.dblwr' for doublewrite +2023-03-12T10:04:17.325197Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_117.dblwr' for doublewrite +2023-03-12T10:04:17.325228Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_118.dblwr' for doublewrite +2023-03-12T10:04:17.325265Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_119.dblwr' for doublewrite +2023-03-12T10:04:17.325306Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_120.dblwr' for doublewrite +2023-03-12T10:04:17.325345Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_121.dblwr' for doublewrite +2023-03-12T10:04:17.325379Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_122.dblwr' for doublewrite +2023-03-12T10:04:17.325409Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_123.dblwr' for doublewrite +2023-03-12T10:04:17.325440Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_124.dblwr' for doublewrite +2023-03-12T10:04:17.325468Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_125.dblwr' for doublewrite +2023-03-12T10:04:17.325498Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_126.dblwr' for doublewrite +2023-03-12T10:04:17.325532Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_127.dblwr' for doublewrite +2023-03-12T10:04:17.328455Z 3 [Note] [MY-013086] [InnoDB] Starting to parse redo log at lsn = 35636234615329, whereas checkpoint_lsn = 35636234615491 and start_lsn = 35636234615296 +2023-03-12T10:04:17.539345Z 3 [Note] [MY-013083] [InnoDB] Log background threads are being started... +2023-03-12T10:04:17.539942Z 3 [Note] [MY-012532] [InnoDB] Applying a batch of 0 redo log records ... +2023-03-12T10:04:17.539975Z 3 [Note] [MY-012535] [InnoDB] Apply batch completed! +2023-03-12T10:04:17.540599Z 3 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_001'. +2023-03-12T10:04:17.544087Z 3 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_002'. +2023-03-12T10:04:17.546226Z 3 [Note] [MY-012910] [InnoDB] Opened 2 existing undo tablespaces. +2023-03-12T10:04:17.546296Z 3 [Note] [MY-011980] [InnoDB] GTID recovery trx_no: 10986148675 +2023-03-12T10:04:17.549958Z 3 [Note] [MY-013776] [InnoDB] Parallel initialization of rseg complete +2023-03-12T10:04:17.550001Z 3 [Note] [MY-013777] [InnoDB] Time taken to initialize rseg using 4 thread: 3710 ms. +2023-03-12T10:04:17.550136Z 3 [Note] [MY-012923] [InnoDB] Creating shared tablespace for temporary tables +2023-03-12T10:04:17.550220Z 3 [Note] [MY-012265] [InnoDB] Setting file '/var/lib/mysqlibtmp1' size to 12 MB. Physically writing the file full; Please wait ... +2023-03-12T10:04:17.565701Z 3 [Note] [MY-012266] [InnoDB] File '/var/lib/mysqlibtmp1' size is now 12 MB. +2023-03-12T10:04:17.566613Z 3 [Note] [MY-013627] [InnoDB] Scanning temp tablespace dir:'./#innodb_temp/' +2023-03-12T10:04:17.615694Z 3 [Note] [MY-013018] [InnoDB] Created 128 and tracked 128 new rollback segment(s) in the temporary tablespace. 128 are now active. +2023-03-12T10:04:17.615971Z 3 [Note] [MY-012976] [InnoDB] Percona XtraDB (http://www.percona.com) 8.0.28-19 started; log sequence number 35636234615501 +2023-03-12T10:04:17.618553Z 3 [System] [MY-013577] [InnoDB] InnoDB initialization has ended. +2023-03-12T10:04:17.623140Z 3 [Note] [MY-011089] [Server] Data dictionary restarting version '80023'. +2023-03-12T10:04:17.682715Z 3 [Note] [MY-012357] [InnoDB] Reading DD tablespace files +2023-03-12T10:04:17.811578Z 3 [Note] [MY-012356] [InnoDB] Scanned 3120 tablespaces. Validated 3120. +2023-03-12T10:04:17.871543Z 3 [Note] [MY-000000] [WSREP] wsrep_init_schema_and_SR (nil) +2023-03-12T10:04:17.877873Z 3 [System] [MY-000000] [WSREP] PXC upgrade completed successfully +2023-03-12T10:04:17.877963Z 3 [Note] [MY-010006] [Server] Using data dictionary with version '80023'. +2023-03-12T10:04:17.889235Z 0 [Note] [MY-011332] [Server] Plugin mysqlx reported: 'IPv6 is available' +2023-03-12T10:04:17.893935Z 0 [Note] [MY-011323] [Server] Plugin mysqlx reported: 'X Plugin ready for connections. bind-address: '::' port: 33060' +2023-03-12T10:04:17.893967Z 0 [Note] [MY-011323] [Server] Plugin mysqlx reported: 'X Plugin ready for connections. socket: '/var/lib/mysql/mysqlx.sock'' +2023-03-12T10:04:17.907774Z 0 [Note] [MY-010902] [Server] Thread priority attribute setting in Resource Group SQL shall be ignored due to unsupported platform or insufficient privilege. +2023-03-12T10:04:17.928296Z 0 [Note] [MY-012487] [InnoDB] DDL log recovery : begin +2023-03-12T10:04:17.928363Z 0 [Note] [MY-012488] [InnoDB] DDL log recovery : end +2023-03-12T10:04:17.929384Z 0 [Note] [MY-011946] [InnoDB] Loading buffer pool(s) from /var/lib/mysqlib_buffer_pool +2023-03-12T10:04:17.932752Z 0 [Note] [MY-012922] [InnoDB] Waiting for purge to start +2023-03-12T10:04:17.994689Z 0 [Warning] [MY-013829] [Server] Missing data directory for ICU regular expressions: /usr/lib64/mysql/private/. +2023-03-12T10:04:17.998055Z 0 [Note] [MY-010303] [Server] Skipping generation of SSL certificates as options related to SSL are specified. +2023-03-12T10:04:17.998684Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. +2023-03-12T10:04:17.998714Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. +2023-03-12T10:04:17.998735Z 0 [Note] [MY-010308] [Server] Skipping generation of RSA key pair through --sha256_password_auto_generate_rsa_keys as key files are present in data directory. +2023-03-12T10:04:17.998749Z 0 [Note] [MY-010308] [Server] Skipping generation of RSA key pair through --caching_sha2_password_auto_generate_rsa_keys as key files are present in data directory. +2023-03-12T10:04:17.998874Z 0 [Note] [MY-010252] [Server] Server hostname (bind-address): '0.0.0.0'; port: 3306 +2023-03-12T10:04:17.998895Z 0 [Note] [MY-010264] [Server] - '0.0.0.0' resolves to '0.0.0.0'; +2023-03-12T10:04:17.998927Z 0 [Note] [MY-010251] [Server] Server socket created on IP: '0.0.0.0'. +2023-03-12T10:04:18.033255Z 0 [Warning] [MY-010533] [Repl] Error during --relay-log-recovery: Could not locate rotate event from the master. +2023-03-12T10:04:18.033284Z 0 [Warning] [MY-013504] [Repl] Server was not able to find a rotate event from master server to initialize relay log recovery for channel ''. Skipping relay log recovery for the channel. +2023-03-12T10:04:18.052995Z 0 [Note] [MY-000000] [WSREP] Initialized wsrep sidno 2 +2023-03-12T10:04:18.053028Z 7 [Note] [MY-010051] [Server] Event Scheduler: scheduler thread started with id 7 +2023-03-12T10:04:18.053064Z 0 [Note] [MY-000000] [Galera] Server initialized +2023-03-12T10:04:18.053082Z 0 [Note] [MY-000000] [WSREP] Server status change initializing -> initialized +2023-03-12T10:04:18.053101Z 0 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T10:04:18.053170Z 2 [Note] [MY-000000] [Galera] Bootstrapping a new cluster, setting initial position to 00000000-0000-0000-0000-000000000000:-1 +2023-03-12T10:04:18.059944Z 10 [Note] [MY-000000] [WSREP] Starting applier thread 10 +2023-03-12T10:04:18.059969Z 14 [Note] [MY-000000] [WSREP] Starting applier thread 14 +2023-03-12T10:04:18.059991Z 0 [Note] [MY-011240] [Server] Plugin mysqlx reported: 'Using SSL configuration from MySQL Server' +2023-03-12T10:04:18.059961Z 13 [Note] [MY-000000] [WSREP] Starting applier thread 13 +2023-03-12T10:04:18.059943Z 11 [Note] [MY-000000] [WSREP] Starting applier thread 11 +2023-03-12T10:04:18.059955Z 12 [Note] [MY-000000] [WSREP] Starting applier thread 12 +2023-03-12T10:04:18.060000Z 15 [Note] [MY-000000] [WSREP] Starting applier thread 15 +2023-03-12T10:04:18.060036Z 16 [Note] [MY-000000] [WSREP] Starting applier thread 16 +2023-03-12T10:04:18.060536Z 0 [Note] [MY-011243] [Server] Plugin mysqlx reported: 'Using OpenSSL for TLS connections' +2023-03-12T10:04:18.060678Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Bind-address: '::' port: 33060, socket: /var/lib/mysql/mysqlx.sock +2023-03-12T10:04:18.060744Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.28-19.1' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), Release rel19, Revision f544540, WSREP version 26.4.3. +2023-03-12T10:04:18.061967Z 8 [Note] [MY-000000] [WSREP] Cluster table is empty, not recovering transactions +2023-03-12T10:04:18.062018Z 2 [Note] [MY-000000] [WSREP] Server status change initialized -> joined +2023-03-12T10:04:18.062032Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T10:04:18.062046Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T10:04:18.079890Z 2 [Note] [MY-000000] [Galera] Recording CC from group: 170403896 +2023-03-12T10:04:18.079942Z 2 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 170403896 +2023-03-12T10:04:18.079958Z 2 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403896 +2023-03-12T10:04:18.080010Z 2 [Note] [MY-000000] [Galera] Server node2 synced with group +2023-03-12T10:04:18.080024Z 2 [Note] [MY-000000] [WSREP] Server status change joined -> synced +2023-03-12T10:04:18.080031Z 2 [Note] [MY-000000] [WSREP] Synchronized with group, ready for connections +2023-03-12T10:04:18.080037Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T10:04:24.002705Z 0 [Note] [MY-011946] [InnoDB] Buffer pool(s) load completed at 230416 12:04:24 +2023-03-12T10:10:48.009136Z 20 [Note] [MY-010914] [Server] Aborted connection 20 to db: 'unconnected' user: 'dba' host: 'localhost' (Got an error reading communication packets). +2023-03-12T10:12:55.732840Z 22 [Warning] [MY-013712] [Server] No suitable 'keyring_component_metadata_query' service implementation found to fulfill the request. +2023-03-12T11:23:46.950370Z 0 [System] [MY-013172] [Server] Received SHUTDOWN from user . Shutting down mysqld (Version: 8.0.28-19.1). +2023-03-12T11:23:46.950430Z 0 [Note] [MY-000000] [WSREP] Received shutdown signal. Will sleep for 10 secs before initiating shutdown. pxc_maint_mode switched to SHUTDOWN +2023-03-12T11:23:56.951209Z 0 [Note] [MY-000000] [WSREP] Shutdown replication +2023-03-12T11:23:56.951274Z 0 [Note] [MY-000000] [WSREP] Server status change synced -> disconnecting +2023-03-12T11:23:56.951315Z 0 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:23:56.951368Z 0 [Note] [MY-000000] [Galera] Closing send monitor... +2023-03-12T11:23:56.951387Z 0 [Note] [MY-000000] [Galera] Closed send monitor. +2023-03-12T11:23:56.951400Z 0 [Note] [MY-000000] [Galera] gcomm: terminating thread +2023-03-12T11:23:56.951418Z 0 [Note] [MY-000000] [Galera] gcomm: joining thread +2023-03-12T11:23:56.951515Z 0 [Note] [MY-000000] [Galera] gcomm: closing backend +2023-03-12T11:23:56.951569Z 0 [Note] [MY-000000] [Galera] PC protocol downgrade 1 -> 0 +2023-03-12T11:23:56.951590Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view ((empty)) +2023-03-12T11:23:56.951731Z 0 [Note] [MY-000000] [Galera] gcomm: closed +2023-03-12T11:23:56.951775Z 0 [Note] [MY-000000] [Galera] New SELF-LEAVE. +2023-03-12T11:23:56.952987Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [0, 0] +2023-03-12T11:23:56.953010Z 0 [Note] [MY-000000] [Galera] Received SELF-LEAVE. Closing connection. +2023-03-12T11:23:56.953018Z 0 [Note] [MY-000000] [Galera] Shifting SYNCED -> CLOSED (TO: 170403896) +2023-03-12T11:23:56.953034Z 0 [Note] [MY-000000] [Galera] RECV thread exiting 0: Success +2023-03-12T11:23:56.953104Z 0 [Note] [MY-000000] [Galera] recv_thread() joined. +2023-03-12T11:23:56.953123Z 0 [Note] [MY-000000] [Galera] Closing replication queue. +2023-03-12T11:23:56.953127Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 170403896 upto current CC event 170403896 upto:170403896 +2023-03-12T11:23:56.953133Z 0 [Note] [MY-000000] [Galera] Closing slave action queue. +2023-03-12T11:23:56.953163Z 2 [Note] [MY-000000] [Galera] Drain monitors from 170403896 up to 170403896 +2023-03-12T11:23:56.953215Z 2 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 + status: non-primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: yes + own_index: -1 + members(0): +================================================= +2023-03-12T11:23:56.953228Z 2 [Note] [MY-000000] [Galera] Non-primary view +2023-03-12T11:23:56.953236Z 2 [Note] [MY-000000] [WSREP] Server status change disconnecting -> disconnected +2023-03-12T11:23:56.953243Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:23:56.953252Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:23:56.954544Z 2 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 0 thd: 2 +2023-03-12T11:23:56.954548Z 0 [Note] [MY-000000] [WSREP] Waiting for active wsrep applier to exit +2023-03-12T11:23:56.954576Z 0 [Note] [MY-000000] [WSREP] Waiting for (8) applier thread(s) to terminate +2023-03-12T11:23:56.963186Z 15 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 15 +2023-03-12T11:23:56.963214Z 12 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 12 +2023-03-12T11:23:56.963193Z 13 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 13 +2023-03-12T11:23:56.963202Z 16 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 16 +2023-03-12T11:23:56.963208Z 14 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 14 +2023-03-12T11:23:56.963214Z 11 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 11 +2023-03-12T11:23:56.963187Z 10 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 10 +2023-03-12T11:23:57.954682Z 0 [Note] [MY-000000] [WSREP] All applier thread terminated. Will now terminate rollback thread +2023-03-12T11:23:57.954785Z 0 [Note] [MY-000000] [WSREP] Waiting for rollback thread to terminate +2023-03-12T11:23:57.954826Z 1 [Note] [MY-000000] [WSREP] rollbacker thread exiting 1 +2023-03-12T11:23:58.954902Z 0 [Note] [MY-000000] [WSREP] Rollback thread terminated +2023-03-12T11:23:58.955273Z 0 [Note] [MY-010067] [Server] Giving 1 client threads a chance to die gracefully +2023-03-12T11:23:58.955313Z 0 [Note] [MY-010117] [Server] Shutting down slave threads +2023-03-12T11:23:58.956310Z 0 [Note] [MY-010054] [Server] Event Scheduler: Killing the scheduler thread, thread id 7 +2023-03-12T11:23:58.956344Z 0 [Note] [MY-010050] [Server] Event Scheduler: Waiting for the scheduler thread to reply +2023-03-12T11:23:58.956406Z 0 [Note] [MY-010048] [Server] Event Scheduler: Stopped +2023-03-12T11:23:58.956423Z 0 [Note] [MY-010118] [Server] Forcefully disconnecting 0 remaining clients +2023-03-12T11:23:58.956438Z 0 [Note] [MY-010043] [Server] Event Scheduler: Purging the queue. 0 events +2023-03-12T11:23:58.959138Z 0 [Note] [MY-000000] [Galera] dtor state: CLOSED +2023-03-12T11:23:58.959171Z 0 [Note] [MY-000000] [Galera] MemPool(TrxHandleSlave): hit ratio: 0, misses: 0, in use: 0, in pool: 0 +2023-03-12T11:23:58.960841Z 0 [Note] [MY-000000] [Galera] apply mon: entered 0 +2023-03-12T11:23:58.962514Z 0 [Note] [MY-000000] [Galera] apply mon: entered 0 +2023-03-12T11:23:58.964197Z 0 [Note] [MY-000000] [Galera] mon: entered 3 oooe fraction 0 oool fraction 0 +2023-03-12T11:23:58.964226Z 0 [Note] [MY-000000] [Galera] cert index usage at exit 0 +2023-03-12T11:23:58.964233Z 0 [Note] [MY-000000] [Galera] cert trx map usage at exit 0 +2023-03-12T11:23:58.964238Z 0 [Note] [MY-000000] [Galera] deps set usage at exit 0 +2023-03-12T11:23:58.964244Z 0 [Note] [MY-000000] [Galera] avg deps dist 0 +2023-03-12T11:23:58.964254Z 0 [Note] [MY-000000] [Galera] avg cert interval 0 +2023-03-12T11:23:58.964259Z 0 [Note] [MY-000000] [Galera] cert index size 0 +2023-03-12T11:23:58.964319Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T11:23:58.964367Z 0 [Note] [MY-000000] [Galera] wsdb trx map usage 0 conn query map usage 0 +2023-03-12T11:23:58.964381Z 0 [Note] [MY-000000] [Galera] MemPool(LocalTrxHandle): hit ratio: 0, misses: 0, in use: 0, in pool: 0 +2023-03-12T11:23:58.965738Z 0 [Note] [MY-000000] [Galera] Flushing memory map to disk... +2023-03-12T11:23:58.967262Z 0 [Note] [MY-012330] [InnoDB] FTS optimize thread exiting. +2023-03-12T11:23:59.856932Z 0 [Note] [MY-010120] [Server] Binlog end +2023-03-12T11:23:59.862967Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysqlx' +2023-03-12T11:23:59.863688Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysqlx_cache_cleaner' +2023-03-12T11:23:59.863712Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'ngram' +2023-03-12T11:23:59.863718Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'BLACKHOLE' +2023-03-12T11:23:59.863728Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'ARCHIVE' +2023-03-12T11:23:59.863733Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'TempTable' +2023-03-12T11:23:59.863737Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MRG_MYISAM' +2023-03-12T11:23:59.863742Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MyISAM' +2023-03-12T11:23:59.863759Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CHANGED_PAGES' +2023-03-12T11:23:59.863767Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESPACES_SCRUBBING' +2023-03-12T11:23:59.863773Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESPACES_ENCRYPTION' +2023-03-12T11:23:59.863778Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_SESSION_TEMP_TABLESPACES' +2023-03-12T11:23:59.863783Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CACHED_INDEXES' +2023-03-12T11:23:59.863788Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_VIRTUAL' +2023-03-12T11:23:59.863792Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_COLUMNS' +2023-03-12T11:23:59.863796Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESPACES' +2023-03-12T11:23:59.863801Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_INDEXES' +2023-03-12T11:23:59.863806Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESTATS' +2023-03-12T11:23:59.863810Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLES' +2023-03-12T11:23:59.863815Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_INDEX_TABLE' +2023-03-12T11:23:59.863819Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_INDEX_CACHE' +2023-03-12T11:23:59.863828Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_CONFIG' +2023-03-12T11:23:59.863833Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_BEING_DELETED' +2023-03-12T11:23:59.863837Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_DELETED' +2023-03-12T11:23:59.863842Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD' +2023-03-12T11:23:59.863847Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_METRICS' +2023-03-12T11:23:59.863852Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TEMP_TABLE_INFO' +2023-03-12T11:23:59.863858Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_POOL_STATS' +2023-03-12T11:23:59.863862Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU' +2023-03-12T11:23:59.863866Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_PAGE' +2023-03-12T11:23:59.863871Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET' +2023-03-12T11:23:59.863875Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_PER_INDEX' +2023-03-12T11:23:59.863880Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMPMEM_RESET' +2023-03-12T11:23:59.863884Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMPMEM' +2023-03-12T11:23:59.863888Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_RESET' +2023-03-12T11:23:59.863893Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP' +2023-03-12T11:23:59.863897Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TRX' +2023-03-12T11:23:59.863901Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'InnoDB' +2023-03-12T11:23:59.863947Z 0 [Note] [MY-013072] [InnoDB] Starting shutdown... +2023-03-12T11:23:59.864097Z 0 [Note] [MY-011944] [InnoDB] Dumping buffer pool(s) to /var/lib/mysqlib_buffer_pool +2023-03-12T11:23:59.867039Z 0 [Note] [MY-011944] [InnoDB] Buffer pool(s) dump completed at 230416 13:23:59 +2023-03-12T11:23:59.875258Z 0 [Note] [MY-013084] [InnoDB] Log background threads are being closed... +2023-03-12T11:24:03.291840Z 0 [Note] [MY-012980] [InnoDB] Shutdown completed; log sequence number 35636234646556 +2023-03-12T11:24:03.292607Z 0 [Note] [MY-012255] [InnoDB] Removed temporary tablespace data file: "ibtmp1" +2023-03-12T11:24:03.292648Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MEMORY' +2023-03-12T11:24:03.292662Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'CSV' +2023-03-12T11:24:03.292671Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'PERFORMANCE_SCHEMA' +2023-03-12T11:24:03.292708Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'wsrep' +2023-03-12T11:24:03.292718Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'daemon_keyring_proxy_plugin' +2023-03-12T11:24:03.292794Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'sha2_cache_cleaner' +2023-03-12T11:24:03.292807Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'caching_sha2_password' +2023-03-12T11:24:03.292815Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'sha256_password' +2023-03-12T11:24:03.292820Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysql_native_password' +2023-03-12T11:24:03.293048Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'binlog' +2023-03-12T11:24:03.294073Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.28-19.1) Percona XtraDB Cluster (GPL), Release rel19, Revision f544540, WSREP version 26.4.3. + INFO: Skipping wsrep-recover for 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 pair + INFO: Assigning 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 to wsrep_start_position +2023-03-12T11:24:33.313477Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead. +2023-03-12T11:24:33.313492Z 0 [Warning] [MY-011069] [Server] The syntax '--master-info-repository' is deprecated and will be removed in a future release. +2023-03-12T11:24:33.313499Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T11:24:33.313530Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T11:24:33.313540Z 0 [Warning] [MY-011068] [Server] The syntax 'log_slave_updates' is deprecated and will be removed in a future release. Please use log_replica_updates instead. +2023-03-12T11:24:33.313547Z 0 [Warning] [MY-011068] [Server] The syntax 'skip_slave_start' is deprecated and will be removed in a future release. Please use skip_replica_start instead. +2023-03-12T11:24:33.313563Z 0 [Warning] [MY-011068] [Server] The syntax 'wsrep_slave_threads' is deprecated and will be removed in a future release. Please use wsrep_applier_threads instead. +2023-03-12T11:24:33.315651Z 0 [Note] [MY-010949] [Server] Basedir set to /usr/. +2023-03-12T11:24:33.315663Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.28-19.1) starting as process 1748261 +2023-03-12T11:24:33.316627Z 0 [Warning] [MY-013242] [Server] --character-set-server: 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous. +2023-03-12T11:24:33.316633Z 0 [Warning] [MY-013244] [Server] --collation-server: 'utf8_general_ci' is a collation of the deprecated character set UTF8MB3. Please consider using UTF8MB4 with an appropriate collation instead. +2023-03-12T11:24:33.317880Z 0 [Note] [MY-010182] [Server] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +2023-03-12T11:24:33.318009Z 0 [Note] [MY-010304] [Server] Skipping generation of SSL certificates as certificate files are present in data directory. +2023-03-12T11:24:33.319696Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. +2023-03-12T11:24:33.319733Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. +2023-03-12T11:24:33.319744Z 0 [Note] [MY-010303] [Server] Skipping generation of SSL certificates as options related to SSL are specified. +2023-03-12T11:24:33.319783Z 0 [Note] [MY-000000] [Galera] Loading provider /usr/lib64/libgalera_smm.so initial position: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T11:24:33.319800Z 0 [Note] [MY-000000] [Galera] wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so' +2023-03-12T11:24:33.320409Z 0 [Note] [MY-000000] [Galera] wsrep_load(): Galera 4.11(a9008fc) by Codership Oy (modified by Percona ) loaded successfully. +2023-03-12T11:24:33.320447Z 0 [Note] [MY-000000] [Galera] CRC-32C: using 64-bit x86 acceleration. +2023-03-12T11:24:33.320989Z 0 [Note] [MY-000000] [Galera] Found saved state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896, safe_to_bootstrap: 1 +2023-03-12T11:24:33.321079Z 0 [Note] [MY-000000] [Galera] GCache DEBUG: opened preamble: +Version: 2 +UUID: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +Seqno: 170403896 - 170403896 +Offset: 1280 +Synced: 1 +2023-03-12T11:24:33.321096Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: version: 2, UUID: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049, offset: 1280 +2023-03-12T11:24:33.321165Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer initial scan... 0.0% ( 0/53687091224 bytes) complete. +2023-03-12T11:24:33.321213Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer initial scan...100.0% (53687091224/53687091224 bytes) complete. +2023-03-12T11:24:33.321223Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: found gapless sequence 170403896-170403896 +2023-03-12T11:24:33.321246Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer unused buffers scan... 0.0% ( 0/168 bytes) complete. +2023-03-12T11:24:33.321266Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer unused buffers scan...100.0% (168/168 bytes) complete. +2023-03-12T11:24:33.321277Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: found 0/1 locked buffers +2023-03-12T11:24:33.321291Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: free space: 53687091032/53687091200 +2023-03-12T11:24:33.322170Z 0 [Warning] [MY-000000] [Galera] Option 'gcs.fc_master_slave' is deprecated and will be removed in the future versions, please use 'gcs.fc_single_primary' instead. +2023-03-12T11:24:33.322783Z 0 [Note] [MY-000000] [Galera] Passing config to GCS: base_dir = /var/lib/mysql; base_host = 172.17.0.3; base_port = 4567; cert.log_conflicts = no; cert.optimistic_pa = no; debug = no; evs.auto_evict = 0; evs.delay_margin = PT1S; evs.delayed_keep_period = PT30S; evs.inactive_check_period = PT0.5S; evs.inactive_timeout = PT15S; evs.join_retrans_period = PT1S; evs.max_install_timeouts = 3; evs.send_window = 10; evs.stats_report_period = PT1M; evs.suspect_timeout = PT5S; evs.user_send_window = 4; evs.view_forget_timeout = PT24H; gcache.dir = /var/lib/mysql; gcache.freeze_purge_at_seqno = -1; gcache.keep_pages_count = 0; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = galera.cache; gcache.page_size = 128M; gcache.recover = yes; gcache.size = 50G; gcomm.thread_prio = ; gcs.fc_debug = 0; gcs.fc_factor = 1.0; gcs.fc_limit = 100; gcs.fc_master_slave = no; gcs.fc_single_primary = no; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = no; gmcast.segment = 0; gmcast.version = 0; pc.announce_timeout = PT3S; pc.checksum = false; pc.ignore_quorum = false; pc.ignore_sb = false; pc.npvo = false; pc.recovery = true; pc.version = 0; pc.wait_prim = true; pc.wait_prim_timeout = PT30S; pc.weight = 1; protonet.backend = asio; protonet.version = 0; repl.causal_read_timeout = PT30S; repl.commit_order = 3; repl.key_format = FLAT8; repl.max_ws_size = 2147483647; repl.proto_max = 10; socket.checksum = 2; socket.recv_buf_size = auto; socket.send_buf_size = auto; socket.ssl = YES; socket.ssl_ca = ca.pem; socket.ssl_cert = server-cert.pem; socket.ssl_cipher = ; socket.ssl_compression = YES; socket.ssl_key = server-key.pem; socket.ssl_reload = 1; +2023-03-12T11:24:33.331093Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T11:24:33.331160Z 0 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896, protocol version: -1 +2023-03-12T11:24:33.331222Z 0 [Note] [MY-000000] [WSREP] Starting replication +2023-03-12T11:24:33.331238Z 0 [Note] [MY-000000] [Galera] Connecting with bootstrap option: 1 +2023-03-12T11:24:33.331252Z 0 [Note] [MY-000000] [Galera] Setting GCS initial position to 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T11:24:33.331290Z 0 [Note] [MY-000000] [Galera] protonet asio version 0 +2023-03-12T11:24:33.331627Z 0 [Note] [MY-000000] [Galera] Using CRC-32C for message checksums. +2023-03-12T11:24:33.331647Z 0 [Note] [MY-000000] [Galera] backend: asio +2023-03-12T11:24:33.331722Z 0 [Note] [MY-000000] [Galera] gcomm thread scheduling priority set to other:0 +2023-03-12T11:24:33.331793Z 0 [Warning] [MY-000000] [Galera] Fail to access the file (/var/lib/mysql/gvwstate.dat) error (No such file or directory). It is possible if node is booting for first time or re-booting after a graceful shutdown +2023-03-12T11:24:33.331805Z 0 [Note] [MY-000000] [Galera] Restoring primary-component from disk failed. Either node is booting for first time or re-booting after a graceful shutdown +2023-03-12T11:24:33.331927Z 0 [Note] [MY-000000] [Galera] GMCast version 0 +2023-03-12T11:24:33.332023Z 0 [Note] [MY-000000] [Galera] (43029033-8c27, 'ssl://0.0.0.0:4567') listening at ssl://0.0.0.0:4567 +2023-03-12T11:24:33.332036Z 0 [Note] [MY-000000] [Galera] (43029033-8c27, 'ssl://0.0.0.0:4567') multicast: , ttl: 1 +2023-03-12T11:24:33.332202Z 0 [Note] [MY-000000] [Galera] EVS version 1 +2023-03-12T11:24:33.332251Z 0 [Note] [MY-000000] [Galera] gcomm: bootstrapping new group 'pxc_cluster' +2023-03-12T11:24:33.332269Z 0 [Note] [MY-000000] [Galera] start_prim is enabled, turn off pc_recovery +2023-03-12T11:24:33.332566Z 0 [Note] [MY-000000] [Galera] EVS version upgrade 0 -> 1 +2023-03-12T11:24:33.332593Z 0 [Note] [MY-000000] [Galera] PC protocol upgrade 0 -> 1 +2023-03-12T11:24:33.332623Z 0 [Note] [MY-000000] [Galera] Node 43029033-8c27 state primary +2023-03-12T11:24:33.332649Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,43029033-8c27,1) +memb { + 43029033-8c27,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T11:24:33.332661Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T11:24:33.334157Z 0 [Note] [MY-000000] [Galera] discarding pending addr without UUID: ssl://172.17.0.3:4567 +2023-03-12T11:24:33.334176Z 0 [Note] [MY-000000] [Galera] discarding pending addr proto entry 0x76bd160 +2023-03-12T11:24:33.334210Z 0 [Note] [MY-000000] [Galera] discarding pending addr without UUID: ssl://172.17.0.4:4567 +2023-03-12T11:24:33.334222Z 0 [Note] [MY-000000] [Galera] discarding pending addr proto entry 0x76bd680 +2023-03-12T11:24:33.334259Z 0 [Note] [MY-000000] [Galera] gcomm: connected +2023-03-12T11:24:33.334277Z 0 [Note] [MY-000000] [Galera] Changing maximum packet size to 64500, resulting msg size: 32636 +2023-03-12T11:24:33.334384Z 0 [Note] [MY-000000] [Galera] Shifting CLOSED -> OPEN (TO: 0) +2023-03-12T11:24:33.334395Z 0 [Note] [MY-000000] [Galera] Opened channel 'pxc_cluster' +2023-03-12T11:24:33.334467Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T11:24:33.334583Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: 4302fa9b-dc49-11ed-ac98-aef47ccd3837 +2023-03-12T11:24:33.334603Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 4302fa9b-dc49-11ed-ac98-aef47ccd3837 +2023-03-12T11:24:33.334619Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 4302fa9b-dc49-11ed-ac98-aef47ccd3837 from 0 (node2) +2023-03-12T11:24:33.334637Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 0, + members = 1/1 (primary/total), + act_id = 170403896, + last_appl. = 170403896, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T11:24:33.334651Z 1 [Note] [MY-000000] [WSREP] Starting rollbacker thread 1 +2023-03-12T11:24:33.334686Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [100, 100] +2023-03-12T11:24:33.334699Z 0 [Note] [MY-000000] [Galera] Restored state OPEN -> JOINED (170403897) +2023-03-12T11:24:33.334707Z 2 [Note] [MY-000000] [WSREP] Starting applier thread 2 +2023-03-12T11:24:33.334746Z 0 [Note] [MY-000000] [Galera] Member 0.0 (node2) synced with group. +2023-03-12T11:24:33.334761Z 0 [Note] [MY-000000] [Galera] Shifting JOINED -> SYNCED (TO: 170403897) +2023-03-12T11:24:33.334776Z 2 [Note] [MY-000000] [Galera] ####### processing CC 170403897, local, ordered +2023-03-12T11:24:33.334800Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 170403896 upto current CC event 170403897 upto:170403896 +2023-03-12T11:24:33.334818Z 2 [Note] [MY-000000] [Galera] Drain monitors from 170403896 up to 170403896 +2023-03-12T11:24:33.334838Z 2 [Note] [MY-000000] [Galera] Process first view: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 my uuid: 43029033-dc49-11ed-8c27-9a30b07be54c +2023-03-12T11:24:33.334871Z 2 [Note] [MY-000000] [Galera] Server node2 connected to cluster at position 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403897 with ID 43029033-dc49-11ed-8c27-9a30b07be54c +2023-03-12T11:24:33.334886Z 2 [Note] [MY-000000] [WSREP] Server status change disconnected -> connected +2023-03-12T11:24:33.334941Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:24:33.334982Z 2 [Note] [MY-000000] [Galera] ####### My UUID: 43029033-dc49-11ed-8c27-9a30b07be54c +2023-03-12T11:24:33.335002Z 2 [Note] [MY-000000] [Galera] Cert index reset to 00000000-0000-0000-0000-000000000000:-1 (proto: 10), state transfer needed: no +2023-03-12T11:24:33.335050Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T11:24:33.335089Z 2 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 00000000-0000-0000-0000-000000000000:-1, protocol version: -1 +2023-03-12T11:24:33.335110Z 2 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T11:24:33.335128Z 2 [Note] [MY-000000] [Galera] ####### Adjusting cert position: -1 -> 170403897 +2023-03-12T11:24:33.335151Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T11:24:33.336572Z 2 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403897 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 0 + members(1): + 0: 43029033-dc49-11ed-8c27-9a30b07be54c, node2 +================================================= +2023-03-12T11:24:33.336609Z 2 [Note] [MY-000000] [WSREP] Server status change connected -> joiner +2023-03-12T11:24:33.336630Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:24:33.336657Z 2 [Note] [MY-000000] [WSREP] Server status change joiner -> initializing +2023-03-12T11:24:33.336674Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:24:33.338362Z 0 [Warning] [MY-013245] [Server] The SSL library function CRYPTO_set_mem_functions failed. This is typically caused by the SSL library already being used. As a result the SSL memory allocation will not be instrumented. +2023-03-12T11:24:33.339699Z 0 [Note] [MY-012366] [InnoDB] Using Linux native AIO +2023-03-12T11:24:33.339879Z 0 [Note] [MY-010747] [Server] Plugin 'FEDERATED' is disabled. +2023-03-12T11:24:33.341156Z 3 [System] [MY-013576] [InnoDB] InnoDB initialization has started. +2023-03-12T11:24:33.341206Z 3 [Note] [MY-013546] [InnoDB] Atomic write enabled +2023-03-12T11:24:33.341263Z 3 [Note] [MY-012932] [InnoDB] PUNCH HOLE support available +2023-03-12T11:24:33.341285Z 3 [Note] [MY-012944] [InnoDB] Uses event mutexes +2023-03-12T11:24:33.341300Z 3 [Note] [MY-012945] [InnoDB] GCC builtin __atomic_thread_fence() is used for memory barrier +2023-03-12T11:24:33.341312Z 3 [Note] [MY-012948] [InnoDB] Compressed tables use zlib 1.2.11 +2023-03-12T11:24:33.343424Z 3 [Note] [MY-013251] [InnoDB] Number of pools: 1 +2023-03-12T11:24:33.343536Z 3 [Note] [MY-012951] [InnoDB] Using hardware accelerated crc32 and polynomial multiplication. +2023-03-12T11:24:33.344011Z 3 [Note] [MY-012203] [InnoDB] Directories to scan './' +2023-03-12T11:24:33.344064Z 3 [Note] [MY-012204] [InnoDB] Scanning './' +2023-03-12T11:24:37.187642Z 3 [Note] [MY-012208] [InnoDB] Completed space ID check of 3118 files. +2023-03-12T11:24:37.192785Z 3 [Note] [MY-012955] [InnoDB] Initializing buffer pool, total size = 120.000000G, instances = 64, chunk size =128.000000M +2023-03-12T11:24:40.779631Z 3 [Note] [MY-012957] [InnoDB] Completed initialization of buffer pool +2023-03-12T11:24:40.982386Z 0 [Note] [MY-011952] [InnoDB] If the mysqld execution user is authorized, page cleaner and LRU manager thread priority can be changed. See the man page of setpriority(). +2023-03-12T11:24:40.986231Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_0.dblwr' for doublewrite +2023-03-12T11:24:40.989552Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_1.dblwr' for doublewrite +2023-03-12T11:24:40.994610Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_2.dblwr' for doublewrite +2023-03-12T11:24:40.997649Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_3.dblwr' for doublewrite +2023-03-12T11:24:41.003004Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_4.dblwr' for doublewrite +2023-03-12T11:24:41.007931Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_5.dblwr' for doublewrite +2023-03-12T11:24:41.010757Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_6.dblwr' for doublewrite +2023-03-12T11:24:41.011384Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_7.dblwr' for doublewrite +2023-03-12T11:24:41.012164Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_8.dblwr' for doublewrite +2023-03-12T11:24:41.012755Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_9.dblwr' for doublewrite +2023-03-12T11:24:41.013562Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_10.dblwr' for doublewrite +2023-03-12T11:24:41.014148Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_11.dblwr' for doublewrite +2023-03-12T11:24:41.014887Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_12.dblwr' for doublewrite +2023-03-12T11:24:41.015460Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_13.dblwr' for doublewrite +2023-03-12T11:24:41.016238Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_14.dblwr' for doublewrite +2023-03-12T11:24:41.017066Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_15.dblwr' for doublewrite +2023-03-12T11:24:41.017930Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_16.dblwr' for doublewrite +2023-03-12T11:24:41.018631Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_17.dblwr' for doublewrite +2023-03-12T11:24:41.019509Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_18.dblwr' for doublewrite +2023-03-12T11:24:41.020184Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_19.dblwr' for doublewrite +2023-03-12T11:24:41.021118Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_20.dblwr' for doublewrite +2023-03-12T11:24:41.021801Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_21.dblwr' for doublewrite +2023-03-12T11:24:41.022682Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_22.dblwr' for doublewrite +2023-03-12T11:24:41.023374Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_23.dblwr' for doublewrite +2023-03-12T11:24:41.024251Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_24.dblwr' for doublewrite +2023-03-12T11:24:41.024951Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_25.dblwr' for doublewrite +2023-03-12T11:24:41.025804Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_26.dblwr' for doublewrite +2023-03-12T11:24:41.026482Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_27.dblwr' for doublewrite +2023-03-12T11:24:41.027355Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_28.dblwr' for doublewrite +2023-03-12T11:24:41.028033Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_29.dblwr' for doublewrite +2023-03-12T11:24:41.028905Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_30.dblwr' for doublewrite +2023-03-12T11:24:41.029612Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_31.dblwr' for doublewrite +2023-03-12T11:24:41.030428Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_32.dblwr' for doublewrite +2023-03-12T11:24:41.031094Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_33.dblwr' for doublewrite +2023-03-12T11:24:41.031892Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_34.dblwr' for doublewrite +2023-03-12T11:24:41.032675Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_35.dblwr' for doublewrite +2023-03-12T11:24:41.033519Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_36.dblwr' for doublewrite +2023-03-12T11:24:41.034178Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_37.dblwr' for doublewrite +2023-03-12T11:24:41.035065Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_38.dblwr' for doublewrite +2023-03-12T11:24:41.035771Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_39.dblwr' for doublewrite +2023-03-12T11:24:41.036621Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_40.dblwr' for doublewrite +2023-03-12T11:24:41.037276Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_41.dblwr' for doublewrite +2023-03-12T11:24:41.038131Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_42.dblwr' for doublewrite +2023-03-12T11:24:41.038795Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_43.dblwr' for doublewrite +2023-03-12T11:24:41.039646Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_44.dblwr' for doublewrite +2023-03-12T11:24:41.040319Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_45.dblwr' for doublewrite +2023-03-12T11:24:41.041197Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_46.dblwr' for doublewrite +2023-03-12T11:24:41.041858Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_47.dblwr' for doublewrite +2023-03-12T11:24:41.042710Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_48.dblwr' for doublewrite +2023-03-12T11:24:41.043369Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_49.dblwr' for doublewrite +2023-03-12T11:24:41.044243Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_50.dblwr' for doublewrite +2023-03-12T11:24:41.044975Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_51.dblwr' for doublewrite +2023-03-12T11:24:41.045762Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_52.dblwr' for doublewrite +2023-03-12T11:24:41.046379Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_53.dblwr' for doublewrite +2023-03-12T11:24:41.047249Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_54.dblwr' for doublewrite +2023-03-12T11:24:41.047909Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_55.dblwr' for doublewrite +2023-03-12T11:24:41.048706Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_56.dblwr' for doublewrite +2023-03-12T11:24:41.049356Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_57.dblwr' for doublewrite +2023-03-12T11:24:41.050177Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_58.dblwr' for doublewrite +2023-03-12T11:24:41.050814Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_59.dblwr' for doublewrite +2023-03-12T11:24:41.051605Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_60.dblwr' for doublewrite +2023-03-12T11:24:41.052189Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_61.dblwr' for doublewrite +2023-03-12T11:24:41.052930Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_62.dblwr' for doublewrite +2023-03-12T11:24:41.053507Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_63.dblwr' for doublewrite +2023-03-12T11:24:41.054268Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_64.dblwr' for doublewrite +2023-03-12T11:24:41.054871Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_65.dblwr' for doublewrite +2023-03-12T11:24:41.055631Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_66.dblwr' for doublewrite +2023-03-12T11:24:41.056208Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_67.dblwr' for doublewrite +2023-03-12T11:24:41.056973Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_68.dblwr' for doublewrite +2023-03-12T11:24:41.057636Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_69.dblwr' for doublewrite +2023-03-12T11:24:41.058531Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_70.dblwr' for doublewrite +2023-03-12T11:24:41.059276Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_71.dblwr' for doublewrite +2023-03-12T11:24:41.060187Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_72.dblwr' for doublewrite +2023-03-12T11:24:41.060901Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_73.dblwr' for doublewrite +2023-03-12T11:24:41.061799Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_74.dblwr' for doublewrite +2023-03-12T11:24:41.062518Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_75.dblwr' for doublewrite +2023-03-12T11:24:41.063371Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_76.dblwr' for doublewrite +2023-03-12T11:24:41.064039Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_77.dblwr' for doublewrite +2023-03-12T11:24:41.064873Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_78.dblwr' for doublewrite +2023-03-12T11:24:41.065547Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_79.dblwr' for doublewrite +2023-03-12T11:24:41.066429Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_80.dblwr' for doublewrite +2023-03-12T11:24:41.067093Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_81.dblwr' for doublewrite +2023-03-12T11:24:41.067963Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_82.dblwr' for doublewrite +2023-03-12T11:24:41.068613Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_83.dblwr' for doublewrite +2023-03-12T11:24:41.069467Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_84.dblwr' for doublewrite +2023-03-12T11:24:41.070133Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_85.dblwr' for doublewrite +2023-03-12T11:24:41.071042Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_86.dblwr' for doublewrite +2023-03-12T11:24:41.071755Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_87.dblwr' for doublewrite +2023-03-12T11:24:41.072643Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_88.dblwr' for doublewrite +2023-03-12T11:24:41.073341Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_89.dblwr' for doublewrite +2023-03-12T11:24:41.074150Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_90.dblwr' for doublewrite +2023-03-12T11:24:41.074791Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_91.dblwr' for doublewrite +2023-03-12T11:24:41.075606Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_92.dblwr' for doublewrite +2023-03-12T11:24:41.076280Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_93.dblwr' for doublewrite +2023-03-12T11:24:41.077127Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_94.dblwr' for doublewrite +2023-03-12T11:24:41.077781Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_95.dblwr' for doublewrite +2023-03-12T11:24:41.078579Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_96.dblwr' for doublewrite +2023-03-12T11:24:41.079220Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_97.dblwr' for doublewrite +2023-03-12T11:24:41.080004Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_98.dblwr' for doublewrite +2023-03-12T11:24:41.080580Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_99.dblwr' for doublewrite +2023-03-12T11:24:41.081486Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_100.dblwr' for doublewrite +2023-03-12T11:24:41.082111Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_101.dblwr' for doublewrite +2023-03-12T11:24:41.082901Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_102.dblwr' for doublewrite +2023-03-12T11:24:41.083571Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_103.dblwr' for doublewrite +2023-03-12T11:24:41.084336Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_104.dblwr' for doublewrite +2023-03-12T11:24:41.084972Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_105.dblwr' for doublewrite +2023-03-12T11:24:41.085802Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_106.dblwr' for doublewrite +2023-03-12T11:24:41.086486Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_107.dblwr' for doublewrite +2023-03-12T11:24:41.087346Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_108.dblwr' for doublewrite +2023-03-12T11:24:41.088039Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_109.dblwr' for doublewrite +2023-03-12T11:24:41.089109Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_110.dblwr' for doublewrite +2023-03-12T11:24:41.089819Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_111.dblwr' for doublewrite +2023-03-12T11:24:41.090650Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_112.dblwr' for doublewrite +2023-03-12T11:24:41.091368Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_113.dblwr' for doublewrite +2023-03-12T11:24:41.092239Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_114.dblwr' for doublewrite +2023-03-12T11:24:41.092888Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_115.dblwr' for doublewrite +2023-03-12T11:24:41.093712Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_116.dblwr' for doublewrite +2023-03-12T11:24:41.094389Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_117.dblwr' for doublewrite +2023-03-12T11:24:41.095220Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_118.dblwr' for doublewrite +2023-03-12T11:24:41.095893Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_119.dblwr' for doublewrite +2023-03-12T11:24:41.096815Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_120.dblwr' for doublewrite +2023-03-12T11:24:41.097558Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_121.dblwr' for doublewrite +2023-03-12T11:24:41.098475Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_122.dblwr' for doublewrite +2023-03-12T11:24:41.099238Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_123.dblwr' for doublewrite +2023-03-12T11:24:41.100138Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_124.dblwr' for doublewrite +2023-03-12T11:24:41.100854Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_125.dblwr' for doublewrite +2023-03-12T11:24:41.101778Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_126.dblwr' for doublewrite +2023-03-12T11:24:41.102515Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_127.dblwr' for doublewrite +2023-03-12T11:24:41.207848Z 3 [Note] [MY-013566] [InnoDB] Double write buffer files: 128 +2023-03-12T11:24:41.207938Z 3 [Note] [MY-013565] [InnoDB] Double write buffer pages per instance: 32 +2023-03-12T11:24:41.207995Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_0.dblwr' for doublewrite +2023-03-12T11:24:41.208031Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_1.dblwr' for doublewrite +2023-03-12T11:24:41.208063Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_2.dblwr' for doublewrite +2023-03-12T11:24:41.208094Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_3.dblwr' for doublewrite +2023-03-12T11:24:41.208125Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_4.dblwr' for doublewrite +2023-03-12T11:24:41.208157Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_5.dblwr' for doublewrite +2023-03-12T11:24:41.208187Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_6.dblwr' for doublewrite +2023-03-12T11:24:41.208217Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_7.dblwr' for doublewrite +2023-03-12T11:24:41.208245Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_8.dblwr' for doublewrite +2023-03-12T11:24:41.208275Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_9.dblwr' for doublewrite +2023-03-12T11:24:41.208309Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_10.dblwr' for doublewrite +2023-03-12T11:24:41.208342Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_11.dblwr' for doublewrite +2023-03-12T11:24:41.208374Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_12.dblwr' for doublewrite +2023-03-12T11:24:41.208407Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_13.dblwr' for doublewrite +2023-03-12T11:24:41.208438Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_14.dblwr' for doublewrite +2023-03-12T11:24:41.208468Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_15.dblwr' for doublewrite +2023-03-12T11:24:41.208498Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_16.dblwr' for doublewrite +2023-03-12T11:24:41.208528Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_17.dblwr' for doublewrite +2023-03-12T11:24:41.208559Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_18.dblwr' for doublewrite +2023-03-12T11:24:41.208588Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_19.dblwr' for doublewrite +2023-03-12T11:24:41.208617Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_20.dblwr' for doublewrite +2023-03-12T11:24:41.208646Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_21.dblwr' for doublewrite +2023-03-12T11:24:41.208675Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_22.dblwr' for doublewrite +2023-03-12T11:24:41.208705Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_23.dblwr' for doublewrite +2023-03-12T11:24:41.208736Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_24.dblwr' for doublewrite +2023-03-12T11:24:41.208765Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_25.dblwr' for doublewrite +2023-03-12T11:24:41.208795Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_26.dblwr' for doublewrite +2023-03-12T11:24:41.208834Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_27.dblwr' for doublewrite +2023-03-12T11:24:41.208868Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_28.dblwr' for doublewrite +2023-03-12T11:24:41.208898Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_29.dblwr' for doublewrite +2023-03-12T11:24:41.208936Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_30.dblwr' for doublewrite +2023-03-12T11:24:41.208972Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_31.dblwr' for doublewrite +2023-03-12T11:24:41.209004Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_32.dblwr' for doublewrite +2023-03-12T11:24:41.209035Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_33.dblwr' for doublewrite +2023-03-12T11:24:41.209065Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_34.dblwr' for doublewrite +2023-03-12T11:24:41.209094Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_35.dblwr' for doublewrite +2023-03-12T11:24:41.209124Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_36.dblwr' for doublewrite +2023-03-12T11:24:41.209153Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_37.dblwr' for doublewrite +2023-03-12T11:24:41.209187Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_38.dblwr' for doublewrite +2023-03-12T11:24:41.209217Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_39.dblwr' for doublewrite +2023-03-12T11:24:41.209246Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_40.dblwr' for doublewrite +2023-03-12T11:24:41.209274Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_41.dblwr' for doublewrite +2023-03-12T11:24:41.209304Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_42.dblwr' for doublewrite +2023-03-12T11:24:41.209333Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_43.dblwr' for doublewrite +2023-03-12T11:24:41.209365Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_44.dblwr' for doublewrite +2023-03-12T11:24:41.209393Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_45.dblwr' for doublewrite +2023-03-12T11:24:41.209421Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_46.dblwr' for doublewrite +2023-03-12T11:24:41.209449Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_47.dblwr' for doublewrite +2023-03-12T11:24:41.209478Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_48.dblwr' for doublewrite +2023-03-12T11:24:41.209505Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_49.dblwr' for doublewrite +2023-03-12T11:24:41.209534Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_50.dblwr' for doublewrite +2023-03-12T11:24:41.209564Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_51.dblwr' for doublewrite +2023-03-12T11:24:41.209592Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_52.dblwr' for doublewrite +2023-03-12T11:24:41.209621Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_53.dblwr' for doublewrite +2023-03-12T11:24:41.209650Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_54.dblwr' for doublewrite +2023-03-12T11:24:41.209679Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_55.dblwr' for doublewrite +2023-03-12T11:24:41.209708Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_56.dblwr' for doublewrite +2023-03-12T11:24:41.209737Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_57.dblwr' for doublewrite +2023-03-12T11:24:41.209765Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_58.dblwr' for doublewrite +2023-03-12T11:24:41.209793Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_59.dblwr' for doublewrite +2023-03-12T11:24:41.209825Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_60.dblwr' for doublewrite +2023-03-12T11:24:41.209852Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_61.dblwr' for doublewrite +2023-03-12T11:24:41.209881Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_62.dblwr' for doublewrite +2023-03-12T11:24:41.209909Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_63.dblwr' for doublewrite +2023-03-12T11:24:41.209948Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_64.dblwr' for doublewrite +2023-03-12T11:24:41.209977Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_65.dblwr' for doublewrite +2023-03-12T11:24:41.210005Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_66.dblwr' for doublewrite +2023-03-12T11:24:41.210033Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_67.dblwr' for doublewrite +2023-03-12T11:24:41.210061Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_68.dblwr' for doublewrite +2023-03-12T11:24:41.210091Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_69.dblwr' for doublewrite +2023-03-12T11:24:41.210120Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_70.dblwr' for doublewrite +2023-03-12T11:24:41.210148Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_71.dblwr' for doublewrite +2023-03-12T11:24:41.210178Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_72.dblwr' for doublewrite +2023-03-12T11:24:41.210207Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_73.dblwr' for doublewrite +2023-03-12T11:24:41.210235Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_74.dblwr' for doublewrite +2023-03-12T11:24:41.210264Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_75.dblwr' for doublewrite +2023-03-12T11:24:41.210292Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_76.dblwr' for doublewrite +2023-03-12T11:24:41.210320Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_77.dblwr' for doublewrite +2023-03-12T11:24:41.210354Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_78.dblwr' for doublewrite +2023-03-12T11:24:41.210383Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_79.dblwr' for doublewrite +2023-03-12T11:24:41.210411Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_80.dblwr' for doublewrite +2023-03-12T11:24:41.210438Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_81.dblwr' for doublewrite +2023-03-12T11:24:41.210467Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_82.dblwr' for doublewrite +2023-03-12T11:24:41.210496Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_83.dblwr' for doublewrite +2023-03-12T11:24:41.210524Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_84.dblwr' for doublewrite +2023-03-12T11:24:41.210553Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_85.dblwr' for doublewrite +2023-03-12T11:24:41.210582Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_86.dblwr' for doublewrite +2023-03-12T11:24:41.210609Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_87.dblwr' for doublewrite +2023-03-12T11:24:41.210639Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_88.dblwr' for doublewrite +2023-03-12T11:24:41.210668Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_89.dblwr' for doublewrite +2023-03-12T11:24:41.210696Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_90.dblwr' for doublewrite +2023-03-12T11:24:41.210724Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_91.dblwr' for doublewrite +2023-03-12T11:24:41.210753Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_92.dblwr' for doublewrite +2023-03-12T11:24:41.210781Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_93.dblwr' for doublewrite +2023-03-12T11:24:41.210809Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_94.dblwr' for doublewrite +2023-03-12T11:24:41.210839Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_95.dblwr' for doublewrite +2023-03-12T11:24:41.210868Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_96.dblwr' for doublewrite +2023-03-12T11:24:41.210897Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_97.dblwr' for doublewrite +2023-03-12T11:24:41.210931Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_98.dblwr' for doublewrite +2023-03-12T11:24:41.210962Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_99.dblwr' for doublewrite +2023-03-12T11:24:41.210991Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_100.dblwr' for doublewrite +2023-03-12T11:24:41.211020Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_101.dblwr' for doublewrite +2023-03-12T11:24:41.211049Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_102.dblwr' for doublewrite +2023-03-12T11:24:41.211079Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_103.dblwr' for doublewrite +2023-03-12T11:24:41.211108Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_104.dblwr' for doublewrite +2023-03-12T11:24:41.211137Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_105.dblwr' for doublewrite +2023-03-12T11:24:41.211166Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_106.dblwr' for doublewrite +2023-03-12T11:24:41.211195Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_107.dblwr' for doublewrite +2023-03-12T11:24:41.211224Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_108.dblwr' for doublewrite +2023-03-12T11:24:41.211252Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_109.dblwr' for doublewrite +2023-03-12T11:24:41.224963Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_110.dblwr' for doublewrite +2023-03-12T11:24:41.225016Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_111.dblwr' for doublewrite +2023-03-12T11:24:41.225049Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_112.dblwr' for doublewrite +2023-03-12T11:24:41.225077Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_113.dblwr' for doublewrite +2023-03-12T11:24:41.225108Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_114.dblwr' for doublewrite +2023-03-12T11:24:41.225137Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_115.dblwr' for doublewrite +2023-03-12T11:24:41.225166Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_116.dblwr' for doublewrite +2023-03-12T11:24:41.225200Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_117.dblwr' for doublewrite +2023-03-12T11:24:41.225230Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_118.dblwr' for doublewrite +2023-03-12T11:24:41.225259Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_119.dblwr' for doublewrite +2023-03-12T11:24:41.225289Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_120.dblwr' for doublewrite +2023-03-12T11:24:41.225319Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_121.dblwr' for doublewrite +2023-03-12T11:24:41.225350Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_122.dblwr' for doublewrite +2023-03-12T11:24:41.225378Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_123.dblwr' for doublewrite +2023-03-12T11:24:41.225408Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_124.dblwr' for doublewrite +2023-03-12T11:24:41.225437Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_125.dblwr' for doublewrite +2023-03-12T11:24:41.225465Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_126.dblwr' for doublewrite +2023-03-12T11:24:41.225493Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_127.dblwr' for doublewrite +2023-03-12T11:24:41.227975Z 3 [Note] [MY-013086] [InnoDB] Starting to parse redo log at lsn = 35636234646556, whereas checkpoint_lsn = 35636234646556 and start_lsn = 35636234646528 +2023-03-12T11:24:41.342376Z 3 [Note] [MY-013083] [InnoDB] Log background threads are being started... +2023-03-12T11:24:41.343017Z 3 [Note] [MY-012532] [InnoDB] Applying a batch of 0 redo log records ... +2023-03-12T11:24:41.343056Z 3 [Note] [MY-012535] [InnoDB] Apply batch completed! +2023-03-12T11:24:41.343667Z 3 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_001'. +2023-03-12T11:24:41.345197Z 3 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_002'. +2023-03-12T11:24:41.346309Z 3 [Note] [MY-012910] [InnoDB] Opened 2 existing undo tablespaces. +2023-03-12T11:24:41.346384Z 3 [Note] [MY-011980] [InnoDB] GTID recovery trx_no: 10986149165 +2023-03-12T11:24:41.583422Z 3 [Note] [MY-013776] [InnoDB] Parallel initialization of rseg complete +2023-03-12T11:24:41.583495Z 3 [Note] [MY-013777] [InnoDB] Time taken to initialize rseg using 4 thread: 237115 ms. +2023-03-12T11:24:41.583645Z 3 [Note] [MY-012923] [InnoDB] Creating shared tablespace for temporary tables +2023-03-12T11:24:41.583746Z 3 [Note] [MY-012265] [InnoDB] Setting file '/var/lib/mysqlibtmp1' size to 12 MB. Physically writing the file full; Please wait ... +2023-03-12T11:24:41.598672Z 3 [Note] [MY-012266] [InnoDB] File '/var/lib/mysqlibtmp1' size is now 12 MB. +2023-03-12T11:24:41.599709Z 3 [Note] [MY-013627] [InnoDB] Scanning temp tablespace dir:'./#innodb_temp/' +2023-03-12T11:24:41.622361Z 3 [Note] [MY-013018] [InnoDB] Created 128 and tracked 128 new rollback segment(s) in the temporary tablespace. 128 are now active. +2023-03-12T11:24:41.622663Z 3 [Note] [MY-012976] [InnoDB] Percona XtraDB (http://www.percona.com) 8.0.28-19 started; log sequence number 35636234646566 +2023-03-12T11:24:41.623943Z 3 [System] [MY-013577] [InnoDB] InnoDB initialization has ended. +2023-03-12T11:24:41.632414Z 3 [Note] [MY-011089] [Server] Data dictionary restarting version '80023'. +2023-03-12T11:24:41.963883Z 3 [Note] [MY-012357] [InnoDB] Reading DD tablespace files +2023-03-12T11:24:42.120320Z 3 [Note] [MY-012356] [InnoDB] Scanned 3120 tablespaces. Validated 3120. +2023-03-12T11:24:42.164193Z 3 [Note] [MY-000000] [WSREP] wsrep_init_schema_and_SR (nil) +2023-03-12T11:24:42.243011Z 3 [System] [MY-000000] [WSREP] PXC upgrade completed successfully +2023-03-12T11:24:42.243183Z 3 [Note] [MY-010006] [Server] Using data dictionary with version '80023'. +2023-03-12T11:24:42.258492Z 0 [Note] [MY-011332] [Server] Plugin mysqlx reported: 'IPv6 is available' +2023-03-12T11:24:42.260384Z 0 [Note] [MY-011323] [Server] Plugin mysqlx reported: 'X Plugin ready for connections. bind-address: '::' port: 33060' +2023-03-12T11:24:42.260414Z 0 [Note] [MY-011323] [Server] Plugin mysqlx reported: 'X Plugin ready for connections. socket: '/var/lib/mysql/mysqlx.sock'' +2023-03-12T11:24:42.294623Z 0 [Note] [MY-010902] [Server] Thread priority attribute setting in Resource Group SQL shall be ignored due to unsupported platform or insufficient privilege. +2023-03-12T11:24:42.308183Z 0 [Note] [MY-012487] [InnoDB] DDL log recovery : begin +2023-03-12T11:24:42.308255Z 0 [Note] [MY-012488] [InnoDB] DDL log recovery : end +2023-03-12T11:24:42.309220Z 0 [Note] [MY-011946] [InnoDB] Loading buffer pool(s) from /var/lib/mysqlib_buffer_pool +2023-03-12T11:24:42.316656Z 0 [Note] [MY-012922] [InnoDB] Waiting for purge to start +2023-03-12T11:24:42.371994Z 0 [Warning] [MY-013829] [Server] Missing data directory for ICU regular expressions: /usr/lib64/mysql/private/. +2023-03-12T11:24:42.373382Z 0 [Note] [MY-010303] [Server] Skipping generation of SSL certificates as options related to SSL are specified. +2023-03-12T11:24:42.374045Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. +2023-03-12T11:24:42.374078Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. +2023-03-12T11:24:42.374103Z 0 [Note] [MY-010308] [Server] Skipping generation of RSA key pair through --sha256_password_auto_generate_rsa_keys as key files are present in data directory. +2023-03-12T11:24:42.374115Z 0 [Note] [MY-010308] [Server] Skipping generation of RSA key pair through --caching_sha2_password_auto_generate_rsa_keys as key files are present in data directory. +2023-03-12T11:24:42.374235Z 0 [Note] [MY-010252] [Server] Server hostname (bind-address): '0.0.0.0'; port: 3306 +2023-03-12T11:24:42.374259Z 0 [Note] [MY-010264] [Server] - '0.0.0.0' resolves to '0.0.0.0'; +2023-03-12T11:24:42.374282Z 0 [Note] [MY-010251] [Server] Server socket created on IP: '0.0.0.0'. +2023-03-12T11:24:42.427447Z 0 [Warning] [MY-010533] [Repl] Error during --relay-log-recovery: Could not locate rotate event from the master. +2023-03-12T11:24:42.427474Z 0 [Warning] [MY-013504] [Repl] Server was not able to find a rotate event from master server to initialize relay log recovery for channel ''. Skipping relay log recovery for the channel. +2023-03-12T11:24:42.436307Z 0 [Note] [MY-000000] [WSREP] Initialized wsrep sidno 2 +2023-03-12T11:24:42.436336Z 7 [Note] [MY-010051] [Server] Event Scheduler: scheduler thread started with id 7 +2023-03-12T11:24:42.436384Z 0 [Note] [MY-000000] [Galera] Server initialized +2023-03-12T11:24:42.436413Z 0 [Note] [MY-000000] [WSREP] Server status change initializing -> initialized +2023-03-12T11:24:42.436433Z 0 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:24:42.436513Z 2 [Note] [MY-000000] [Galera] Bootstrapping a new cluster, setting initial position to 00000000-0000-0000-0000-000000000000:-1 +2023-03-12T11:24:42.441862Z 9 [Note] [MY-000000] [WSREP] Recovered cluster id 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T11:24:42.442465Z 10 [Note] [MY-000000] [WSREP] Starting applier thread 10 +2023-03-12T11:24:42.442466Z 0 [Note] [MY-011240] [Server] Plugin mysqlx reported: 'Using SSL configuration from MySQL Server' +2023-03-12T11:24:42.442520Z 12 [Note] [MY-000000] [WSREP] Starting applier thread 12 +2023-03-12T11:24:42.442550Z 14 [Note] [MY-000000] [WSREP] Starting applier thread 14 +2023-03-12T11:24:42.442591Z 15 [Note] [MY-000000] [WSREP] Starting applier thread 15 +2023-03-12T11:24:42.442526Z 13 [Note] [MY-000000] [WSREP] Starting applier thread 13 +2023-03-12T11:24:42.442504Z 11 [Note] [MY-000000] [WSREP] Starting applier thread 11 +2023-03-12T11:24:42.442612Z 16 [Note] [MY-000000] [WSREP] Starting applier thread 16 +2023-03-12T11:24:42.443051Z 0 [Note] [MY-011243] [Server] Plugin mysqlx reported: 'Using OpenSSL for TLS connections' +2023-03-12T11:24:42.443189Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Bind-address: '::' port: 33060, socket: /var/lib/mysql/mysqlx.sock +2023-03-12T11:24:42.443267Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.28-19.1' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), Release rel19, Revision f544540, WSREP version 26.4.3. +2023-03-12T11:24:42.443542Z 2 [Note] [MY-000000] [WSREP] Server status change initialized -> joined +2023-03-12T11:24:42.443565Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:24:42.443580Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:24:42.448730Z 2 [Note] [MY-000000] [Galera] Recording CC from group: 170403897 +2023-03-12T11:24:42.448764Z 2 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 170403897 +2023-03-12T11:24:42.448773Z 2 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403896 +2023-03-12T11:24:42.448836Z 2 [Note] [MY-000000] [Galera] Server node2 synced with group +2023-03-12T11:24:42.448853Z 2 [Note] [MY-000000] [WSREP] Server status change joined -> synced +2023-03-12T11:24:42.448859Z 2 [Note] [MY-000000] [WSREP] Synchronized with group, ready for connections +2023-03-12T11:24:42.448884Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:24:44.749206Z 0 [Note] [MY-011946] [InnoDB] Buffer pool(s) load completed at 230416 13:24:44 +2023-03-12T11:25:51.758503Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:25:53.258031Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:25:54.758426Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:25:56.258304Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:25:57.758545Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:25:59.258609Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:26:00.758995Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:26:02.259088Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:26:03.759328Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:26:05.259585Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:26:06.759646Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:26:08.259815Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:26:09.760060Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:26:11.260117Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:26:12.760478Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:26:14.260723Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:26:15.760837Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:26:17.261118Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:26:18.761388Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:26:20.261408Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:26:21.761602Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:26:23.261869Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T11:28:46.312398Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:28:46.312464Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:39262 +2023-03-12T11:28:46.312531Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d780173b0 +2023-03-12T11:28:46.312540Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:28:47.812193Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:28:47.812248Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:39274 +2023-03-12T11:28:47.812304Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d78016c40 +2023-03-12T11:28:47.812313Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:28:49.312394Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:28:49.312443Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:54044 +2023-03-12T11:28:49.312500Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d78016e60 +2023-03-12T11:28:49.312509Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:28:50.812511Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:28:50.812559Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:54050 +2023-03-12T11:28:50.812615Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d78005930 +2023-03-12T11:28:50.812623Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:28:52.312736Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:28:52.312787Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:54056 +2023-03-12T11:28:52.312844Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d78007400 +2023-03-12T11:28:52.312852Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:28:53.812905Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:28:53.812968Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:54066 +2023-03-12T11:28:53.813025Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d7801ba10 +2023-03-12T11:28:53.813033Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:28:55.313134Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:28:55.313185Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:54074 +2023-03-12T11:28:55.313240Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d78016e60 +2023-03-12T11:28:55.313248Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:28:56.813386Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:28:56.813438Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:54078 +2023-03-12T11:28:56.813494Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d780172c0 +2023-03-12T11:28:56.813503Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:28:58.313598Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:28:58.313650Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:54090 +2023-03-12T11:28:58.313713Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d7801acb0 +2023-03-12T11:28:58.313723Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:28:59.814119Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:28:59.814179Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:44382 +2023-03-12T11:28:59.814233Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d7801c5f0 +2023-03-12T11:28:59.814242Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:29:01.314006Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:29:01.314059Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:44396 +2023-03-12T11:29:01.314122Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d7801ba10 +2023-03-12T11:29:01.314131Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:29:02.814267Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:29:02.814317Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:44406 +2023-03-12T11:29:02.814372Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d78006b70 +2023-03-12T11:29:02.814380Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:29:04.314428Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:29:04.314481Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:44412 +2023-03-12T11:29:04.314537Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d78006550 +2023-03-12T11:29:04.314546Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:29:05.814620Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:29:05.814669Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:44422 +2023-03-12T11:29:05.814733Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d780172a0 +2023-03-12T11:29:05.814742Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:29:07.314820Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:29:07.314870Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:44434 +2023-03-12T11:29:07.314935Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d78016c40 +2023-03-12T11:29:07.314947Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:29:08.814955Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:29:08.815003Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:55240 +2023-03-12T11:29:08.815061Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d7800ddf0 +2023-03-12T11:29:08.815069Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:29:10.315132Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:29:10.315184Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:55246 +2023-03-12T11:29:10.315246Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d78007360 +2023-03-12T11:29:10.315255Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:29:11.815342Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:29:11.815393Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:55254 +2023-03-12T11:29:11.815448Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d78007750 +2023-03-12T11:29:11.815457Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:29:13.315513Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:29:13.315563Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:55258 +2023-03-12T11:29:13.315629Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d78007510 +2023-03-12T11:29:13.315638Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:29:14.815633Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:29:14.815682Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:55260 +2023-03-12T11:29:14.815738Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d78006b40 +2023-03-12T11:29:14.815746Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:29:16.315900Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:29:16.315965Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:55268 +2023-03-12T11:29:16.316024Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d78016e60 +2023-03-12T11:29:16.316034Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:29:17.816160Z 0 [Note] [MY-000000] [Galera] handshake failed, my group: 'pxc_cluster', peer group: 'pxc_cluster8' +2023-03-12T11:29:17.816211Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:55278 +2023-03-12T11:29:17.816270Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d78007240 +2023-03-12T11:29:17.816279Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:35:14.196213Z 0 [Note] [MY-000000] [Galera] (43029033-8c27, 'ssl://0.0.0.0:4567') connection established to c0fe0ba2-8aac ssl://172.17.0.4:4567 +2023-03-12T11:35:14.196440Z 0 [Note] [MY-000000] [Galera] (43029033-8c27, 'ssl://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T11:35:14.693312Z 0 [Note] [MY-000000] [Galera] declaring c0fe0ba2-8aac at ssl://172.17.0.4:4567 stable +2023-03-12T11:35:14.693544Z 0 [Note] [MY-000000] [Galera] Node 43029033-8c27 state primary +2023-03-12T11:35:14.693671Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,43029033-8c27,2) +memb { + 43029033-8c27,0 + c0fe0ba2-8aac,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T11:35:14.693685Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T11:35:14.695410Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 2 +2023-03-12T11:35:14.695515Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: c14ae2ca-dc4a-11ed-83a6-0ff54dcc7625 +2023-03-12T11:35:14.697166Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: c14ae2ca-dc4a-11ed-83a6-0ff54dcc7625 +2023-03-12T11:35:14.697290Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: c14ae2ca-dc4a-11ed-83a6-0ff54dcc7625 from 0 (node2) +2023-03-12T11:35:15.193869Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: c14ae2ca-dc4a-11ed-83a6-0ff54dcc7625 from 1 (node3) +2023-03-12T11:35:15.193940Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 1, + members = 1/2 (primary/total), + act_id = 170403897, + last_appl. = 170403896, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T11:35:15.194001Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [141, 141] +2023-03-12T11:35:15.194116Z 2 [Note] [MY-000000] [Galera] ####### processing CC 170403898, local, ordered +2023-03-12T11:35:15.194149Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 170403897 upto current CC event 170403898 upto:170403897 +2023-03-12T11:35:15.194157Z 2 [Note] [MY-000000] [Galera] Drain monitors from 170403897 up to 170403897 +2023-03-12T11:35:15.194166Z 2 [Note] [MY-000000] [Galera] ####### My UUID: 43029033-dc49-11ed-8c27-9a30b07be54c +2023-03-12T11:35:15.194173Z 2 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T11:35:15.194180Z 2 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T11:35:15.194186Z 2 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170403897 -> 170403898 +2023-03-12T11:35:15.194247Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T11:35:15.198404Z 2 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403898 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 0 + members(2): + 0: 43029033-dc49-11ed-8c27-9a30b07be54c, node2 + 1: c0fe0ba2-dc4a-11ed-8aac-cb0cdf1579ef, node3 +================================================= +2023-03-12T11:35:15.198430Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:35:15.201230Z 2 [Note] [MY-000000] [Galera] Recording CC from group: 170403898 +2023-03-12T11:35:15.201255Z 2 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 170403898 +2023-03-12T11:35:15.201262Z 2 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403896 +2023-03-12T11:35:16.321586Z 0 [Note] [MY-000000] [Galera] Member 1.0 (node3) requested state transfer from 'node'. Selected 0.0 (node2)(SYNCED) as donor. +2023-03-12T11:35:16.321642Z 0 [Note] [MY-000000] [Galera] Shifting SYNCED -> DONOR/DESYNCED (TO: 170403898) +2023-03-12T11:35:16.321699Z 2 [Note] [MY-000000] [Galera] Detected STR version: 1, req_len: 145, req: STRv1 +2023-03-12T11:35:16.321752Z 2 [Note] [MY-000000] [Galera] IST request: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896-170403898|ssl://172.17.0.4:4568 +2023-03-12T11:35:16.321764Z 2 [Note] [MY-000000] [WSREP] Server status change synced -> donor +2023-03-12T11:35:16.321771Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:35:16.322043Z 0 [Note] [MY-000000] [WSREP] Initiating SST/IST transfer on DONOR side (wsrep_sst_xtrabackup-v2 --role 'donor' --address '172.17.0.4:4444/xtrabackup_sst//1' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql' --basedir '/usr/' --plugindir '/usr/lib64/mysql/plugin/' --defaults-file '/etc/my.cnf' --defaults-group-suffix '' --mysqld-version '8.0.28-19.1' '' --gtid '9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896' --bypass) +2023-03-12T11:35:16.339209Z 2 [Note] [MY-000000] [WSREP] DONOR thread signaled with 0 +2023-03-12T11:35:16.342707Z 0 [Note] [MY-000000] [Galera] async IST sender starting to serve ssl://172.17.0.4:4568 sending 170403897-170403898, preload starts from 170403898 +2023-03-12T11:35:16.343077Z 0 [Note] [MY-000000] [Galera] IST sender 170403897 -> 170403898 +2023-03-12T11:35:17.118100Z 0 [Note] [MY-000000] [WSREP-SST] Bypassing SST. Can work it through IST +2023-03-12T11:35:17.391256Z 0 [Note] [MY-000000] [Galera] (43029033-8c27, 'ssl://0.0.0.0:4567') turning message relay requesting off +2023-03-12T11:35:18.140121Z 0 [Note] [MY-000000] [Galera] SST sent: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T11:35:18.140164Z 0 [Note] [MY-000000] [WSREP] Server status change donor -> joined +2023-03-12T11:35:18.140179Z 0 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:35:18.140723Z 0 [Note] [MY-000000] [Galera] 0.0 (node2): State transfer to 1.0 (node3) complete. +2023-03-12T11:35:18.140768Z 0 [Note] [MY-000000] [Galera] Shifting DONOR/DESYNCED -> JOINED (TO: 170403898) +2023-03-12T11:35:18.140813Z 0 [Note] [MY-000000] [Galera] Processing event queue:... -nan% (0/0 events) complete. +2023-03-12T11:35:18.140992Z 0 [Note] [MY-000000] [Galera] Member 0.0 (node2) synced with group. +2023-03-12T11:35:18.141010Z 0 [Note] [MY-000000] [Galera] Processing event queue:...100.0% (1/1 events) complete. +2023-03-12T11:35:18.141016Z 0 [Note] [MY-000000] [Galera] Shifting JOINED -> SYNCED (TO: 170403898) +2023-03-12T11:35:18.141047Z 12 [Note] [MY-000000] [Galera] Server node2 synced with group +2023-03-12T11:35:18.141082Z 12 [Note] [MY-000000] [WSREP] Server status change joined -> synced +2023-03-12T11:35:18.141104Z 12 [Note] [MY-000000] [WSREP] Synchronized with group, ready for connections +2023-03-12T11:35:18.141130Z 12 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:35:20.029454Z 0 [Note] [MY-000000] [Galera] async IST sender served +2023-03-12T11:35:21.030094Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:46696 +2023-03-12T11:35:21.030164Z 0 [Note] [MY-000000] [Galera] forgetting c0fe0ba2-8aac (ssl://172.17.0.4:4567) +2023-03-12T11:35:21.030191Z 0 [Note] [MY-000000] [Galera] Node 43029033-8c27 state primary +2023-03-12T11:35:21.030218Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,43029033-8c27,3) +memb { + 43029033-8c27,0 + } +joined { + } +left { + } +partitioned { + c0fe0ba2-8aac,0 + } +) +2023-03-12T11:35:21.030226Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T11:35:21.035732Z 0 [Note] [MY-000000] [Galera] forgetting c0fe0ba2-8aac (ssl://172.17.0.4:4567) +2023-03-12T11:35:21.035794Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T11:35:21.035897Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d780172a0 +2023-03-12T11:35:21.035909Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:35:21.035912Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: c5125a46-dc4a-11ed-a8e3-3a902d760631 +2023-03-12T11:35:21.035971Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: c5125a46-dc4a-11ed-a8e3-3a902d760631 +2023-03-12T11:35:21.035991Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: c5125a46-dc4a-11ed-a8e3-3a902d760631 from 0 (node2) +2023-03-12T11:35:21.036005Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 2, + members = 1/1 (primary/total), + act_id = 170403898, + last_appl. = 170403896, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T11:35:21.036048Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [100, 100] +2023-03-12T11:35:21.036226Z 13 [Note] [MY-000000] [Galera] ####### processing CC 170403899, local, ordered +2023-03-12T11:35:21.036254Z 13 [Note] [MY-000000] [Galera] Maybe drain monitors from 170403898 upto current CC event 170403899 upto:170403898 +2023-03-12T11:35:21.036262Z 13 [Note] [MY-000000] [Galera] Drain monitors from 170403898 up to 170403898 +2023-03-12T11:35:21.036270Z 13 [Note] [MY-000000] [Galera] ####### My UUID: 43029033-dc49-11ed-8c27-9a30b07be54c +2023-03-12T11:35:21.036280Z 13 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T11:35:21.036286Z 13 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T11:35:21.036292Z 13 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170403898 -> 170403899 +2023-03-12T11:35:21.036345Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T11:35:21.041814Z 13 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403899 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 0 + members(1): + 0: 43029033-dc49-11ed-8c27-9a30b07be54c, node2 +================================================= +2023-03-12T11:35:21.041866Z 13 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:35:21.047560Z 13 [Note] [MY-000000] [Galera] Recording CC from group: 170403899 +2023-03-12T11:35:21.047592Z 13 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 170403899 +2023-03-12T11:35:21.047599Z 13 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403896 +2023-03-12T11:35:26.397620Z 0 [Note] [MY-000000] [Galera] cleaning up c0fe0ba2-8aac (ssl://172.17.0.4:4567) +2023-03-12T11:39:20.183699Z 0 [Note] [MY-000000] [Galera] (43029033-8c27, 'ssl://0.0.0.0:4567') connection established to 539cc651-bd27 ssl://172.17.0.4:4567 +2023-03-12T11:39:20.183949Z 0 [Note] [MY-000000] [Galera] (43029033-8c27, 'ssl://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T11:39:20.681083Z 0 [Note] [MY-000000] [Galera] declaring 539cc651-bd27 at ssl://172.17.0.4:4567 stable +2023-03-12T11:39:20.681358Z 0 [Note] [MY-000000] [Galera] Node 43029033-8c27 state primary +2023-03-12T11:39:20.681507Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,43029033-8c27,4) +memb { + 43029033-8c27,0 + 539cc651-bd27,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T11:39:20.681522Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T11:39:20.683800Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 2 +2023-03-12T11:39:20.683951Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: 53e9bc9c-dc4b-11ed-9766-7a2837cc4a7d +2023-03-12T11:39:20.685793Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 53e9bc9c-dc4b-11ed-9766-7a2837cc4a7d +2023-03-12T11:39:20.685904Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 53e9bc9c-dc4b-11ed-9766-7a2837cc4a7d from 0 (node2) +2023-03-12T11:39:21.181488Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 53e9bc9c-dc4b-11ed-9766-7a2837cc4a7d from 1 (node3) +2023-03-12T11:39:21.181548Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 3, + members = 1/2 (primary/total), + act_id = 170403899, + last_appl. = 170403896, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T11:39:21.181610Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [141, 141] +2023-03-12T11:39:21.181742Z 13 [Note] [MY-000000] [Galera] ####### processing CC 170403900, local, ordered +2023-03-12T11:39:21.181773Z 13 [Note] [MY-000000] [Galera] Maybe drain monitors from 170403899 upto current CC event 170403900 upto:170403899 +2023-03-12T11:39:21.181781Z 13 [Note] [MY-000000] [Galera] Drain monitors from 170403899 up to 170403899 +2023-03-12T11:39:21.181789Z 13 [Note] [MY-000000] [Galera] ####### My UUID: 43029033-dc49-11ed-8c27-9a30b07be54c +2023-03-12T11:39:21.181796Z 13 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T11:39:21.181802Z 13 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T11:39:21.181809Z 13 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170403899 -> 170403900 +2023-03-12T11:39:21.181848Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T11:39:21.187787Z 13 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403900 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 0 + members(2): + 0: 43029033-dc49-11ed-8c27-9a30b07be54c, node2 + 1: 539cc651-dc4b-11ed-bd27-fad75366cd05, node3 +================================================= +2023-03-12T11:39:21.187817Z 13 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:39:21.191773Z 13 [Note] [MY-000000] [Galera] Recording CC from group: 170403900 +2023-03-12T11:39:21.191796Z 13 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 170403900 +2023-03-12T11:39:21.191804Z 13 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403896 +2023-03-12T11:39:21.948501Z 0 [Note] [MY-000000] [Galera] Member 1.0 (node3) requested state transfer from 'node'. Selected 0.0 (node2)(SYNCED) as donor. +2023-03-12T11:39:21.948554Z 0 [Note] [MY-000000] [Galera] Shifting SYNCED -> DONOR/DESYNCED (TO: 170403900) +2023-03-12T11:39:21.948606Z 13 [Note] [MY-000000] [Galera] Detected STR version: 1, req_len: 138, req: STRv1 +2023-03-12T11:39:21.948660Z 13 [Note] [MY-000000] [Galera] Cert index preload: 170403900 -> 170403900 +2023-03-12T11:39:21.952161Z 13 [Note] [MY-000000] [WSREP] Server status change synced -> donor +2023-03-12T11:39:21.952189Z 13 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:39:21.952242Z 0 [Note] [MY-000000] [Galera] async IST sender starting to serve ssl://172.17.0.4:4568 sending 170403900-170403900, preload starts from 170403900 +2023-03-12T11:39:21.952316Z 0 [Note] [MY-000000] [WSREP] Initiating SST/IST transfer on DONOR side (wsrep_sst_xtrabackup-v2 --role 'donor' --address '172.17.0.4:4444/xtrabackup_sst//1' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql' --basedir '/usr/' --plugindir '/usr/lib64/mysql/plugin/' --defaults-file '/etc/my.cnf' --defaults-group-suffix '' --mysqld-version '8.0.28-19.1' '' --gtid '9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403900' ) +2023-03-12T11:39:21.952593Z 0 [Note] [MY-000000] [Galera] IST sender 170403900 -> 170403900 +2023-03-12T11:39:21.961858Z 13 [Note] [MY-000000] [WSREP] DONOR thread signaled with 0 +2023-03-12T11:39:23.420103Z 0 [Note] [MY-000000] [Galera] (43029033-8c27, 'ssl://0.0.0.0:4567') turning message relay requesting off +2023-03-12T11:39:33.420743Z 0 [Note] [MY-000000] [WSREP-SST] Streaming the backup to joiner at 172.17.0.4 4444 +2023-03-12T11:39:33.494864Z 24 [Warning] [MY-013712] [Server] No suitable 'keyring_component_metadata_query' service implementation found to fulfill the request. +2023-03-12T11:39:37.703399Z 0 [Note] [MY-000000] [WSREP-SST] 2023/04/16 13:39:37 socat[1749839] E SSL_write(): Connection reset by peer +2023-03-12T11:39:38.705381Z 24 [Note] [MY-010914] [Server] Aborted connection 24 to db: 'unconnected' user: 'mysql.pxc.sst.user' host: 'localhost' (Got an error reading communication packets). +2023-03-12T11:39:38.705511Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.4:60774 +2023-03-12T11:39:38.705565Z 0 [Note] [MY-000000] [Galera] forgetting 539cc651-bd27 (ssl://172.17.0.4:4567) +2023-03-12T11:39:38.705592Z 0 [Note] [MY-000000] [Galera] Node 43029033-8c27 state primary +2023-03-12T11:39:38.705609Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,43029033-8c27,5) +memb { + 43029033-8c27,0 + } +joined { + } +left { + } +partitioned { + 539cc651-bd27,0 + } +) +2023-03-12T11:39:38.705618Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T11:39:38.705907Z 0 [ERROR] [MY-000000] [WSREP-SST] ******************* FATAL ERROR ********************** +2023-03-12T11:39:38.705955Z 0 [ERROR] [MY-000000] [WSREP-SST] xtrabackup finished with error: 1. Check /var/lib/mysql/innobackup.backup.log +2023-03-12T11:39:38.705977Z 0 [ERROR] [MY-000000] [WSREP-SST] Line 1964 +2023-03-12T11:39:38.707686Z 0 [Note] [MY-000000] [Galera] forgetting 539cc651-bd27 (ssl://172.17.0.4:4567) +2023-03-12T11:39:38.707695Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T11:39:38.707784Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: 5ea7f675-dc4b-11ed-963a-8346ef89c280 +2023-03-12T11:39:38.707814Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 5ea7f675-dc4b-11ed-963a-8346ef89c280 +2023-03-12T11:39:38.707834Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 5ea7f675-dc4b-11ed-963a-8346ef89c280 from 0 (node2) +2023-03-12T11:39:38.707847Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 4, + members = 1/1 (primary/total), + act_id = 170403900, + last_appl. = 170403896, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T11:39:38.707886Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f5d780176e0 +2023-03-12T11:39:38.707899Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T11:39:38.707908Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [100, 100] +2023-03-12T11:39:38.708062Z 10 [Note] [MY-000000] [Galera] ####### processing CC 170403901, local, ordered +2023-03-12T11:39:38.708106Z 10 [Note] [MY-000000] [Galera] Maybe drain monitors from 170403900 upto current CC event 170403901 upto:170403900 +2023-03-12T11:39:38.708124Z 10 [Note] [MY-000000] [Galera] Drain monitors from 170403900 up to 170403900 +2023-03-12T11:39:38.708135Z 10 [Note] [MY-000000] [Galera] ####### My UUID: 43029033-dc49-11ed-8c27-9a30b07be54c +2023-03-12T11:39:38.708143Z 10 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T11:39:38.708149Z 10 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T11:39:38.708156Z 10 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170403900 -> 170403901 +2023-03-12T11:39:38.708179Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T11:39:38.708491Z 0 [ERROR] [MY-000000] [WSREP-SST] ------------ innobackup.backup.log (START) ------------ + 2023-03-12T13:39:33.433604+02:00 0 [Note] [MY-011825] [Xtrabackup] recognized server arguments: --datadir=/var/lib/mysql --tmpdir=/tmp --server-id=10 --log_bin=/binlog/mysql-bin.log --innodb_buffer_pool_size=118G --innodb_log_file_size=512M --innodb_log_buffer_size=400M --innodb_flush_log_at_trx_commit=2 --innodb_read_io_threads=32 --innodb_write_io_threads=32 --innodb_file_per_table=1 --innodb_io_capacity=1000 --innodb_data_home_dir=/var/lib/mysql --innodb_data_file_path=ibdata1:100M:autoextend --innodb_log_group_home_dir=/var/lib/mysql --open_files_limit=200000 --defaults_group=mysqld + 2023-03-12T13:39:33.433758+02:00 0 [Note] [MY-011825] [Xtrabackup] recognized client arguments: --no-version-check=1 --parallel=4 --user=mysql.pxc.sst.user --password=* --socket=/var/lib/mysql/mysql.sock --lock-ddl=1 --backup=1 --galera-info=1 --stream=xbstream --xtrabackup-plugin-dir=/usr/bin/pxc_extra/pxb-8.0/lib/plugin --target-dir=/tmp/pxc_sst_lD4z/donor_xb_ZtlK + /usr/bin/pxc_extra/pxb-8.0/bin/xtrabackup version 8.0.28-21 based on MySQL server 8.0.28 Linux (x86_64) (revision id: 78878e9b608) + 2023-03-12T13:39:33.433776+02:00 0 [Note] [MY-011825] [Xtrabackup] Connecting to MySQL server host: localhost, user: mysql.pxc.sst.user, password: set, port: not set, socket: /var/lib/mysql/mysql.sock + 2023-03-12T13:39:33.442562+02:00 0 [Note] [MY-011825] [Xtrabackup] Using server version 8.0.28-19.1 + 2023-03-12T13:39:33.488690+02:00 0 [Note] [MY-011825] [Xtrabackup] Executing LOCK TABLES FOR BACKUP ... + 2023-03-12T13:39:33.491938+02:00 0 [Note] [MY-011825] [Xtrabackup] uses posix_fadvise(). + 2023-03-12T13:39:33.491990+02:00 0 [Note] [MY-011825] [Xtrabackup] cd to /var/lib/mysql + 2023-03-12T13:39:33.492007+02:00 0 [Note] [MY-011825] [Xtrabackup] open files limit requested 200000, set to 16364 + 2023-03-12T13:39:33.492039+02:00 0 [Note] [MY-011825] [Xtrabackup] using the following InnoDB configuration: + 2023-03-12T13:39:33.492048+02:00 0 [Note] [MY-011825] [Xtrabackup] innodb_data_home_dir = /var/lib/mysql + 2023-03-12T13:39:33.492054+02:00 0 [Note] [MY-011825] [Xtrabackup] innodb_data_file_path = ibdata1:100M:autoextend + 2023-03-12T13:39:33.492082+02:00 0 [Note] [MY-011825] [Xtrabackup] innodb_log_group_home_dir = /var/lib/mysql + 2023-03-12T13:39:33.492089+02:00 0 [Note] [MY-011825] [Xtrabackup] innodb_log_files_in_group = 2 + 2023-03-12T13:39:33.492096+02:00 0 [Note] [MY-011825] [Xtrabackup] innodb_log_file_size = 536870912 + 2023-03-12T13:39:33.492580+02:00 0 [Note] [MY-013251] [InnoDB] Number of pools: 1 + 2023-03-12T13:39:33.495562+02:00 0 [Note] [MY-011825] [Xtrabackup] inititialize_service_handles suceeded + 2023-03-12T13:39:33.957720+02:00 0 [Note] [MY-011825] [Xtrabackup] Connecting to MySQL server host: localhost, user: mysql.pxc.sst.user, password: set, port: not set, socket: /var/lib/mysql/mysql.sock + 2023-03-12T13:39:33.961758+02:00 0 [Note] [MY-011825] [Xtrabackup] Redo Log Archiving is not set up. + 2023-03-12T13:39:34.058286+02:00 1 [Note] [MY-011825] [Xtrabackup] >> log scanned up to (35636234709052) + 2023-03-12T13:39:35.058479+02:00 1 [Note] [MY-011825] [Xtrabackup] >> log scanned up to (35636234709052) + 2023-03-12T13:39:36.058661+02:00 1 [Note] [MY-011825] [Xtrabackup] >> log scanned up to (35636234709052) + 2023-03-12T13:39:37.058875+02:00 1 [Note] [MY-011825] [Xtrabackup] >> log scanned up to (35636234709052) + 2023-03-12T13:39:37.423538+02:00 0 [Note] [MY-011825] [Xtrabackup] Generating a list of tablespaces + 2023-03-12T13:39:37.423606+02:00 0 [Note] [MY-011825] [Xtrabackup] Generating a list of tablespaces + 2023-03-12T13:39:37.423616+02:00 0 [Note] [MY-012204] [InnoDB] Scanning './' + 2023-03-12T13:39:37.436308+02:00 0 [Note] [MY-012208] [InnoDB] Completed space ID check of 2 files. + 2023-03-12T13:39:37.696326+02:00 0 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_001'. + 2023-03-12T13:39:37.696981+02:00 0 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_002'. + 2023-03-12T13:39:37.698367+02:00 0 [Note] [MY-012910] [InnoDB] Opened 2 existing undo tablespaces. + 2023-03-12T13:39:37.698401+02:00 0 [Note] [MY-011825] [Xtrabackup] Starting 4 threads for parallel data files transfer + xtrabackup: Error writing file '' (OS errno 32 - Broken pipe) + 2023-03-12T13:39:38.059128+02:00 1 [Note] [MY-011825] [Xtrabackup] >> log scanned up to (35636234709052) + +2023-03-12T11:39:38.708530Z 0 [ERROR] [MY-000000] [WSREP-SST] ------------ innobackup.backup.log (END) ------------ +2023-03-12T11:39:38.708537Z 0 [ERROR] [MY-000000] [WSREP-SST] ****************************************************** +2023-03-12T11:39:38.708608Z 0 [ERROR] [MY-000000] [WSREP-SST] Cleanup after exit with status:22 +2023-03-12T11:39:38.711012Z 10 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403901 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 0 + members(1): + 0: 43029033-dc49-11ed-8c27-9a30b07be54c, node2 +================================================= +2023-03-12T11:39:38.711070Z 10 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:39:38.714446Z 10 [Note] [MY-000000] [Galera] Recording CC from group: 170403901 +2023-03-12T11:39:38.714473Z 10 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 170403901 +2023-03-12T11:39:38.714480Z 10 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403896 +2023-03-12T11:39:38.734654Z 0 [ERROR] [MY-000000] [WSREP] Process completed with error: wsrep_sst_xtrabackup-v2 --role 'donor' --address '172.17.0.4:4444/xtrabackup_sst//1' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql' --basedir '/usr/' --plugindir '/usr/lib64/mysql/plugin/' --defaults-file '/etc/my.cnf' --defaults-group-suffix '' --mysqld-version '8.0.28-19.1' '' --gtid '9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403900' : 22 (Invalid argument) +2023-03-12T11:39:38.738717Z 0 [Note] [MY-000000] [Galera] SST sending failed: -22 +2023-03-12T11:39:38.738743Z 0 [Note] [MY-000000] [WSREP] Server status change donor -> joined +2023-03-12T11:39:38.738764Z 0 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:39:38.738801Z 0 [ERROR] [MY-000000] [WSREP] Command did not run: wsrep_sst_xtrabackup-v2 --role 'donor' --address '172.17.0.4:4444/xtrabackup_sst//1' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql' --basedir '/usr/' --plugindir '/usr/lib64/mysql/plugin/' --defaults-file '/etc/my.cnf' --defaults-group-suffix '' --mysqld-version '8.0.28-19.1' '' --gtid '9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403900' +2023-03-12T11:39:38.738815Z 0 [Warning] [MY-000000] [Galera] Could not find peer: 539cc651-dc4b-11ed-bd27-fad75366cd05 +2023-03-12T11:39:38.738833Z 0 [Warning] [MY-000000] [Galera] 0.0 (node2): State transfer to -1.-1 (left the group) failed: -22 (Invalid argument) +2023-03-12T11:39:38.738842Z 0 [Note] [MY-000000] [Galera] Shifting DONOR/DESYNCED -> JOINED (TO: 170403901) +2023-03-12T11:39:38.738884Z 0 [Note] [MY-000000] [Galera] Processing event queue:... -nan% (0/0 events) complete. +2023-03-12T11:39:38.738909Z 0 [Note] [MY-000000] [Galera] Member 0.0 (node2) synced with group. +2023-03-12T11:39:38.738930Z 0 [Note] [MY-000000] [Galera] Processing event queue:...100.0% (1/1 events) complete. +2023-03-12T11:39:38.738942Z 0 [Note] [MY-000000] [Galera] Shifting JOINED -> SYNCED (TO: 170403901) +2023-03-12T11:39:38.738988Z 12 [Note] [MY-000000] [Galera] Server node2 synced with group +2023-03-12T11:39:38.739012Z 12 [Note] [MY-000000] [WSREP] Server status change joined -> synced +2023-03-12T11:39:38.739019Z 12 [Note] [MY-000000] [WSREP] Synchronized with group, ready for connections +2023-03-12T11:39:38.739025Z 12 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T11:39:39.802407Z 0 [Note] [MY-000000] [Galera] async IST sender served +2023-03-12T11:39:43.924325Z 0 [Note] [MY-000000] [Galera] cleaning up 539cc651-bd27 (ssl://172.17.0.4:4567) +2023-03-12T12:22:48.704834Z 0 [System] [MY-013172] [Server] Received SHUTDOWN from user . Shutting down mysqld (Version: 8.0.28-19.1). +2023-03-12T12:22:48.704897Z 0 [Note] [MY-000000] [WSREP] Received shutdown signal. Will sleep for 10 secs before initiating shutdown. pxc_maint_mode switched to SHUTDOWN +2023-03-12T12:22:58.705695Z 0 [Note] [MY-000000] [WSREP] Shutdown replication +2023-03-12T12:22:58.705753Z 0 [Note] [MY-000000] [WSREP] Server status change synced -> disconnecting +2023-03-12T12:22:58.705786Z 0 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:22:58.705823Z 0 [Note] [MY-000000] [Galera] Closing send monitor... +2023-03-12T12:22:58.705833Z 0 [Note] [MY-000000] [Galera] Closed send monitor. +2023-03-12T12:22:58.705844Z 0 [Note] [MY-000000] [Galera] gcomm: terminating thread +2023-03-12T12:22:58.705861Z 0 [Note] [MY-000000] [Galera] gcomm: joining thread +2023-03-12T12:22:58.705994Z 0 [Note] [MY-000000] [Galera] gcomm: closing backend +2023-03-12T12:22:58.706046Z 0 [Note] [MY-000000] [Galera] PC protocol downgrade 1 -> 0 +2023-03-12T12:22:58.706061Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view ((empty)) +2023-03-12T12:22:58.706205Z 0 [Note] [MY-000000] [Galera] gcomm: closed +2023-03-12T12:22:58.706239Z 0 [Note] [MY-000000] [Galera] New SELF-LEAVE. +2023-03-12T12:22:58.706315Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [0, 0] +2023-03-12T12:22:58.706330Z 0 [Note] [MY-000000] [Galera] Received SELF-LEAVE. Closing connection. +2023-03-12T12:22:58.706338Z 0 [Note] [MY-000000] [Galera] Shifting SYNCED -> CLOSED (TO: 170403901) +2023-03-12T12:22:58.706358Z 0 [Note] [MY-000000] [Galera] RECV thread exiting 0: Success +2023-03-12T12:22:58.706464Z 0 [Note] [MY-000000] [Galera] recv_thread() joined. +2023-03-12T12:22:58.706493Z 0 [Note] [MY-000000] [Galera] Closing replication queue. +2023-03-12T12:22:58.706502Z 0 [Note] [MY-000000] [Galera] Closing slave action queue. +2023-03-12T12:22:58.706498Z 13 [Note] [MY-000000] [Galera] Maybe drain monitors from 170403901 upto current CC event 170403901 upto:170403901 +2023-03-12T12:22:58.706541Z 13 [Note] [MY-000000] [Galera] Drain monitors from 170403901 up to 170403901 +2023-03-12T12:22:58.706561Z 13 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403901 + status: non-primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: yes + own_index: -1 + members(0): +================================================= +2023-03-12T12:22:58.706584Z 13 [Note] [MY-000000] [Galera] Non-primary view +2023-03-12T12:22:58.706592Z 13 [Note] [MY-000000] [WSREP] Server status change disconnecting -> disconnected +2023-03-12T12:22:58.706600Z 13 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:22:58.706612Z 13 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:22:58.708165Z 13 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 0 thd: 13 +2023-03-12T12:22:58.708171Z 0 [Note] [MY-000000] [WSREP] Waiting for active wsrep applier to exit +2023-03-12T12:22:58.708211Z 0 [Note] [MY-000000] [WSREP] Waiting for (8) applier thread(s) to terminate +2023-03-12T12:22:58.716526Z 12 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 12 +2023-03-12T12:22:58.716528Z 10 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 10 +2023-03-12T12:22:58.716602Z 11 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 11 +2023-03-12T12:22:58.716534Z 15 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 15 +2023-03-12T12:22:58.716539Z 14 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 14 +2023-03-12T12:22:58.716553Z 2 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 2 +2023-03-12T12:22:58.716527Z 16 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 16 +2023-03-12T12:22:59.708328Z 0 [Note] [MY-000000] [WSREP] All applier thread terminated. Will now terminate rollback thread +2023-03-12T12:22:59.708433Z 0 [Note] [MY-000000] [WSREP] Waiting for rollback thread to terminate +2023-03-12T12:22:59.708474Z 1 [Note] [MY-000000] [WSREP] rollbacker thread exiting 1 +2023-03-12T12:23:00.708549Z 0 [Note] [MY-000000] [WSREP] Rollback thread terminated +2023-03-12T12:23:00.708905Z 0 [Note] [MY-010067] [Server] Giving 1 client threads a chance to die gracefully +2023-03-12T12:23:00.708958Z 0 [Note] [MY-010117] [Server] Shutting down slave threads +2023-03-12T12:23:00.709696Z 0 [Note] [MY-010054] [Server] Event Scheduler: Killing the scheduler thread, thread id 7 +2023-03-12T12:23:00.709722Z 0 [Note] [MY-010050] [Server] Event Scheduler: Waiting for the scheduler thread to reply +2023-03-12T12:23:00.709796Z 0 [Note] [MY-010048] [Server] Event Scheduler: Stopped +2023-03-12T12:23:00.709809Z 0 [Note] [MY-010118] [Server] Forcefully disconnecting 0 remaining clients +2023-03-12T12:23:00.709816Z 0 [Note] [MY-010043] [Server] Event Scheduler: Purging the queue. 0 events +2023-03-12T12:23:00.713291Z 0 [Note] [MY-000000] [Galera] dtor state: CLOSED +2023-03-12T12:23:00.713327Z 0 [Note] [MY-000000] [Galera] MemPool(TrxHandleSlave): hit ratio: 0, misses: 0, in use: 0, in pool: 0 +2023-03-12T12:23:00.715081Z 0 [Note] [MY-000000] [Galera] apply mon: entered 0 +2023-03-12T12:23:00.716996Z 0 [Note] [MY-000000] [Galera] apply mon: entered 0 +2023-03-12T12:23:00.718757Z 0 [Note] [MY-000000] [Galera] mon: entered 13 oooe fraction 0 oool fraction 0 +2023-03-12T12:23:00.718788Z 0 [Note] [MY-000000] [Galera] cert index usage at exit 0 +2023-03-12T12:23:00.718798Z 0 [Note] [MY-000000] [Galera] cert trx map usage at exit 0 +2023-03-12T12:23:00.718806Z 0 [Note] [MY-000000] [Galera] deps set usage at exit 0 +2023-03-12T12:23:00.718813Z 0 [Note] [MY-000000] [Galera] avg deps dist 0 +2023-03-12T12:23:00.718820Z 0 [Note] [MY-000000] [Galera] avg cert interval 0 +2023-03-12T12:23:00.718828Z 0 [Note] [MY-000000] [Galera] cert index size 0 +2023-03-12T12:23:00.718868Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:23:00.718928Z 0 [Note] [MY-000000] [Galera] wsdb trx map usage 0 conn query map usage 0 +2023-03-12T12:23:00.718946Z 0 [Note] [MY-000000] [Galera] MemPool(LocalTrxHandle): hit ratio: 0, misses: 0, in use: 0, in pool: 0 +2023-03-12T12:23:00.720628Z 0 [Note] [MY-000000] [Galera] Flushing memory map to disk... +2023-03-12T12:23:00.722213Z 0 [Note] [MY-012330] [InnoDB] FTS optimize thread exiting. +2023-03-12T12:23:00.793052Z 0 [Note] [MY-010120] [Server] Binlog end +2023-03-12T12:23:00.797884Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysqlx' +2023-03-12T12:23:00.798623Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysqlx_cache_cleaner' +2023-03-12T12:23:00.798649Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'ngram' +2023-03-12T12:23:00.798656Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'BLACKHOLE' +2023-03-12T12:23:00.798665Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'ARCHIVE' +2023-03-12T12:23:00.798671Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'TempTable' +2023-03-12T12:23:00.798678Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MRG_MYISAM' +2023-03-12T12:23:00.798684Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MyISAM' +2023-03-12T12:23:00.798699Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CHANGED_PAGES' +2023-03-12T12:23:00.798708Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESPACES_SCRUBBING' +2023-03-12T12:23:00.798713Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESPACES_ENCRYPTION' +2023-03-12T12:23:00.798719Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_SESSION_TEMP_TABLESPACES' +2023-03-12T12:23:00.798724Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CACHED_INDEXES' +2023-03-12T12:23:00.798730Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_VIRTUAL' +2023-03-12T12:23:00.798735Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_COLUMNS' +2023-03-12T12:23:00.798740Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESPACES' +2023-03-12T12:23:00.798746Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_INDEXES' +2023-03-12T12:23:00.798751Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESTATS' +2023-03-12T12:23:00.798756Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLES' +2023-03-12T12:23:00.798761Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_INDEX_TABLE' +2023-03-12T12:23:00.798765Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_INDEX_CACHE' +2023-03-12T12:23:00.798770Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_CONFIG' +2023-03-12T12:23:00.798774Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_BEING_DELETED' +2023-03-12T12:23:00.798780Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_DELETED' +2023-03-12T12:23:00.798785Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD' +2023-03-12T12:23:00.798791Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_METRICS' +2023-03-12T12:23:00.798795Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TEMP_TABLE_INFO' +2023-03-12T12:23:00.798800Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_POOL_STATS' +2023-03-12T12:23:00.798804Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU' +2023-03-12T12:23:00.798809Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_PAGE' +2023-03-12T12:23:00.798815Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET' +2023-03-12T12:23:00.798819Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_PER_INDEX' +2023-03-12T12:23:00.798824Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMPMEM_RESET' +2023-03-12T12:23:00.798829Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMPMEM' +2023-03-12T12:23:00.798833Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_RESET' +2023-03-12T12:23:00.798838Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP' +2023-03-12T12:23:00.798842Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TRX' +2023-03-12T12:23:00.798847Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'InnoDB' +2023-03-12T12:23:00.798879Z 0 [Note] [MY-013072] [InnoDB] Starting shutdown... +2023-03-12T12:23:00.799050Z 0 [Note] [MY-011944] [InnoDB] Dumping buffer pool(s) to /var/lib/mysqlib_buffer_pool +2023-03-12T12:23:00.800667Z 0 [Note] [MY-011944] [InnoDB] Buffer pool(s) dump completed at 230416 14:23:00 +2023-03-12T12:23:00.807567Z 0 [Note] [MY-013084] [InnoDB] Log background threads are being closed... +2023-03-12T12:23:04.674675Z 0 [Note] [MY-012980] [InnoDB] Shutdown completed; log sequence number 35636234719423 +2023-03-12T12:23:04.675571Z 0 [Note] [MY-012255] [InnoDB] Removed temporary tablespace data file: "ibtmp1" +2023-03-12T12:23:04.675612Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MEMORY' +2023-03-12T12:23:04.675628Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'CSV' +2023-03-12T12:23:04.675639Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'PERFORMANCE_SCHEMA' +2023-03-12T12:23:04.675674Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'wsrep' +2023-03-12T12:23:04.675683Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'daemon_keyring_proxy_plugin' +2023-03-12T12:23:04.675704Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'sha2_cache_cleaner' +2023-03-12T12:23:04.675714Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'caching_sha2_password' +2023-03-12T12:23:04.675722Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'sha256_password' +2023-03-12T12:23:04.675727Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysql_native_password' +2023-03-12T12:23:04.675957Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'binlog' +2023-03-12T12:23:04.677082Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.28-19.1) Percona XtraDB Cluster (GPL), Release rel19, Revision f544540, WSREP version 26.4.3. + INFO: Skipping wsrep-recover for 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403901 pair + INFO: Assigning 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403901 to wsrep_start_position +2023-03-12T12:24:36.268171Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead. +2023-03-12T12:24:36.268188Z 0 [Warning] [MY-011069] [Server] The syntax '--master-info-repository' is deprecated and will be removed in a future release. +2023-03-12T12:24:36.268194Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T12:24:36.268224Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T12:24:36.268234Z 0 [Warning] [MY-011068] [Server] The syntax 'log_slave_updates' is deprecated and will be removed in a future release. Please use log_replica_updates instead. +2023-03-12T12:24:36.268241Z 0 [Warning] [MY-011068] [Server] The syntax 'skip_slave_start' is deprecated and will be removed in a future release. Please use skip_replica_start instead. +2023-03-12T12:24:36.268256Z 0 [Warning] [MY-011068] [Server] The syntax 'wsrep_slave_threads' is deprecated and will be removed in a future release. Please use wsrep_applier_threads instead. +2023-03-12T12:24:36.270258Z 0 [Note] [MY-010949] [Server] Basedir set to /usr/. +2023-03-12T12:24:36.270274Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.28-19.1) starting as process 1751170 +2023-03-12T12:24:36.271098Z 0 [Warning] [MY-013242] [Server] --character-set-server: 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous. +2023-03-12T12:24:36.271104Z 0 [Warning] [MY-013244] [Server] --collation-server: 'utf8_general_ci' is a collation of the deprecated character set UTF8MB3. Please consider using UTF8MB4 with an appropriate collation instead. +2023-03-12T12:24:36.272366Z 0 [Note] [MY-010182] [Server] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +2023-03-12T12:24:36.272476Z 0 [Note] [MY-010304] [Server] Skipping generation of SSL certificates as certificate files are present in data directory. +2023-03-12T12:24:36.274209Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. +2023-03-12T12:24:36.274247Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. +2023-03-12T12:24:36.274262Z 0 [Note] [MY-010303] [Server] Skipping generation of SSL certificates as options related to SSL are specified. +2023-03-12T12:24:36.274297Z 0 [Note] [MY-000000] [Galera] Loading provider /usr/lib64/libgalera_smm.so initial position: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403901 +2023-03-12T12:24:36.274315Z 0 [Note] [MY-000000] [Galera] wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so' +2023-03-12T12:24:36.274894Z 0 [Note] [MY-000000] [Galera] wsrep_load(): Galera 4.11(a9008fc) by Codership Oy (modified by Percona ) loaded successfully. +2023-03-12T12:24:36.274938Z 0 [Note] [MY-000000] [Galera] CRC-32C: using 64-bit x86 acceleration. +2023-03-12T12:24:36.275472Z 0 [Note] [MY-000000] [Galera] Found saved state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403901, safe_to_bootstrap: 1 +2023-03-12T12:24:36.275556Z 0 [Note] [MY-000000] [Galera] GCache DEBUG: opened preamble: +Version: 2 +UUID: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +Seqno: 170403896 - 170403901 +Offset: 1280 +Synced: 1 +2023-03-12T12:24:36.275571Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: version: 2, UUID: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049, offset: 1280 +2023-03-12T12:24:36.275640Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer initial scan... 0.0% ( 0/53687091224 bytes) complete. +2023-03-12T12:24:36.275686Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer initial scan...100.0% (53687091224/53687091224 bytes) complete. +2023-03-12T12:24:36.275696Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: found gapless sequence 170403896-170403901 +2023-03-12T12:24:36.275719Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer unused buffers scan... 0.0% ( 0/1552 bytes) complete. +2023-03-12T12:24:36.275739Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer unused buffers scan...100.0% (1552/1552 bytes) complete. +2023-03-12T12:24:36.275751Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: found 2/8 locked buffers +2023-03-12T12:24:36.275762Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: free space: 53687090048/53687091200 +2023-03-12T12:24:36.276537Z 0 [Warning] [MY-000000] [Galera] Option 'gcs.fc_master_slave' is deprecated and will be removed in the future versions, please use 'gcs.fc_single_primary' instead. +2023-03-12T12:24:36.277182Z 0 [Note] [MY-000000] [Galera] Passing config to GCS: base_dir = /var/lib/mysql; base_host = 172.17.0.3; base_port = 4567; cert.log_conflicts = no; cert.optimistic_pa = no; debug = no; evs.auto_evict = 0; evs.delay_margin = PT1S; evs.delayed_keep_period = PT30S; evs.inactive_check_period = PT0.5S; evs.inactive_timeout = PT15S; evs.join_retrans_period = PT1S; evs.max_install_timeouts = 3; evs.send_window = 10; evs.stats_report_period = PT1M; evs.suspect_timeout = PT5S; evs.user_send_window = 4; evs.view_forget_timeout = PT24H; gcache.dir = /var/lib/mysql; gcache.freeze_purge_at_seqno = -1; gcache.keep_pages_count = 0; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = galera.cache; gcache.page_size = 128M; gcache.recover = yes; gcache.size = 50G; gcomm.thread_prio = ; gcs.fc_debug = 0; gcs.fc_factor = 1.0; gcs.fc_limit = 100; gcs.fc_master_slave = no; gcs.fc_single_primary = no; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = no; gmcast.segment = 0; gmcast.version = 0; pc.announce_timeout = PT3S; pc.checksum = false; pc.ignore_quorum = false; pc.ignore_sb = false; pc.npvo = false; pc.recovery = true; pc.version = 0; pc.wait_prim = true; pc.wait_prim_timeout = PT30S; pc.weight = 1; protonet.backend = asio; protonet.version = 0; repl.causal_read_timeout = PT30S; repl.commit_order = 3; repl.key_format = FLAT8; repl.max_ws_size = 2147483647; repl.proto_max = 10; socket.checksum = 2; socket.recv_buf_size = auto; socket.send_buf_size = auto; socket.ssl = YES; socket.ssl_ca = ca.pem; socket.ssl_cert = server-cert.pem; socket.ssl_cipher = ; socket.ssl_compression = YES; socket.ssl_key = server-key.pem; socket.ssl_reload = 1; +2023-03-12T12:24:36.285735Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:24:36.285799Z 0 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403901, protocol version: -1 +2023-03-12T12:24:36.285856Z 0 [Note] [MY-000000] [WSREP] Starting replication +2023-03-12T12:24:36.285872Z 0 [Note] [MY-000000] [Galera] Connecting with bootstrap option: 1 +2023-03-12T12:24:36.285888Z 0 [Note] [MY-000000] [Galera] Setting GCS initial position to 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403901 +2023-03-12T12:24:36.285936Z 0 [Note] [MY-000000] [Galera] protonet asio version 0 +2023-03-12T12:24:36.286265Z 0 [Note] [MY-000000] [Galera] Using CRC-32C for message checksums. +2023-03-12T12:24:36.286286Z 0 [Note] [MY-000000] [Galera] backend: asio +2023-03-12T12:24:36.286664Z 0 [Note] [MY-000000] [Galera] gcomm thread scheduling priority set to other:0 +2023-03-12T12:24:36.286747Z 0 [Warning] [MY-000000] [Galera] Fail to access the file (/var/lib/mysql/gvwstate.dat) error (No such file or directory). It is possible if node is booting for first time or re-booting after a graceful shutdown +2023-03-12T12:24:36.286760Z 0 [Note] [MY-000000] [Galera] Restoring primary-component from disk failed. Either node is booting for first time or re-booting after a graceful shutdown +2023-03-12T12:24:36.286875Z 0 [Note] [MY-000000] [Galera] GMCast version 0 +2023-03-12T12:24:36.286988Z 0 [Note] [MY-000000] [Galera] (a689dc26-80dc, 'ssl://0.0.0.0:4567') listening at ssl://0.0.0.0:4567 +2023-03-12T12:24:36.287005Z 0 [Note] [MY-000000] [Galera] (a689dc26-80dc, 'ssl://0.0.0.0:4567') multicast: , ttl: 1 +2023-03-12T12:24:36.287172Z 0 [Note] [MY-000000] [Galera] EVS version 1 +2023-03-12T12:24:36.287220Z 0 [Note] [MY-000000] [Galera] gcomm: bootstrapping new group 'pxc_cluster' +2023-03-12T12:24:36.287238Z 0 [Note] [MY-000000] [Galera] start_prim is enabled, turn off pc_recovery +2023-03-12T12:24:36.287598Z 0 [Note] [MY-000000] [Galera] EVS version upgrade 0 -> 1 +2023-03-12T12:24:36.287621Z 0 [Note] [MY-000000] [Galera] PC protocol upgrade 0 -> 1 +2023-03-12T12:24:36.287649Z 0 [Note] [MY-000000] [Galera] Node a689dc26-80dc state primary +2023-03-12T12:24:36.287673Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,a689dc26-80dc,1) +memb { + a689dc26-80dc,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T12:24:36.287686Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T12:24:36.290047Z 0 [Note] [MY-000000] [Galera] discarding pending addr without UUID: ssl://172.17.0.2:4567 +2023-03-12T12:24:36.290065Z 0 [Note] [MY-000000] [Galera] discarding pending addr proto entry 0x84d01a0 +2023-03-12T12:24:36.290094Z 0 [Note] [MY-000000] [Galera] discarding pending addr without UUID: ssl://172.17.0.3:4567 +2023-03-12T12:24:36.290112Z 0 [Note] [MY-000000] [Galera] discarding pending addr proto entry 0x84eab90 +2023-03-12T12:24:36.290144Z 0 [Note] [MY-000000] [Galera] discarding pending addr without UUID: ssl://172.17.0.4:4567 +2023-03-12T12:24:36.290156Z 0 [Note] [MY-000000] [Galera] discarding pending addr proto entry 0x84f32f0 +2023-03-12T12:24:36.290190Z 0 [Note] [MY-000000] [Galera] gcomm: connected +2023-03-12T12:24:36.290208Z 0 [Note] [MY-000000] [Galera] Changing maximum packet size to 64500, resulting msg size: 32636 +2023-03-12T12:24:36.290286Z 0 [Note] [MY-000000] [Galera] Shifting CLOSED -> OPEN (TO: 0) +2023-03-12T12:24:36.290297Z 0 [Note] [MY-000000] [Galera] Opened channel 'pxc_cluster' +2023-03-12T12:24:36.290365Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T12:24:36.290471Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: a68a6b04-dc51-11ed-9176-5f182fe17ab0 +2023-03-12T12:24:36.290491Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: a68a6b04-dc51-11ed-9176-5f182fe17ab0 +2023-03-12T12:24:36.290509Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: a68a6b04-dc51-11ed-9176-5f182fe17ab0 from 0 (node2) +2023-03-12T12:24:36.290525Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 0, + members = 1/1 (primary/total), + act_id = 170403901, + last_appl. = 170403901, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T12:24:36.290550Z 1 [Note] [MY-000000] [WSREP] Starting rollbacker thread 1 +2023-03-12T12:24:36.290584Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [100, 100] +2023-03-12T12:24:36.290593Z 2 [Note] [MY-000000] [WSREP] Starting applier thread 2 +2023-03-12T12:24:36.290625Z 0 [Note] [MY-000000] [Galera] Restored state OPEN -> JOINED (170403902) +2023-03-12T12:24:36.290656Z 0 [Note] [MY-000000] [Galera] Member 0.0 (node2) synced with group. +2023-03-12T12:24:36.290667Z 0 [Note] [MY-000000] [Galera] Shifting JOINED -> SYNCED (TO: 170403902) +2023-03-12T12:24:36.290681Z 2 [Note] [MY-000000] [Galera] ####### processing CC 170403902, local, ordered +2023-03-12T12:24:36.290699Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 170403901 upto current CC event 170403902 upto:170403901 +2023-03-12T12:24:36.290712Z 2 [Note] [MY-000000] [Galera] Drain monitors from 170403901 up to 170403901 +2023-03-12T12:24:36.290725Z 2 [Note] [MY-000000] [Galera] Process first view: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 my uuid: a689dc26-dc51-11ed-80dc-37422db6f664 +2023-03-12T12:24:36.290750Z 2 [Note] [MY-000000] [Galera] Server node2 connected to cluster at position 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403902 with ID a689dc26-dc51-11ed-80dc-37422db6f664 +2023-03-12T12:24:36.290760Z 2 [Note] [MY-000000] [WSREP] Server status change disconnected -> connected +2023-03-12T12:24:36.290787Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:24:36.290814Z 2 [Note] [MY-000000] [Galera] ####### My UUID: a689dc26-dc51-11ed-80dc-37422db6f664 +2023-03-12T12:24:36.290827Z 2 [Note] [MY-000000] [Galera] Cert index reset to 00000000-0000-0000-0000-000000000000:-1 (proto: 10), state transfer needed: no +2023-03-12T12:24:36.290870Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:24:36.290909Z 2 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 00000000-0000-0000-0000-000000000000:-1, protocol version: -1 +2023-03-12T12:24:36.290932Z 2 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T12:24:36.290944Z 2 [Note] [MY-000000] [Galera] ####### Adjusting cert position: -1 -> 170403902 +2023-03-12T12:24:36.290965Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:24:36.292059Z 2 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403902 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 0 + members(1): + 0: a689dc26-dc51-11ed-80dc-37422db6f664, node2 +================================================= +2023-03-12T12:24:36.292079Z 2 [Note] [MY-000000] [WSREP] Server status change connected -> joiner +2023-03-12T12:24:36.292095Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:24:36.292111Z 2 [Note] [MY-000000] [WSREP] Server status change joiner -> initializing +2023-03-12T12:24:36.292122Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:24:36.293271Z 0 [Warning] [MY-013245] [Server] The SSL library function CRYPTO_set_mem_functions failed. This is typically caused by the SSL library already being used. As a result the SSL memory allocation will not be instrumented. +2023-03-12T12:24:36.294547Z 0 [Note] [MY-012366] [InnoDB] Using Linux native AIO +2023-03-12T12:24:36.294726Z 0 [Note] [MY-010747] [Server] Plugin 'FEDERATED' is disabled. +2023-03-12T12:24:36.295844Z 3 [System] [MY-013576] [InnoDB] InnoDB initialization has started. +2023-03-12T12:24:36.295884Z 3 [Note] [MY-013546] [InnoDB] Atomic write enabled +2023-03-12T12:24:36.295945Z 3 [Note] [MY-012932] [InnoDB] PUNCH HOLE support available +2023-03-12T12:24:36.295969Z 3 [Note] [MY-012944] [InnoDB] Uses event mutexes +2023-03-12T12:24:36.295983Z 3 [Note] [MY-012945] [InnoDB] GCC builtin __atomic_thread_fence() is used for memory barrier +2023-03-12T12:24:36.295994Z 3 [Note] [MY-012948] [InnoDB] Compressed tables use zlib 1.2.11 +2023-03-12T12:24:36.298169Z 3 [Note] [MY-013251] [InnoDB] Number of pools: 1 +2023-03-12T12:24:36.298264Z 3 [Note] [MY-012951] [InnoDB] Using hardware accelerated crc32 and polynomial multiplication. +2023-03-12T12:24:36.298709Z 3 [Note] [MY-012203] [InnoDB] Directories to scan './' +2023-03-12T12:24:36.298769Z 3 [Note] [MY-012204] [InnoDB] Scanning './' +2023-03-12T12:24:36.379473Z 3 [Note] [MY-012208] [InnoDB] Completed space ID check of 3118 files. +2023-03-12T12:24:36.384704Z 3 [Note] [MY-012955] [InnoDB] Initializing buffer pool, total size = 120.000000G, instances = 64, chunk size =128.000000M +2023-03-12T12:24:39.957277Z 3 [Note] [MY-012957] [InnoDB] Completed initialization of buffer pool +2023-03-12T12:24:40.209736Z 0 [Note] [MY-011952] [InnoDB] If the mysqld execution user is authorized, page cleaner and LRU manager thread priority can be changed. See the man page of setpriority(). +2023-03-12T12:24:40.213311Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_0.dblwr' for doublewrite +2023-03-12T12:24:40.214194Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_1.dblwr' for doublewrite +2023-03-12T12:24:40.215256Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_2.dblwr' for doublewrite +2023-03-12T12:24:40.216048Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_3.dblwr' for doublewrite +2023-03-12T12:24:40.216925Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_4.dblwr' for doublewrite +2023-03-12T12:24:40.217572Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_5.dblwr' for doublewrite +2023-03-12T12:24:40.218386Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_6.dblwr' for doublewrite +2023-03-12T12:24:40.218991Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_7.dblwr' for doublewrite +2023-03-12T12:24:40.219765Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_8.dblwr' for doublewrite +2023-03-12T12:24:40.220351Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_9.dblwr' for doublewrite +2023-03-12T12:24:40.221125Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_10.dblwr' for doublewrite +2023-03-12T12:24:40.221729Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_11.dblwr' for doublewrite +2023-03-12T12:24:40.222512Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_12.dblwr' for doublewrite +2023-03-12T12:24:40.223098Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_13.dblwr' for doublewrite +2023-03-12T12:24:40.223936Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_14.dblwr' for doublewrite +2023-03-12T12:24:40.224614Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_15.dblwr' for doublewrite +2023-03-12T12:24:40.225511Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_16.dblwr' for doublewrite +2023-03-12T12:24:40.226181Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_17.dblwr' for doublewrite +2023-03-12T12:24:40.227065Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_18.dblwr' for doublewrite +2023-03-12T12:24:40.227745Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_19.dblwr' for doublewrite +2023-03-12T12:24:40.228607Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_20.dblwr' for doublewrite +2023-03-12T12:24:40.229283Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_21.dblwr' for doublewrite +2023-03-12T12:24:40.230208Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_22.dblwr' for doublewrite +2023-03-12T12:24:40.230929Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_23.dblwr' for doublewrite +2023-03-12T12:24:40.231779Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_24.dblwr' for doublewrite +2023-03-12T12:24:40.232458Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_25.dblwr' for doublewrite +2023-03-12T12:24:40.233338Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_26.dblwr' for doublewrite +2023-03-12T12:24:40.234053Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_27.dblwr' for doublewrite +2023-03-12T12:24:40.234944Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_28.dblwr' for doublewrite +2023-03-12T12:24:40.235649Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_29.dblwr' for doublewrite +2023-03-12T12:24:40.236525Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_30.dblwr' for doublewrite +2023-03-12T12:24:40.237183Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_31.dblwr' for doublewrite +2023-03-12T12:24:40.238019Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_32.dblwr' for doublewrite +2023-03-12T12:24:40.238659Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_33.dblwr' for doublewrite +2023-03-12T12:24:40.239482Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_34.dblwr' for doublewrite +2023-03-12T12:24:40.240226Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_35.dblwr' for doublewrite +2023-03-12T12:24:40.241108Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_36.dblwr' for doublewrite +2023-03-12T12:24:40.241780Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_37.dblwr' for doublewrite +2023-03-12T12:24:40.242660Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_38.dblwr' for doublewrite +2023-03-12T12:24:40.243340Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_39.dblwr' for doublewrite +2023-03-12T12:24:40.244219Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_40.dblwr' for doublewrite +2023-03-12T12:24:40.244882Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_41.dblwr' for doublewrite +2023-03-12T12:24:40.245755Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_42.dblwr' for doublewrite +2023-03-12T12:24:40.246461Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_43.dblwr' for doublewrite +2023-03-12T12:24:40.247331Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_44.dblwr' for doublewrite +2023-03-12T12:24:40.248022Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_45.dblwr' for doublewrite +2023-03-12T12:24:40.248869Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_46.dblwr' for doublewrite +2023-03-12T12:24:40.249545Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_47.dblwr' for doublewrite +2023-03-12T12:24:40.250417Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_48.dblwr' for doublewrite +2023-03-12T12:24:40.251112Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_49.dblwr' for doublewrite +2023-03-12T12:24:40.251938Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_50.dblwr' for doublewrite +2023-03-12T12:24:40.252596Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_51.dblwr' for doublewrite +2023-03-12T12:24:40.253414Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_52.dblwr' for doublewrite +2023-03-12T12:24:40.254058Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_53.dblwr' for doublewrite +2023-03-12T12:24:40.254850Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_54.dblwr' for doublewrite +2023-03-12T12:24:40.255498Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_55.dblwr' for doublewrite +2023-03-12T12:24:40.256296Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_56.dblwr' for doublewrite +2023-03-12T12:24:40.256934Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_57.dblwr' for doublewrite +2023-03-12T12:24:40.257764Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_58.dblwr' for doublewrite +2023-03-12T12:24:40.258425Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_59.dblwr' for doublewrite +2023-03-12T12:24:40.259200Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_60.dblwr' for doublewrite +2023-03-12T12:24:40.259777Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_61.dblwr' for doublewrite +2023-03-12T12:24:40.260531Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_62.dblwr' for doublewrite +2023-03-12T12:24:40.261105Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_63.dblwr' for doublewrite +2023-03-12T12:24:40.261882Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_64.dblwr' for doublewrite +2023-03-12T12:24:40.262458Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_65.dblwr' for doublewrite +2023-03-12T12:24:40.263234Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_66.dblwr' for doublewrite +2023-03-12T12:24:40.263808Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_67.dblwr' for doublewrite +2023-03-12T12:24:40.264557Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_68.dblwr' for doublewrite +2023-03-12T12:24:40.265187Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_69.dblwr' for doublewrite +2023-03-12T12:24:40.266025Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_70.dblwr' for doublewrite +2023-03-12T12:24:40.266697Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_71.dblwr' for doublewrite +2023-03-12T12:24:40.267573Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_72.dblwr' for doublewrite +2023-03-12T12:24:40.268240Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_73.dblwr' for doublewrite +2023-03-12T12:24:40.269099Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_74.dblwr' for doublewrite +2023-03-12T12:24:40.269755Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_75.dblwr' for doublewrite +2023-03-12T12:24:40.270650Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_76.dblwr' for doublewrite +2023-03-12T12:24:40.271312Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_77.dblwr' for doublewrite +2023-03-12T12:24:40.272156Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_78.dblwr' for doublewrite +2023-03-12T12:24:40.272860Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_79.dblwr' for doublewrite +2023-03-12T12:24:40.273696Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_80.dblwr' for doublewrite +2023-03-12T12:24:40.274398Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_81.dblwr' for doublewrite +2023-03-12T12:24:40.275230Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_82.dblwr' for doublewrite +2023-03-12T12:24:40.275884Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_83.dblwr' for doublewrite +2023-03-12T12:24:40.276726Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_84.dblwr' for doublewrite +2023-03-12T12:24:40.277394Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_85.dblwr' for doublewrite +2023-03-12T12:24:40.278225Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_86.dblwr' for doublewrite +2023-03-12T12:24:40.278898Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_87.dblwr' for doublewrite +2023-03-12T12:24:40.279743Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_88.dblwr' for doublewrite +2023-03-12T12:24:40.280430Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_89.dblwr' for doublewrite +2023-03-12T12:24:40.281220Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_90.dblwr' for doublewrite +2023-03-12T12:24:40.281826Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_91.dblwr' for doublewrite +2023-03-12T12:24:40.282622Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_92.dblwr' for doublewrite +2023-03-12T12:24:40.283296Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_93.dblwr' for doublewrite +2023-03-12T12:24:40.284094Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_94.dblwr' for doublewrite +2023-03-12T12:24:40.284726Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_95.dblwr' for doublewrite +2023-03-12T12:24:40.285514Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_96.dblwr' for doublewrite +2023-03-12T12:24:40.286117Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_97.dblwr' for doublewrite +2023-03-12T12:24:40.286853Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_98.dblwr' for doublewrite +2023-03-12T12:24:40.287473Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_99.dblwr' for doublewrite +2023-03-12T12:24:40.288237Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_100.dblwr' for doublewrite +2023-03-12T12:24:40.288792Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_101.dblwr' for doublewrite +2023-03-12T12:24:40.289549Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_102.dblwr' for doublewrite +2023-03-12T12:24:40.290112Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_103.dblwr' for doublewrite +2023-03-12T12:24:40.290834Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_104.dblwr' for doublewrite +2023-03-12T12:24:40.291456Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_105.dblwr' for doublewrite +2023-03-12T12:24:40.292271Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_106.dblwr' for doublewrite +2023-03-12T12:24:40.292932Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_107.dblwr' for doublewrite +2023-03-12T12:24:40.293780Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_108.dblwr' for doublewrite +2023-03-12T12:24:40.294460Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_109.dblwr' for doublewrite +2023-03-12T12:24:40.295510Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_110.dblwr' for doublewrite +2023-03-12T12:24:40.296217Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_111.dblwr' for doublewrite +2023-03-12T12:24:40.297057Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_112.dblwr' for doublewrite +2023-03-12T12:24:40.297764Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_113.dblwr' for doublewrite +2023-03-12T12:24:40.298607Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_114.dblwr' for doublewrite +2023-03-12T12:24:40.299297Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_115.dblwr' for doublewrite +2023-03-12T12:24:40.300115Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_116.dblwr' for doublewrite +2023-03-12T12:24:40.300766Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_117.dblwr' for doublewrite +2023-03-12T12:24:40.301618Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_118.dblwr' for doublewrite +2023-03-12T12:24:40.302310Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_119.dblwr' for doublewrite +2023-03-12T12:24:40.303145Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_120.dblwr' for doublewrite +2023-03-12T12:24:40.303823Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_121.dblwr' for doublewrite +2023-03-12T12:24:40.304705Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_122.dblwr' for doublewrite +2023-03-12T12:24:40.305370Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_123.dblwr' for doublewrite +2023-03-12T12:24:40.306197Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_124.dblwr' for doublewrite +2023-03-12T12:24:40.306845Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_125.dblwr' for doublewrite +2023-03-12T12:24:40.307643Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_126.dblwr' for doublewrite +2023-03-12T12:24:40.308268Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_127.dblwr' for doublewrite +2023-03-12T12:24:40.445406Z 3 [Note] [MY-013566] [InnoDB] Double write buffer files: 128 +2023-03-12T12:24:40.445449Z 3 [Note] [MY-013565] [InnoDB] Double write buffer pages per instance: 32 +2023-03-12T12:24:40.445498Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_0.dblwr' for doublewrite +2023-03-12T12:24:40.445531Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_1.dblwr' for doublewrite +2023-03-12T12:24:40.445558Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_2.dblwr' for doublewrite +2023-03-12T12:24:40.445584Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_3.dblwr' for doublewrite +2023-03-12T12:24:40.445608Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_4.dblwr' for doublewrite +2023-03-12T12:24:40.445635Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_5.dblwr' for doublewrite +2023-03-12T12:24:40.445659Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_6.dblwr' for doublewrite +2023-03-12T12:24:40.445684Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_7.dblwr' for doublewrite +2023-03-12T12:24:40.445708Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_8.dblwr' for doublewrite +2023-03-12T12:24:40.445732Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_9.dblwr' for doublewrite +2023-03-12T12:24:40.445760Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_10.dblwr' for doublewrite +2023-03-12T12:24:40.445789Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_11.dblwr' for doublewrite +2023-03-12T12:24:40.445815Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_12.dblwr' for doublewrite +2023-03-12T12:24:40.445841Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_13.dblwr' for doublewrite +2023-03-12T12:24:40.445877Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_14.dblwr' for doublewrite +2023-03-12T12:24:40.445903Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_15.dblwr' for doublewrite +2023-03-12T12:24:40.445958Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_16.dblwr' for doublewrite +2023-03-12T12:24:40.445987Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_17.dblwr' for doublewrite +2023-03-12T12:24:40.446014Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_18.dblwr' for doublewrite +2023-03-12T12:24:40.446038Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_19.dblwr' for doublewrite +2023-03-12T12:24:40.446063Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_20.dblwr' for doublewrite +2023-03-12T12:24:40.446087Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_21.dblwr' for doublewrite +2023-03-12T12:24:40.446111Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_22.dblwr' for doublewrite +2023-03-12T12:24:40.446135Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_23.dblwr' for doublewrite +2023-03-12T12:24:40.446160Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_24.dblwr' for doublewrite +2023-03-12T12:24:40.446184Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_25.dblwr' for doublewrite +2023-03-12T12:24:40.446209Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_26.dblwr' for doublewrite +2023-03-12T12:24:40.446233Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_27.dblwr' for doublewrite +2023-03-12T12:24:40.446257Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_28.dblwr' for doublewrite +2023-03-12T12:24:40.446282Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_29.dblwr' for doublewrite +2023-03-12T12:24:40.446307Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_30.dblwr' for doublewrite +2023-03-12T12:24:40.446331Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_31.dblwr' for doublewrite +2023-03-12T12:24:40.446355Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_32.dblwr' for doublewrite +2023-03-12T12:24:40.446380Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_33.dblwr' for doublewrite +2023-03-12T12:24:40.446404Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_34.dblwr' for doublewrite +2023-03-12T12:24:40.446428Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_35.dblwr' for doublewrite +2023-03-12T12:24:40.446451Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_36.dblwr' for doublewrite +2023-03-12T12:24:40.446475Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_37.dblwr' for doublewrite +2023-03-12T12:24:40.446500Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_38.dblwr' for doublewrite +2023-03-12T12:24:40.446523Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_39.dblwr' for doublewrite +2023-03-12T12:24:40.446548Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_40.dblwr' for doublewrite +2023-03-12T12:24:40.446573Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_41.dblwr' for doublewrite +2023-03-12T12:24:40.446597Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_42.dblwr' for doublewrite +2023-03-12T12:24:40.446621Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_43.dblwr' for doublewrite +2023-03-12T12:24:40.446646Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_44.dblwr' for doublewrite +2023-03-12T12:24:40.446670Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_45.dblwr' for doublewrite +2023-03-12T12:24:40.446693Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_46.dblwr' for doublewrite +2023-03-12T12:24:40.446716Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_47.dblwr' for doublewrite +2023-03-12T12:24:40.446739Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_48.dblwr' for doublewrite +2023-03-12T12:24:40.446762Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_49.dblwr' for doublewrite +2023-03-12T12:24:40.446785Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_50.dblwr' for doublewrite +2023-03-12T12:24:40.446808Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_51.dblwr' for doublewrite +2023-03-12T12:24:40.446833Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_52.dblwr' for doublewrite +2023-03-12T12:24:40.446858Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_53.dblwr' for doublewrite +2023-03-12T12:24:40.446885Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_54.dblwr' for doublewrite +2023-03-12T12:24:40.446908Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_55.dblwr' for doublewrite +2023-03-12T12:24:40.446941Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_56.dblwr' for doublewrite +2023-03-12T12:24:40.446965Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_57.dblwr' for doublewrite +2023-03-12T12:24:40.446987Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_58.dblwr' for doublewrite +2023-03-12T12:24:40.447011Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_59.dblwr' for doublewrite +2023-03-12T12:24:40.447039Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_60.dblwr' for doublewrite +2023-03-12T12:24:40.447062Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_61.dblwr' for doublewrite +2023-03-12T12:24:40.447086Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_62.dblwr' for doublewrite +2023-03-12T12:24:40.447109Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_63.dblwr' for doublewrite +2023-03-12T12:24:40.447131Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_64.dblwr' for doublewrite +2023-03-12T12:24:40.447154Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_65.dblwr' for doublewrite +2023-03-12T12:24:40.447176Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_66.dblwr' for doublewrite +2023-03-12T12:24:40.447199Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_67.dblwr' for doublewrite +2023-03-12T12:24:40.447222Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_68.dblwr' for doublewrite +2023-03-12T12:24:40.447250Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_69.dblwr' for doublewrite +2023-03-12T12:24:40.447273Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_70.dblwr' for doublewrite +2023-03-12T12:24:40.447295Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_71.dblwr' for doublewrite +2023-03-12T12:24:40.447318Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_72.dblwr' for doublewrite +2023-03-12T12:24:40.447342Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_73.dblwr' for doublewrite +2023-03-12T12:24:40.447366Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_74.dblwr' for doublewrite +2023-03-12T12:24:40.447389Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_75.dblwr' for doublewrite +2023-03-12T12:24:40.447413Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_76.dblwr' for doublewrite +2023-03-12T12:24:40.447435Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_77.dblwr' for doublewrite +2023-03-12T12:24:40.447462Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_78.dblwr' for doublewrite +2023-03-12T12:24:40.447486Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_79.dblwr' for doublewrite +2023-03-12T12:24:40.447508Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_80.dblwr' for doublewrite +2023-03-12T12:24:40.447532Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_81.dblwr' for doublewrite +2023-03-12T12:24:40.447555Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_82.dblwr' for doublewrite +2023-03-12T12:24:40.447578Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_83.dblwr' for doublewrite +2023-03-12T12:24:40.447600Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_84.dblwr' for doublewrite +2023-03-12T12:24:40.447624Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_85.dblwr' for doublewrite +2023-03-12T12:24:40.447649Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_86.dblwr' for doublewrite +2023-03-12T12:24:40.447671Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_87.dblwr' for doublewrite +2023-03-12T12:24:40.447696Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_88.dblwr' for doublewrite +2023-03-12T12:24:40.447719Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_89.dblwr' for doublewrite +2023-03-12T12:24:40.447743Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_90.dblwr' for doublewrite +2023-03-12T12:24:40.447766Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_91.dblwr' for doublewrite +2023-03-12T12:24:40.447790Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_92.dblwr' for doublewrite +2023-03-12T12:24:40.447812Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_93.dblwr' for doublewrite +2023-03-12T12:24:40.447838Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_94.dblwr' for doublewrite +2023-03-12T12:24:40.447864Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_95.dblwr' for doublewrite +2023-03-12T12:24:40.447888Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_96.dblwr' for doublewrite +2023-03-12T12:24:40.447911Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_97.dblwr' for doublewrite +2023-03-12T12:24:40.447944Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_98.dblwr' for doublewrite +2023-03-12T12:24:40.447966Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_99.dblwr' for doublewrite +2023-03-12T12:24:40.447991Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_100.dblwr' for doublewrite +2023-03-12T12:24:40.448015Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_101.dblwr' for doublewrite +2023-03-12T12:24:40.448039Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_102.dblwr' for doublewrite +2023-03-12T12:24:40.448062Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_103.dblwr' for doublewrite +2023-03-12T12:24:40.448087Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_104.dblwr' for doublewrite +2023-03-12T12:24:40.448112Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_105.dblwr' for doublewrite +2023-03-12T12:24:40.448136Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_106.dblwr' for doublewrite +2023-03-12T12:24:40.448160Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_107.dblwr' for doublewrite +2023-03-12T12:24:40.448184Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_108.dblwr' for doublewrite +2023-03-12T12:24:40.448207Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_109.dblwr' for doublewrite +2023-03-12T12:24:40.458946Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_110.dblwr' for doublewrite +2023-03-12T12:24:40.458977Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_111.dblwr' for doublewrite +2023-03-12T12:24:40.459002Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_112.dblwr' for doublewrite +2023-03-12T12:24:40.459020Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_113.dblwr' for doublewrite +2023-03-12T12:24:40.459046Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_114.dblwr' for doublewrite +2023-03-12T12:24:40.459066Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_115.dblwr' for doublewrite +2023-03-12T12:24:40.459091Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_116.dblwr' for doublewrite +2023-03-12T12:24:40.459114Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_117.dblwr' for doublewrite +2023-03-12T12:24:40.459138Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_118.dblwr' for doublewrite +2023-03-12T12:24:40.459162Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_119.dblwr' for doublewrite +2023-03-12T12:24:40.459186Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_120.dblwr' for doublewrite +2023-03-12T12:24:40.459211Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_121.dblwr' for doublewrite +2023-03-12T12:24:40.459235Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_122.dblwr' for doublewrite +2023-03-12T12:24:40.459260Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_123.dblwr' for doublewrite +2023-03-12T12:24:40.459285Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_124.dblwr' for doublewrite +2023-03-12T12:24:40.459307Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_125.dblwr' for doublewrite +2023-03-12T12:24:40.459330Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_126.dblwr' for doublewrite +2023-03-12T12:24:40.459354Z 3 [Note] [MY-013532] [InnoDB] Using './#ib_16384_127.dblwr' for doublewrite +2023-03-12T12:24:40.462180Z 3 [Note] [MY-013086] [InnoDB] Starting to parse redo log at lsn = 35636234719261, whereas checkpoint_lsn = 35636234719423 and start_lsn = 35636234719232 +2023-03-12T12:24:40.602556Z 3 [Note] [MY-013083] [InnoDB] Log background threads are being started... +2023-03-12T12:24:40.603198Z 3 [Note] [MY-012532] [InnoDB] Applying a batch of 0 redo log records ... +2023-03-12T12:24:40.603226Z 3 [Note] [MY-012535] [InnoDB] Apply batch completed! +2023-03-12T12:24:40.603866Z 3 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_001'. +2023-03-12T12:24:40.604889Z 3 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_002'. +2023-03-12T12:24:40.606730Z 3 [Note] [MY-012910] [InnoDB] Opened 2 existing undo tablespaces. +2023-03-12T12:24:40.606810Z 3 [Note] [MY-011980] [InnoDB] GTID recovery trx_no: 10986149744 +2023-03-12T12:24:40.613460Z 3 [Note] [MY-013776] [InnoDB] Parallel initialization of rseg complete +2023-03-12T12:24:40.613494Z 3 [Note] [MY-013777] [InnoDB] Time taken to initialize rseg using 4 thread: 6704 ms. +2023-03-12T12:24:40.613624Z 3 [Note] [MY-012923] [InnoDB] Creating shared tablespace for temporary tables +2023-03-12T12:24:40.613706Z 3 [Note] [MY-012265] [InnoDB] Setting file '/var/lib/mysqlibtmp1' size to 12 MB. Physically writing the file full; Please wait ... +2023-03-12T12:24:40.628319Z 3 [Note] [MY-012266] [InnoDB] File '/var/lib/mysqlibtmp1' size is now 12 MB. +2023-03-12T12:24:40.629304Z 3 [Note] [MY-013627] [InnoDB] Scanning temp tablespace dir:'./#innodb_temp/' +2023-03-12T12:24:40.650591Z 3 [Note] [MY-013018] [InnoDB] Created 128 and tracked 128 new rollback segment(s) in the temporary tablespace. 128 are now active. +2023-03-12T12:24:40.650857Z 3 [Note] [MY-012976] [InnoDB] Percona XtraDB (http://www.percona.com) 8.0.28-19 started; log sequence number 35636234719433 +2023-03-12T12:24:40.651880Z 3 [System] [MY-013577] [InnoDB] InnoDB initialization has ended. +2023-03-12T12:24:40.656824Z 3 [Note] [MY-011089] [Server] Data dictionary restarting version '80023'. +2023-03-12T12:24:40.805229Z 3 [Note] [MY-012357] [InnoDB] Reading DD tablespace files +2023-03-12T12:24:40.934251Z 3 [Note] [MY-012356] [InnoDB] Scanned 3120 tablespaces. Validated 3120. +2023-03-12T12:24:40.988639Z 3 [Note] [MY-000000] [WSREP] wsrep_init_schema_and_SR (nil) +2023-03-12T12:24:40.994989Z 3 [System] [MY-000000] [WSREP] PXC upgrade completed successfully +2023-03-12T12:24:40.995079Z 3 [Note] [MY-010006] [Server] Using data dictionary with version '80023'. +2023-03-12T12:24:41.006607Z 0 [Note] [MY-011332] [Server] Plugin mysqlx reported: 'IPv6 is available' +2023-03-12T12:24:41.008235Z 0 [Note] [MY-011323] [Server] Plugin mysqlx reported: 'X Plugin ready for connections. bind-address: '::' port: 33060' +2023-03-12T12:24:41.008263Z 0 [Note] [MY-011323] [Server] Plugin mysqlx reported: 'X Plugin ready for connections. socket: '/var/lib/mysql/mysqlx.sock'' +2023-03-12T12:24:41.019317Z 0 [Note] [MY-010902] [Server] Thread priority attribute setting in Resource Group SQL shall be ignored due to unsupported platform or insufficient privilege. +2023-03-12T12:24:41.032879Z 0 [Note] [MY-012487] [InnoDB] DDL log recovery : begin +2023-03-12T12:24:41.032959Z 0 [Note] [MY-012488] [InnoDB] DDL log recovery : end +2023-03-12T12:24:41.034182Z 0 [Note] [MY-011946] [InnoDB] Loading buffer pool(s) from /var/lib/mysqlib_buffer_pool +2023-03-12T12:24:41.041653Z 0 [Note] [MY-012922] [InnoDB] Waiting for purge to start +2023-03-12T12:24:41.096947Z 0 [Warning] [MY-013829] [Server] Missing data directory for ICU regular expressions: /usr/lib64/mysql/private/. +2023-03-12T12:24:41.098082Z 0 [Note] [MY-010303] [Server] Skipping generation of SSL certificates as options related to SSL are specified. +2023-03-12T12:24:41.098711Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. +2023-03-12T12:24:41.098740Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. +2023-03-12T12:24:41.098763Z 0 [Note] [MY-010308] [Server] Skipping generation of RSA key pair through --sha256_password_auto_generate_rsa_keys as key files are present in data directory. +2023-03-12T12:24:41.098779Z 0 [Note] [MY-010308] [Server] Skipping generation of RSA key pair through --caching_sha2_password_auto_generate_rsa_keys as key files are present in data directory. +2023-03-12T12:24:41.098909Z 0 [Note] [MY-010252] [Server] Server hostname (bind-address): '0.0.0.0'; port: 3306 +2023-03-12T12:24:41.098947Z 0 [Note] [MY-010264] [Server] - '0.0.0.0' resolves to '0.0.0.0'; +2023-03-12T12:24:41.098969Z 0 [Note] [MY-010251] [Server] Server socket created on IP: '0.0.0.0'. +2023-03-12T12:24:41.125565Z 0 [Warning] [MY-010533] [Repl] Error during --relay-log-recovery: Could not locate rotate event from the master. +2023-03-12T12:24:41.125594Z 0 [Warning] [MY-013504] [Repl] Server was not able to find a rotate event from master server to initialize relay log recovery for channel ''. Skipping relay log recovery for the channel. +2023-03-12T12:24:41.135558Z 0 [Note] [MY-000000] [WSREP] Initialized wsrep sidno 2 +2023-03-12T12:24:41.135589Z 0 [Note] [MY-000000] [Galera] Server initialized +2023-03-12T12:24:41.135604Z 7 [Note] [MY-010051] [Server] Event Scheduler: scheduler thread started with id 7 +2023-03-12T12:24:41.135667Z 0 [Note] [MY-000000] [WSREP] Server status change initializing -> initialized +2023-03-12T12:24:41.135695Z 0 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:24:41.135760Z 2 [Note] [MY-000000] [Galera] Bootstrapping a new cluster, setting initial position to 00000000-0000-0000-0000-000000000000:-1 +2023-03-12T12:24:41.139910Z 9 [Note] [MY-000000] [WSREP] Recovered cluster id 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T12:24:41.140793Z 10 [Note] [MY-000000] [WSREP] Starting applier thread 10 +2023-03-12T12:24:41.141004Z 11 [Note] [MY-000000] [WSREP] Starting applier thread 11 +2023-03-12T12:24:41.141014Z 12 [Note] [MY-000000] [WSREP] Starting applier thread 12 +2023-03-12T12:24:41.141040Z 0 [Note] [MY-011240] [Server] Plugin mysqlx reported: 'Using SSL configuration from MySQL Server' +2023-03-12T12:24:41.141041Z 13 [Note] [MY-000000] [WSREP] Starting applier thread 13 +2023-03-12T12:24:41.141088Z 14 [Note] [MY-000000] [WSREP] Starting applier thread 14 +2023-03-12T12:24:41.141153Z 16 [Note] [MY-000000] [WSREP] Starting applier thread 16 +2023-03-12T12:24:41.141129Z 15 [Note] [MY-000000] [WSREP] Starting applier thread 15 +2023-03-12T12:24:41.141571Z 0 [Note] [MY-011243] [Server] Plugin mysqlx reported: 'Using OpenSSL for TLS connections' +2023-03-12T12:24:41.141731Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Bind-address: '::' port: 33060, socket: /var/lib/mysql/mysqlx.sock +2023-03-12T12:24:41.141791Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.28-19.1' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), Release rel19, Revision f544540, WSREP version 26.4.3. +2023-03-12T12:24:41.143012Z 2 [Note] [MY-000000] [WSREP] Server status change initialized -> joined +2023-03-12T12:24:41.143038Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:24:41.143055Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:24:41.147220Z 2 [Note] [MY-000000] [Galera] Recording CC from group: 170403902 +2023-03-12T12:24:41.147249Z 2 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 170403902 +2023-03-12T12:24:41.147258Z 2 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403896 +2023-03-12T12:24:41.147297Z 2 [Note] [MY-000000] [Galera] Server node2 synced with group +2023-03-12T12:24:41.147304Z 2 [Note] [MY-000000] [WSREP] Server status change joined -> synced +2023-03-12T12:24:41.147313Z 2 [Note] [MY-000000] [WSREP] Synchronized with group, ready for connections +2023-03-12T12:24:41.147318Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:24:41.325874Z 0 [Note] [MY-011946] [InnoDB] Buffer pool(s) load completed at 230416 14:24:41 +2023-03-12T12:29:48.873397Z 0 [Note] [MY-000000] [Galera] (a689dc26-80dc, 'ssl://0.0.0.0:4567') connection established to 60da0bf9-aa9c ssl://172.17.0.2:4567 +2023-03-12T12:29:48.873654Z 0 [Note] [MY-000000] [Galera] (a689dc26-80dc, 'ssl://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T12:29:49.319032Z 0 [Note] [MY-000000] [Galera] declaring 60da0bf9-aa9c at ssl://172.17.0.2:4567 stable +2023-03-12T12:29:49.319223Z 0 [Note] [MY-000000] [Galera] Node a689dc26-80dc state primary +2023-03-12T12:29:49.321518Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,60da0bf9-aa9c,2) +memb { + 60da0bf9-aa9c,0 + a689dc26-80dc,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T12:29:49.321540Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T12:29:49.323505Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 1, memb_num = 2 +2023-03-12T12:29:49.323539Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: Waiting for state UUID. +2023-03-12T12:29:49.370682Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 61268c4a-dc52-11ed-a7a3-4fe1353dd932 +2023-03-12T12:29:49.370770Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 61268c4a-dc52-11ed-a7a3-4fe1353dd932 from 0 (node1) +2023-03-12T12:29:49.370797Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 61268c4a-dc52-11ed-a7a3-4fe1353dd932 from 1 (node2) +2023-03-12T12:29:49.370805Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 1, + members = 1/2 (primary/total), + act_id = 170403902, + last_appl. = 170403901, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T12:29:49.370851Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [141, 141] +2023-03-12T12:29:49.370971Z 2 [Note] [MY-000000] [Galera] ####### processing CC 170403903, local, ordered +2023-03-12T12:29:49.371002Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 170403902 upto current CC event 170403903 upto:170403902 +2023-03-12T12:29:49.371013Z 2 [Note] [MY-000000] [Galera] Drain monitors from 170403902 up to 170403902 +2023-03-12T12:29:49.371024Z 2 [Note] [MY-000000] [Galera] ####### My UUID: a689dc26-dc51-11ed-80dc-37422db6f664 +2023-03-12T12:29:49.371034Z 2 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T12:29:49.371043Z 2 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T12:29:49.371052Z 2 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170403902 -> 170403903 +2023-03-12T12:29:49.371102Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:29:49.373574Z 2 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403903 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 1 + members(2): + 0: 60da0bf9-dc52-11ed-aa9c-7769749b5a43, node1 + 1: a689dc26-dc51-11ed-80dc-37422db6f664, node2 +================================================= +2023-03-12T12:29:49.373613Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:29:49.376884Z 2 [Note] [MY-000000] [Galera] Recording CC from group: 170403903 +2023-03-12T12:29:49.376922Z 2 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 170403903 +2023-03-12T12:29:49.376941Z 2 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403896 +2023-03-12T12:29:50.442646Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403895] < safe_ist_seqno [170403896] +2023-03-12T12:29:50.442702Z 0 [Warning] [MY-000000] [Galera] Member 0.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Host is down +2023-03-12T12:29:51.443459Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.2:51520 +2023-03-12T12:29:51.443525Z 0 [Note] [MY-000000] [Galera] forgetting 60da0bf9-aa9c (ssl://172.17.0.2:4567) +2023-03-12T12:29:51.443561Z 0 [Note] [MY-000000] [Galera] Node a689dc26-80dc state primary +2023-03-12T12:29:51.443577Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,a689dc26-80dc,3) +memb { + a689dc26-80dc,0 + } +joined { + } +left { + } +partitioned { + 60da0bf9-aa9c,0 + } +) +2023-03-12T12:29:51.443587Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T12:29:51.445280Z 0 [Note] [MY-000000] [Galera] forgetting 60da0bf9-aa9c (ssl://172.17.0.2:4567) +2023-03-12T12:29:51.445300Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T12:29:51.445393Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: 62633d3f-dc52-11ed-bc18-0606ea470cc4 +2023-03-12T12:29:51.445407Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 62633d3f-dc52-11ed-bc18-0606ea470cc4 +2023-03-12T12:29:51.445419Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 62633d3f-dc52-11ed-bc18-0606ea470cc4 from 0 (node2) +2023-03-12T12:29:51.445439Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 2, + members = 1/1 (primary/total), + act_id = 170403903, + last_appl. = 170403901, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T12:29:51.445468Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [100, 100] +2023-03-12T12:29:51.445521Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x84eb0b0 +2023-03-12T12:29:51.445537Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T12:29:51.445546Z 2 [Note] [MY-000000] [Galera] ####### processing CC 170403904, local, ordered +2023-03-12T12:29:51.445569Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 170403903 upto current CC event 170403904 upto:170403903 +2023-03-12T12:29:51.445577Z 2 [Note] [MY-000000] [Galera] Drain monitors from 170403903 up to 170403903 +2023-03-12T12:29:51.445585Z 2 [Note] [MY-000000] [Galera] ####### My UUID: a689dc26-dc51-11ed-80dc-37422db6f664 +2023-03-12T12:29:51.445591Z 2 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T12:29:51.445599Z 2 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T12:29:51.445605Z 2 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170403903 -> 170403904 +2023-03-12T12:29:51.445644Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:29:51.448427Z 2 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403904 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 0 + members(1): + 0: a689dc26-dc51-11ed-80dc-37422db6f664, node2 +================================================= +2023-03-12T12:29:51.448452Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:29:51.451080Z 2 [Note] [MY-000000] [Galera] Recording CC from group: 170403904 +2023-03-12T12:29:51.451099Z 2 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 170403904 +2023-03-12T12:29:51.451105Z 2 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403896 +2023-03-12T12:29:52.319229Z 0 [Note] [MY-000000] [Galera] (a689dc26-80dc, 'ssl://0.0.0.0:4567') turning message relay requesting off +2023-03-12T12:29:56.819593Z 0 [Note] [MY-000000] [Galera] cleaning up 60da0bf9-aa9c (ssl://172.17.0.2:4567) +2023-03-12T12:48:43.323820Z 0 [Note] [MY-000000] [Galera] (a689dc26-80dc, 'ssl://0.0.0.0:4567') connection established to 0509936f-8cc2 ssl://172.17.0.4:4567 +2023-03-12T12:48:43.324046Z 0 [Note] [MY-000000] [Galera] (a689dc26-80dc, 'ssl://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T12:48:43.521685Z 0 [Note] [MY-000000] [Galera] declaring 0509936f-8cc2 at ssl://172.17.0.4:4567 stable +2023-03-12T12:48:43.521937Z 0 [Note] [MY-000000] [Galera] Node a689dc26-80dc state primary +2023-03-12T12:48:43.523978Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,4) +memb { + 0509936f-8cc2,0 + a689dc26-80dc,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T12:48:43.524001Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T12:48:43.526717Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 1, memb_num = 2 +2023-03-12T12:48:43.526755Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: Waiting for state UUID. +2023-03-12T12:48:43.821576Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 05560d07-dc55-11ed-9a8e-d23f5c06357a +2023-03-12T12:48:43.821632Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 05560d07-dc55-11ed-9a8e-d23f5c06357a from 0 (node3) +2023-03-12T12:48:43.821679Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 05560d07-dc55-11ed-9a8e-d23f5c06357a from 1 (node2) +2023-03-12T12:48:43.821688Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 3, + members = 1/2 (primary/total), + act_id = 170403904, + last_appl. = 170403901, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T12:48:43.821743Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [141, 141] +2023-03-12T12:48:43.821853Z 2 [Note] [MY-000000] [Galera] ####### processing CC 170403905, local, ordered +2023-03-12T12:48:43.821888Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 170403904 upto current CC event 170403905 upto:170403904 +2023-03-12T12:48:43.821896Z 2 [Note] [MY-000000] [Galera] Drain monitors from 170403904 up to 170403904 +2023-03-12T12:48:43.821904Z 2 [Note] [MY-000000] [Galera] ####### My UUID: a689dc26-dc51-11ed-80dc-37422db6f664 +2023-03-12T12:48:43.821911Z 2 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T12:48:43.821938Z 2 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T12:48:43.821945Z 2 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170403904 -> 170403905 +2023-03-12T12:48:43.821994Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:48:43.825785Z 2 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403905 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 1 + members(2): + 0: 0509936f-dc55-11ed-8cc2-ba331b939383, node3 + 1: a689dc26-dc51-11ed-80dc-37422db6f664, node2 +================================================= +2023-03-12T12:48:43.825814Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:43.829588Z 2 [Note] [MY-000000] [Galera] Recording CC from group: 170403905 +2023-03-12T12:48:43.829612Z 2 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 170403905 +2023-03-12T12:48:43.829621Z 2 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403896 +2023-03-12T12:48:44.599287Z 0 [Note] [MY-000000] [Galera] Member 0.0 (node3) requested state transfer from 'node'. Selected 1.0 (node2)(SYNCED) as donor. +2023-03-12T12:48:44.599341Z 0 [Note] [MY-000000] [Galera] Shifting SYNCED -> DONOR/DESYNCED (TO: 170403905) +2023-03-12T12:48:44.599398Z 2 [Note] [MY-000000] [Galera] Detected STR version: 1, req_len: 145, req: STRv1 +2023-03-12T12:48:44.599446Z 2 [Note] [MY-000000] [Galera] IST request: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896-170403905|ssl://172.17.0.4:4568 +2023-03-12T12:48:44.599458Z 2 [Note] [MY-000000] [WSREP] Server status change synced -> donor +2023-03-12T12:48:44.599465Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:44.599755Z 0 [Note] [MY-000000] [WSREP] Initiating SST/IST transfer on DONOR side (wsrep_sst_xtrabackup-v2 --role 'donor' --address '172.17.0.4:4444/xtrabackup_sst//1' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql' --basedir '/usr/' --plugindir '/usr/lib64/mysql/plugin/' --defaults-file '/etc/my.cnf' --defaults-group-suffix '' --mysqld-version '8.0.28-19.1' '' --gtid '9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896' --bypass) +2023-03-12T12:48:44.612999Z 2 [Note] [MY-000000] [WSREP] DONOR thread signaled with 0 +2023-03-12T12:48:44.616436Z 0 [Note] [MY-000000] [Galera] async IST sender starting to serve ssl://172.17.0.4:4568 sending 170403897-170403905, preload starts from 170403905 +2023-03-12T12:48:44.616743Z 0 [Note] [MY-000000] [Galera] IST sender 170403897 -> 170403905 +2023-03-12T12:48:45.044873Z 0 [Note] [MY-000000] [WSREP-SST] Bypassing SST. Can work it through IST +2023-03-12T12:48:46.064264Z 0 [Note] [MY-000000] [Galera] SST sent: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T12:48:46.064299Z 0 [Note] [MY-000000] [WSREP] Server status change donor -> joined +2023-03-12T12:48:46.064316Z 0 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:46.064764Z 0 [Note] [MY-000000] [Galera] 1.0 (node2): State transfer to 0.0 (node3) complete. +2023-03-12T12:48:46.064808Z 0 [Note] [MY-000000] [Galera] Shifting DONOR/DESYNCED -> JOINED (TO: 170403905) +2023-03-12T12:48:46.064863Z 0 [Note] [MY-000000] [Galera] Processing event queue:... -nan% (0/0 events) complete. +2023-03-12T12:48:46.065025Z 0 [Note] [MY-000000] [Galera] Member 1.0 (node2) synced with group. +2023-03-12T12:48:46.065046Z 0 [Note] [MY-000000] [Galera] Processing event queue:...100.0% (1/1 events) complete. +2023-03-12T12:48:46.065051Z 0 [Note] [MY-000000] [Galera] Shifting JOINED -> SYNCED (TO: 170403905) +2023-03-12T12:48:46.065095Z 11 [Note] [MY-000000] [Galera] Server node2 synced with group +2023-03-12T12:48:46.065129Z 11 [Note] [MY-000000] [WSREP] Server status change joined -> synced +2023-03-12T12:48:46.065150Z 11 [Note] [MY-000000] [WSREP] Synchronized with group, ready for connections +2023-03-12T12:48:46.065176Z 11 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:46.413487Z 0 [Note] [MY-000000] [Galera] (a689dc26-80dc, 'ssl://0.0.0.0:4567') turning message relay requesting off +2023-03-12T12:48:54.266814Z 0 [Note] [MY-000000] [Galera] async IST sender served +2023-03-12T12:48:54.271934Z 0 [Note] [MY-000000] [Galera] 0.0 (node3): State transfer from 1.0 (node2) complete. +2023-03-12T12:48:54.272115Z 0 [Note] [MY-000000] [Galera] Member 0.0 (node3) synced with group. +2023-03-12T13:04:23.981207Z 0 [Note] [MY-000000] [Galera] (a689dc26-80dc, 'ssl://0.0.0.0:4567') turning message relay requesting on, nonlive peers: ssl://172.17.0.2:4567 +2023-03-12T13:04:23.984399Z 0 [Note] [MY-000000] [Galera] (a689dc26-80dc, 'ssl://0.0.0.0:4567') connection established to 35b62086-902c ssl://172.17.0.2:4567 +2023-03-12T13:04:24.476576Z 0 [Note] [MY-000000] [Galera] declaring 0509936f-8cc2 at ssl://172.17.0.4:4567 stable +2023-03-12T13:04:24.476642Z 0 [Note] [MY-000000] [Galera] declaring 35b62086-902c at ssl://172.17.0.2:4567 stable +2023-03-12T13:04:24.476867Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T13:04:24.477092Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,5) +memb { + 0509936f-8cc2,0 + 35b62086-902c,0 + a689dc26-80dc,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T13:04:24.477107Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T13:04:24.478964Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 2, memb_num = 3 +2023-03-12T13:04:24.479061Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: Waiting for state UUID. +2023-03-12T13:04:24.479436Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 36031c8e-dc57-11ed-b8a9-2284e0264009 +2023-03-12T13:04:24.479688Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 36031c8e-dc57-11ed-b8a9-2284e0264009 from 0 (node3) +2023-03-12T13:04:24.479714Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 36031c8e-dc57-11ed-b8a9-2284e0264009 from 2 (node2) +2023-03-12T13:04:24.977020Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 36031c8e-dc57-11ed-b8a9-2284e0264009 from 1 (node1) +2023-03-12T13:04:24.977096Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 4, + members = 2/3 (primary/total), + act_id = 170407334, + last_appl. = 170407225, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T13:04:24.977164Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [173, 173] +2023-03-12T13:04:24.977380Z 2 [Note] [MY-000000] [Galera] ####### processing CC 170407335, local, ordered +2023-03-12T13:04:24.977434Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 170407334 upto current CC event 170407335 upto:170407334 +2023-03-12T13:04:24.977442Z 2 [Note] [MY-000000] [Galera] Drain monitors from 170407334 up to 170407334 +2023-03-12T13:04:24.977450Z 2 [Note] [MY-000000] [Galera] ####### My UUID: a689dc26-dc51-11ed-80dc-37422db6f664 +2023-03-12T13:04:24.977458Z 2 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T13:04:24.977465Z 2 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T13:04:24.977471Z 2 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170407334 -> 170407335 +2023-03-12T13:04:24.977544Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T13:04:24.980033Z 2 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407335 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 2 + members(3): + 0: 0509936f-dc55-11ed-8cc2-ba331b939383, node3 + 1: 35b62086-dc57-11ed-902c-32d1f4959542, node1 + 2: a689dc26-dc51-11ed-80dc-37422db6f664, node2 +================================================= +2023-03-12T13:04:24.980064Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:04:24.983147Z 2 [Note] [MY-000000] [Galera] Recording CC from group: 170407335 +2023-03-12T13:04:24.983178Z 2 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 170407226 +2023-03-12T13:04:24.983187Z 2 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403896 +2023-03-12T13:04:25.731909Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403895] < safe_ist_seqno [170403922] +2023-03-12T13:04:25.731994Z 0 [Note] [MY-000000] [Galera] Member 1.0 (node1) requested state transfer from 'node'. Selected 0.0 (node3)(SYNCED) as donor. +2023-03-12T13:04:27.010243Z 0 [Note] [MY-000000] [Galera] (a689dc26-80dc, 'ssl://0.0.0.0:4567') turning message relay requesting off +2023-03-12T13:04:38.645597Z 0 [Note] [MY-000000] [Galera] declaring 0509936f-8cc2 at ssl://172.17.0.4:4567 stable +2023-03-12T13:04:38.645710Z 0 [Note] [MY-000000] [Galera] forgetting 35b62086-902c (ssl://172.17.0.2:4567) +2023-03-12T13:04:38.648020Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T13:04:38.649986Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,6) +memb { + 0509936f-8cc2,0 + a689dc26-80dc,0 + } +joined { + } +left { + } +partitioned { + 35b62086-902c,0 + } +) +2023-03-12T13:04:38.650005Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T13:04:38.652812Z 0 [Note] [MY-000000] [Galera] forgetting 35b62086-902c (ssl://172.17.0.2:4567) +2023-03-12T13:04:38.652875Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 1, memb_num = 2 +2023-03-12T13:04:38.652938Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: Waiting for state UUID. +2023-03-12T13:04:38.653097Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 3e756b7d-dc57-11ed-b66e-ba236937ffa3 +2023-03-12T13:04:38.653244Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 3e756b7d-dc57-11ed-b66e-ba236937ffa3 from 0 (node3) +2023-03-12T13:04:38.653258Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 3e756b7d-dc57-11ed-b66e-ba236937ffa3 from 1 (node2) +2023-03-12T13:04:38.653266Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 5, + members = 2/2 (primary/total), + act_id = 170407335, + last_appl. = 170407225, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T13:04:38.653319Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [141, 141] +2023-03-12T13:04:38.653457Z 2 [Note] [MY-000000] [Galera] ####### processing CC 170407336, local, ordered +2023-03-12T13:04:38.653488Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 170407335 upto current CC event 170407336 upto:170407335 +2023-03-12T13:04:38.653495Z 2 [Note] [MY-000000] [Galera] Drain monitors from 170407335 up to 170407335 +2023-03-12T13:04:38.653503Z 2 [Note] [MY-000000] [Galera] ####### My UUID: a689dc26-dc51-11ed-80dc-37422db6f664 +2023-03-12T13:04:38.653511Z 2 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T13:04:38.653517Z 2 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T13:04:38.653524Z 2 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170407335 -> 170407336 +2023-03-12T13:04:38.653554Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T13:04:38.657029Z 2 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 1 + members(2): + 0: 0509936f-dc55-11ed-8cc2-ba331b939383, node3 + 1: a689dc26-dc51-11ed-80dc-37422db6f664, node2 +================================================= +2023-03-12T13:04:38.657058Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:04:38.659789Z 2 [Note] [MY-000000] [Galera] Recording CC from group: 170407336 +2023-03-12T13:04:38.659814Z 2 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 170407226 +2023-03-12T13:04:38.659820Z 2 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403896 +2023-03-12T13:04:39.720243Z 0 [Warning] [MY-000000] [Galera] Could not find peer: 35b62086-dc57-11ed-902c-32d1f4959542 +2023-03-12T13:04:39.720325Z 0 [Warning] [MY-000000] [Galera] 0.0 (node3): State transfer to -1.-1 (left the group) failed: -22 (Invalid argument) +2023-03-12T13:04:39.720419Z 0 [Note] [MY-000000] [Galera] Member 0.0 (node3) synced with group. +2023-03-12T13:04:44.011735Z 0 [Note] [MY-000000] [Galera] cleaning up 35b62086-902c (ssl://172.17.0.2:4567) +2023-03-12T13:12:02.676517Z 0 [System] [MY-013172] [Server] Received SHUTDOWN from user . Shutting down mysqld (Version: 8.0.28-19.1). +2023-03-12T13:12:02.676601Z 0 [Note] [MY-000000] [WSREP] Received shutdown signal. Will sleep for 10 secs before initiating shutdown. pxc_maint_mode switched to SHUTDOWN +2023-03-12T13:12:12.678056Z 0 [Note] [MY-000000] [WSREP] Shutdown replication +2023-03-12T13:12:12.678118Z 0 [Note] [MY-000000] [WSREP] Server status change synced -> disconnecting +2023-03-12T13:12:12.678159Z 0 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:12:12.678195Z 0 [Note] [MY-000000] [Galera] Closing send monitor... +2023-03-12T13:12:12.678208Z 0 [Note] [MY-000000] [Galera] Closed send monitor. +2023-03-12T13:12:12.678218Z 0 [Note] [MY-000000] [Galera] gcomm: terminating thread +2023-03-12T13:12:12.678231Z 0 [Note] [MY-000000] [Galera] gcomm: joining thread +2023-03-12T13:12:12.678394Z 0 [Note] [MY-000000] [Galera] gcomm: closing backend +2023-03-12T13:12:13.681870Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(NON_PRIM,0509936f-8cc2,6) +memb { + a689dc26-80dc,0 + } +joined { + } +left { + } +partitioned { + 0509936f-8cc2,0 + } +) +2023-03-12T13:12:13.682040Z 0 [Note] [MY-000000] [Galera] PC protocol downgrade 1 -> 0 +2023-03-12T13:12:13.682063Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view ((empty)) +2023-03-12T13:12:13.682241Z 0 [Note] [MY-000000] [Galera] gcomm: closed +2023-03-12T13:12:13.682286Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = no, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T13:12:13.682427Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [100, 100] +2023-03-12T13:12:13.682442Z 0 [Note] [MY-000000] [Galera] Received NON-PRIMARY. +2023-03-12T13:12:13.682450Z 0 [Note] [MY-000000] [Galera] Shifting SYNCED -> OPEN (TO: 170407336) +2023-03-12T13:12:13.682469Z 0 [Note] [MY-000000] [Galera] New SELF-LEAVE. +2023-03-12T13:12:13.682547Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [0, 0] +2023-03-12T13:12:13.682560Z 0 [Note] [MY-000000] [Galera] Received SELF-LEAVE. Closing connection. +2023-03-12T13:12:13.682565Z 0 [Note] [MY-000000] [Galera] Shifting OPEN -> CLOSED (TO: 170407336) +2023-03-12T13:12:13.682566Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 170407336 upto current CC event 170407336 upto:170407336 +2023-03-12T13:12:13.682573Z 0 [Note] [MY-000000] [Galera] RECV thread exiting 0: Success +2023-03-12T13:12:13.682613Z 2 [Note] [MY-000000] [Galera] Drain monitors from 170407336 up to 170407336 +2023-03-12T13:12:13.682652Z 2 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336 + status: non-primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 0 + members(1): + 0: a689dc26-dc51-11ed-80dc-37422db6f664, node2 +================================================= +2023-03-12T13:12:13.682671Z 2 [Note] [MY-000000] [Galera] Non-primary view +2023-03-12T13:12:13.682687Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:12:13.682725Z 0 [Note] [MY-000000] [Galera] recv_thread() joined. +2023-03-12T13:12:13.682743Z 0 [Note] [MY-000000] [Galera] Closing replication queue. +2023-03-12T13:12:13.682749Z 0 [Note] [MY-000000] [Galera] Closing slave action queue. +2023-03-12T13:12:13.682778Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 170407336 upto current CC event 170407336 upto:170407336 +2023-03-12T13:12:13.682787Z 2 [Note] [MY-000000] [Galera] Drain monitors from 170407336 up to 170407336 +2023-03-12T13:12:13.682796Z 2 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336 + status: non-primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: yes + own_index: -1 + members(0): +================================================= +2023-03-12T13:12:13.682810Z 2 [Note] [MY-000000] [Galera] Non-primary view +2023-03-12T13:12:13.682818Z 2 [Note] [MY-000000] [WSREP] Server status change disconnecting -> disconnected +2023-03-12T13:12:13.682824Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:12:13.682831Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:12:13.684338Z 2 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 0 thd: 2 +2023-03-12T13:12:13.684341Z 0 [Note] [MY-000000] [WSREP] Waiting for active wsrep applier to exit +2023-03-12T13:12:13.684372Z 0 [Note] [MY-000000] [WSREP] Waiting for (8) applier thread(s) to terminate +2023-03-12T13:12:13.692656Z 11 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 11 +2023-03-12T13:12:13.692686Z 10 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 10 +2023-03-12T13:12:13.692672Z 12 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 12 +2023-03-12T13:12:13.692687Z 15 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 15 +2023-03-12T13:12:13.692669Z 13 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 13 +2023-03-12T13:12:13.692692Z 14 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 14 +2023-03-12T13:12:13.692696Z 16 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 16 +2023-03-12T13:12:14.684476Z 0 [Note] [MY-000000] [WSREP] All applier thread terminated. Will now terminate rollback thread +2023-03-12T13:12:14.684566Z 0 [Note] [MY-000000] [WSREP] Waiting for rollback thread to terminate +2023-03-12T13:12:14.684601Z 1 [Note] [MY-000000] [WSREP] rollbacker thread exiting 1 +2023-03-12T13:12:15.684681Z 0 [Note] [MY-000000] [WSREP] Rollback thread terminated +2023-03-12T13:12:15.684953Z 0 [Note] [MY-010067] [Server] Giving 5 client threads a chance to die gracefully +2023-03-12T13:12:15.684987Z 0 [Note] [MY-010117] [Server] Shutting down slave threads +2023-03-12T13:12:15.687906Z 0 [Note] [MY-010054] [Server] Event Scheduler: Killing the scheduler thread, thread id 7 +2023-03-12T13:12:15.687946Z 0 [Note] [MY-010050] [Server] Event Scheduler: Waiting for the scheduler thread to reply +2023-03-12T13:12:15.688028Z 0 [Note] [MY-010048] [Server] Event Scheduler: Stopped +2023-03-12T13:12:17.688145Z 0 [Note] [MY-010118] [Server] Forcefully disconnecting 0 remaining clients +2023-03-12T13:12:17.688223Z 0 [Note] [MY-010043] [Server] Event Scheduler: Purging the queue. 0 events +2023-03-12T13:12:17.690886Z 0 [Note] [MY-000000] [Galera] dtor state: CLOSED +2023-03-12T13:12:17.690933Z 0 [Note] [MY-000000] [Galera] MemPool(TrxHandleSlave): hit ratio: 0.918927, misses: 278, in use: 109, in pool: 169 +2023-03-12T13:12:17.692658Z 0 [Note] [MY-000000] [Galera] mon: entered 3429 oooe fraction 0 oool fraction 0 +2023-03-12T13:12:17.694364Z 0 [Note] [MY-000000] [Galera] mon: entered 3429 oooe fraction 0 oool fraction 0 +2023-03-12T13:12:17.696217Z 0 [Note] [MY-000000] [Galera] mon: entered 3468 oooe fraction 0 oool fraction 0 +2023-03-12T13:12:17.696244Z 0 [Note] [MY-000000] [Galera] cert index usage at exit 120 +2023-03-12T13:12:17.696251Z 0 [Note] [MY-000000] [Galera] cert trx map usage at exit 109 +2023-03-12T13:12:17.696256Z 0 [Note] [MY-000000] [Galera] deps set usage at exit 0 +2023-03-12T13:12:17.696262Z 0 [Note] [MY-000000] [Galera] avg deps dist 1 +2023-03-12T13:12:17.696268Z 0 [Note] [MY-000000] [Galera] avg cert interval 0 +2023-03-12T13:12:17.696273Z 0 [Note] [MY-000000] [Galera] cert index size 263 +2023-03-12T13:12:17.696550Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T13:12:17.696597Z 0 [Note] [MY-000000] [Galera] wsdb trx map usage 0 conn query map usage 0 +2023-03-12T13:12:17.696612Z 0 [Note] [MY-000000] [Galera] MemPool(LocalTrxHandle): hit ratio: 0, misses: 0, in use: 0, in pool: 0 +2023-03-12T13:12:17.699035Z 0 [Note] [MY-000000] [Galera] Flushing memory map to disk... +2023-03-12T13:12:17.757866Z 0 [Note] [MY-012330] [InnoDB] FTS optimize thread exiting. +2023-03-12T13:12:18.651832Z 0 [Note] [MY-010120] [Server] Binlog end +2023-03-12T13:12:18.694338Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysqlx' +2023-03-12T13:12:18.694996Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysqlx_cache_cleaner' +2023-03-12T13:12:18.695026Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'ngram' +2023-03-12T13:12:18.695033Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'BLACKHOLE' +2023-03-12T13:12:18.695040Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'ARCHIVE' +2023-03-12T13:12:18.695045Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'TempTable' +2023-03-12T13:12:18.695050Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MRG_MYISAM' +2023-03-12T13:12:18.695056Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MyISAM' +2023-03-12T13:12:18.695065Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CHANGED_PAGES' +2023-03-12T13:12:18.695074Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESPACES_SCRUBBING' +2023-03-12T13:12:18.695079Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESPACES_ENCRYPTION' +2023-03-12T13:12:18.695084Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_SESSION_TEMP_TABLESPACES' +2023-03-12T13:12:18.695088Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CACHED_INDEXES' +2023-03-12T13:12:18.695093Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_VIRTUAL' +2023-03-12T13:12:18.695101Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_COLUMNS' +2023-03-12T13:12:18.695109Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESPACES' +2023-03-12T13:12:18.695114Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_INDEXES' +2023-03-12T13:12:18.695121Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESTATS' +2023-03-12T13:12:18.695127Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLES' +2023-03-12T13:12:18.695134Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_INDEX_TABLE' +2023-03-12T13:12:18.695142Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_INDEX_CACHE' +2023-03-12T13:12:18.695149Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_CONFIG' +2023-03-12T13:12:18.695155Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_BEING_DELETED' +2023-03-12T13:12:18.695162Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_DELETED' +2023-03-12T13:12:18.695171Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD' +2023-03-12T13:12:18.695178Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_METRICS' +2023-03-12T13:12:18.695190Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TEMP_TABLE_INFO' +2023-03-12T13:12:18.695268Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_POOL_STATS' +2023-03-12T13:12:18.695274Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU' +2023-03-12T13:12:18.695278Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_PAGE' +2023-03-12T13:12:18.695284Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET' +2023-03-12T13:12:18.695288Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_PER_INDEX' +2023-03-12T13:12:18.695292Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMPMEM_RESET' +2023-03-12T13:12:18.695296Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMPMEM' +2023-03-12T13:12:18.695301Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_RESET' +2023-03-12T13:12:18.695306Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP' +2023-03-12T13:12:18.695310Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TRX' +2023-03-12T13:12:18.695314Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'InnoDB' +2023-03-12T13:12:18.695347Z 0 [Note] [MY-013072] [InnoDB] Starting shutdown... +2023-03-12T13:12:18.695449Z 0 [Note] [MY-011944] [InnoDB] Dumping buffer pool(s) to /var/lib/mysqlib_buffer_pool +2023-03-12T13:12:18.703368Z 0 [Note] [MY-011944] [InnoDB] Buffer pool(s) dump completed at 230416 15:12:18 +2023-03-12T13:12:18.712780Z 0 [Note] [MY-013084] [InnoDB] Log background threads are being closed... +2023-03-12T13:12:22.954822Z 0 [Note] [MY-012980] [InnoDB] Shutdown completed; log sequence number 35636250795479 +2023-03-12T13:12:22.955675Z 0 [Note] [MY-012255] [InnoDB] Removed temporary tablespace data file: "ibtmp1" +2023-03-12T13:12:22.955714Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MEMORY' +2023-03-12T13:12:22.955732Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'CSV' +2023-03-12T13:12:22.955740Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'PERFORMANCE_SCHEMA' +2023-03-12T13:12:22.955774Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'wsrep' +2023-03-12T13:12:22.955785Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'daemon_keyring_proxy_plugin' +2023-03-12T13:12:22.955803Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'sha2_cache_cleaner' +2023-03-12T13:12:22.955810Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'caching_sha2_password' +2023-03-12T13:12:22.955820Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'sha256_password' +2023-03-12T13:12:22.955824Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysql_native_password' +2023-03-12T13:12:22.956022Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'binlog' +2023-03-12T13:12:22.957837Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.28-19.1) Percona XtraDB Cluster (GPL), Release rel19, Revision f544540, WSREP version 26.4.3. + INFO: Skipping wsrep-recover for 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336 pair + INFO: Assigning 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336 to wsrep_start_position +2023-03-12T13:13:11.495972Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead. +2023-03-12T13:13:11.495987Z 0 [Warning] [MY-011069] [Server] The syntax '--master-info-repository' is deprecated and will be removed in a future release. +2023-03-12T13:13:11.495994Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T13:13:11.496023Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T13:13:11.496033Z 0 [Warning] [MY-011068] [Server] The syntax 'log_slave_updates' is deprecated and will be removed in a future release. Please use log_replica_updates instead. +2023-03-12T13:13:11.496039Z 0 [Warning] [MY-011068] [Server] The syntax 'skip_slave_start' is deprecated and will be removed in a future release. Please use skip_replica_start instead. +2023-03-12T13:13:11.496055Z 0 [Warning] [MY-011068] [Server] The syntax 'wsrep_slave_threads' is deprecated and will be removed in a future release. Please use wsrep_applier_threads instead. +2023-03-12T13:13:11.498115Z 0 [Note] [MY-010949] [Server] Basedir set to /usr/. +2023-03-12T13:13:11.498126Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.28-19.1) starting as process 1753184 +2023-03-12T13:13:11.498952Z 0 [Warning] [MY-013242] [Server] --character-set-server: 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous. +2023-03-12T13:13:11.498959Z 0 [Warning] [MY-013244] [Server] --collation-server: 'utf8_general_ci' is a collation of the deprecated character set UTF8MB3. Please consider using UTF8MB4 with an appropriate collation instead. +2023-03-12T13:13:11.500102Z 0 [Note] [MY-010182] [Server] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +2023-03-12T13:13:11.500211Z 0 [Note] [MY-010304] [Server] Skipping generation of SSL certificates as certificate files are present in data directory. +2023-03-12T13:13:11.501831Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. +2023-03-12T13:13:11.501865Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. +2023-03-12T13:13:11.501881Z 0 [Note] [MY-000000] [WSREP] New joining cluster node configured to use specified SSL artifacts +2023-03-12T13:13:11.501922Z 0 [Note] [MY-000000] [Galera] Loading provider /usr/lib64/libgalera_smm.so initial position: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336 +2023-03-12T13:13:11.501941Z 0 [Note] [MY-000000] [Galera] wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so' +2023-03-12T13:13:11.502452Z 0 [Note] [MY-000000] [Galera] wsrep_load(): Galera 4.11(a9008fc) by Codership Oy (modified by Percona ) loaded successfully. +2023-03-12T13:13:11.502483Z 0 [Note] [MY-000000] [Galera] CRC-32C: using 64-bit x86 acceleration. +2023-03-12T13:13:11.503008Z 0 [Note] [MY-000000] [Galera] Found saved state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336, safe_to_bootstrap: 0 +2023-03-12T13:13:11.503092Z 0 [Note] [MY-000000] [Galera] GCache DEBUG: opened preamble: +Version: 2 +UUID: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +Seqno: 170403896 - 170407336 +Offset: 1280 +Synced: 1 +2023-03-12T13:13:11.503111Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: version: 2, UUID: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049, offset: 1280 +2023-03-12T13:13:11.503170Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer initial scan... 0.0% ( 0/53687091224 bytes) complete. +2023-03-12T13:13:11.503756Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer initial scan...100.0% (53687091224/53687091224 bytes) complete. +2023-03-12T13:13:11.503790Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: found gapless sequence 170403896-170407336 +2023-03-12T13:13:11.503813Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer unused buffers scan... 0.0% ( 0/921920 bytes) complete. +2023-03-12T13:13:11.503865Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer unused buffers scan...100.0% (921920/921920 bytes) complete. +2023-03-12T13:13:11.503876Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: found 5/3446 locked buffers +2023-03-12T13:13:11.503884Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: free space: 53686170280/53687091200 +2023-03-12T13:13:11.504910Z 0 [Warning] [MY-000000] [Galera] Option 'gcs.fc_master_slave' is deprecated and will be removed in the future versions, please use 'gcs.fc_single_primary' instead. +2023-03-12T13:13:11.505518Z 0 [Note] [MY-000000] [Galera] Passing config to GCS: base_dir = /var/lib/mysql; base_host = 172.17.0.3; base_port = 4567; cert.log_conflicts = no; cert.optimistic_pa = no; debug = no; evs.auto_evict = 0; evs.delay_margin = PT1S; evs.delayed_keep_period = PT30S; evs.inactive_check_period = PT0.5S; evs.inactive_timeout = PT15S; evs.join_retrans_period = PT1S; evs.max_install_timeouts = 3; evs.send_window = 10; evs.stats_report_period = PT1M; evs.suspect_timeout = PT5S; evs.user_send_window = 4; evs.view_forget_timeout = PT24H; gcache.dir = /var/lib/mysql; gcache.freeze_purge_at_seqno = -1; gcache.keep_pages_count = 0; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = galera.cache; gcache.page_size = 128M; gcache.recover = yes; gcache.size = 50G; gcomm.thread_prio = ; gcs.fc_debug = 0; gcs.fc_factor = 1.0; gcs.fc_limit = 100; gcs.fc_master_slave = no; gcs.fc_single_primary = no; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = no; gmcast.segment = 0; gmcast.version = 0; pc.announce_timeout = PT3S; pc.checksum = false; pc.ignore_quorum = false; pc.ignore_sb = false; pc.npvo = false; pc.recovery = true; pc.version = 0; pc.wait_prim = true; pc.wait_prim_timeout = PT30S; pc.weight = 1; protonet.backend = asio; protonet.version = 0; repl.causal_read_timeout = PT30S; repl.commit_order = 3; repl.key_format = FLAT8; repl.max_ws_size = 2147483647; repl.proto_max = 10; socket.checksum = 2; socket.recv_buf_size = auto; socket.send_buf_size = auto; socket.ssl = YES; socket.ssl_ca = ca.pem; socket.ssl_cert = server-cert.pem; socket.ssl_cipher = ; socket.ssl_compression = YES; socket.ssl_key = server-key.pem; socket.ssl_reload = 1; +2023-03-12T13:13:11.513594Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T13:13:11.513659Z 0 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336, protocol version: -1 +2023-03-12T13:13:11.513717Z 0 [Note] [MY-000000] [WSREP] Starting replication +2023-03-12T13:13:11.513731Z 0 [Note] [MY-000000] [Galera] Connecting with bootstrap option: 0 +2023-03-12T13:13:11.513746Z 0 [Note] [MY-000000] [Galera] Setting GCS initial position to 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336 +2023-03-12T13:13:11.513780Z 0 [Note] [MY-000000] [Galera] protonet asio version 0 +2023-03-12T13:13:11.514114Z 0 [Note] [MY-000000] [Galera] Using CRC-32C for message checksums. +2023-03-12T13:13:11.514138Z 0 [Note] [MY-000000] [Galera] backend: asio +2023-03-12T13:13:11.514254Z 0 [Note] [MY-000000] [Galera] gcomm thread scheduling priority set to other:0 +2023-03-12T13:13:11.514321Z 0 [Warning] [MY-000000] [Galera] Fail to access the file (/var/lib/mysql/gvwstate.dat) error (No such file or directory). It is possible if node is booting for first time or re-booting after a graceful shutdown +2023-03-12T13:13:11.514333Z 0 [Note] [MY-000000] [Galera] Restoring primary-component from disk failed. Either node is booting for first time or re-booting after a graceful shutdown +2023-03-12T13:13:11.514449Z 0 [Note] [MY-000000] [Galera] GMCast version 0 +2023-03-12T13:13:11.514542Z 0 [Note] [MY-000000] [Galera] (7026494c-a649, 'ssl://0.0.0.0:4567') listening at ssl://0.0.0.0:4567 +2023-03-12T13:13:11.514558Z 0 [Note] [MY-000000] [Galera] (7026494c-a649, 'ssl://0.0.0.0:4567') multicast: , ttl: 1 +2023-03-12T13:13:11.514719Z 0 [Note] [MY-000000] [Galera] EVS version 1 +2023-03-12T13:13:11.514772Z 0 [Note] [MY-000000] [Galera] gcomm: connecting to group 'pxc_cluster', peer '172.17.0.2:,172.17.0.3:,172.17.0.4:' +2023-03-12T13:13:11.518496Z 0 [Note] [MY-000000] [Galera] (7026494c-a649, 'ssl://0.0.0.0:4567') Found matching local endpoint for a connection, blacklisting address ssl://172.17.0.3:4567 +2023-03-12T13:13:11.518717Z 0 [Note] [MY-000000] [Galera] (7026494c-a649, 'ssl://0.0.0.0:4567') connection established to 0509936f-8cc2 ssl://172.17.0.4:4567 +2023-03-12T13:13:11.518769Z 0 [Note] [MY-000000] [Galera] (7026494c-a649, 'ssl://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T13:13:12.015811Z 0 [Note] [MY-000000] [Galera] EVS version upgrade 0 -> 1 +2023-03-12T13:13:12.015863Z 0 [Note] [MY-000000] [Galera] declaring 0509936f-8cc2 at ssl://172.17.0.4:4567 stable +2023-03-12T13:13:12.015880Z 0 [Note] [MY-000000] [Galera] PC protocol upgrade 0 -> 1 +2023-03-12T13:13:12.016025Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T13:13:12.020206Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,8) +memb { + 0509936f-8cc2,0 + 7026494c-a649,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T13:13:12.020225Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T13:13:12.023663Z 0 [Note] [MY-000000] [Galera] discarding pending addr without UUID: ssl://172.17.0.2:4567 +2023-03-12T13:13:12.515295Z 0 [Note] [MY-000000] [Galera] gcomm: connected +2023-03-12T13:13:12.515374Z 0 [Note] [MY-000000] [Galera] Changing maximum packet size to 64500, resulting msg size: 32636 +2023-03-12T13:13:12.515546Z 0 [Note] [MY-000000] [Galera] Shifting CLOSED -> OPEN (TO: 0) +2023-03-12T13:13:12.515560Z 0 [Note] [MY-000000] [Galera] Opened channel 'pxc_cluster' +2023-03-12T13:13:12.515641Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 1, memb_num = 2 +2023-03-12T13:13:12.515695Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: Waiting for state UUID. +2023-03-12T13:13:12.515742Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 707380d8-dc58-11ed-8c42-ffcf34d08917 +2023-03-12T13:13:12.515773Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 707380d8-dc58-11ed-8c42-ffcf34d08917 from 0 (node3) +2023-03-12T13:13:12.515855Z 1 [Note] [MY-000000] [WSREP] Starting rollbacker thread 1 +2023-03-12T13:13:12.515892Z 2 [Note] [MY-000000] [WSREP] Starting applier thread 2 +2023-03-12T13:13:12.516182Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 707380d8-dc58-11ed-8c42-ffcf34d08917 from 1 (node2) +2023-03-12T13:13:12.516202Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 7, + members = 1/2 (primary/total), + act_id = 170407337, + last_appl. = 170407225, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T13:13:12.516237Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [141, 141] +2023-03-12T13:13:12.516249Z 0 [Note] [MY-000000] [Galera] Shifting OPEN -> PRIMARY (TO: 170407338) +2023-03-12T13:13:12.516304Z 2 [Note] [MY-000000] [Galera] ####### processing CC 170407338, local, ordered +2023-03-12T13:13:12.516329Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 170407336 upto current CC event 170407338 upto:170407336 +2023-03-12T13:13:12.516343Z 2 [Note] [MY-000000] [Galera] Drain monitors from 170407336 up to 170407336 +2023-03-12T13:13:12.516359Z 2 [Note] [MY-000000] [Galera] Process first view: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 my uuid: 7026494c-dc58-11ed-a649-76a13e89694d +2023-03-12T13:13:12.516380Z 2 [Note] [MY-000000] [Galera] Server node2 connected to cluster at position 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407338 with ID 7026494c-dc58-11ed-a649-76a13e89694d +2023-03-12T13:13:12.516394Z 2 [Note] [MY-000000] [WSREP] Server status change disconnected -> connected +2023-03-12T13:13:12.516423Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:13:12.516449Z 2 [Note] [MY-000000] [Galera] ####### My UUID: 7026494c-dc58-11ed-a649-76a13e89694d +2023-03-12T13:13:12.516463Z 2 [Note] [MY-000000] [Galera] Cert index reset to 00000000-0000-0000-0000-000000000000:-1 (proto: 10), state transfer needed: yes +2023-03-12T13:13:12.516526Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T13:13:12.516571Z 2 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 00000000-0000-0000-0000-000000000000:-1, protocol version: -1 +2023-03-12T13:13:12.516585Z 2 [Note] [MY-000000] [Galera] State transfer required: + Group state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407338 + Local state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336 +2023-03-12T13:13:12.516594Z 2 [Note] [MY-000000] [WSREP] Server status change connected -> joiner +2023-03-12T13:13:12.516604Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:13:12.516727Z 0 [Note] [MY-000000] [WSREP] Initiating SST/IST transfer on JOINER side (wsrep_sst_xtrabackup-v2 --role 'joiner' --address '172.17.0.3' --datadir '/var/lib/mysql' --basedir '/usr/' --plugindir '/usr/lib64/mysql/plugin/' --defaults-file '/etc/my.cnf' --defaults-group-suffix '' --parent '1753184' --mysqld-version '8.0.28-19.1' '' ) +2023-03-12T13:13:13.245384Z 2 [Note] [MY-000000] [WSREP] Prepared SST request: xtrabackup-v2|172.17.0.3:4444/xtrabackup_sst//1 +2023-03-12T13:13:13.245443Z 2 [Note] [MY-000000] [Galera] Check if state gap can be serviced using IST +2023-03-12T13:13:13.245466Z 2 [Note] [MY-000000] [Galera] ####### IST uuid:9db0bcdf-b31a-11ed-a398-2a4cfdd82049 f: 170407337, l: 170407338, STRv: 3 +2023-03-12T13:13:13.245533Z 2 [Note] [MY-000000] [Galera] IST receiver addr using ssl://172.17.0.3:4568 +2023-03-12T13:13:13.245564Z 2 [Note] [MY-000000] [Galera] IST receiver using ssl +2023-03-12T13:13:13.245723Z 2 [Note] [MY-000000] [Galera] Prepared IST receiver for 170407337-170407338, listening at: ssl://172.17.0.3:4568 +2023-03-12T13:13:13.247714Z 0 [Note] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node'. Selected 0.0 (node3)(SYNCED) as donor. +2023-03-12T13:13:13.247750Z 0 [Note] [MY-000000] [Galera] Shifting PRIMARY -> JOINER (TO: 170407338) +2023-03-12T13:13:13.247793Z 2 [Note] [MY-000000] [Galera] Requesting state transfer: success, donor: 0 +2023-03-12T13:13:13.919087Z 0 [Note] [MY-000000] [WSREP-SST] xtrabackup_ist received from donor: Running IST +2023-03-12T13:13:13.919140Z 0 [Note] [MY-000000] [WSREP-SST] Running post-processing........... +2023-03-12T13:13:13.924754Z 0 [Note] [MY-000000] [WSREP-SST] Skipping mysql_upgrade (ist) +2023-03-12T13:13:13.924940Z 0 [Note] [MY-000000] [WSREP-SST] ...........post-processing done +2023-03-12T13:13:13.926870Z 0 [Note] [MY-000000] [WSREP-SST] Galera co-ords from recovery: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336 +2023-03-12T13:13:13.953188Z 3 [Note] [MY-000000] [Galera] Processing SST received +2023-03-12T13:13:13.953222Z 3 [Note] [MY-000000] [WSREP] Server status change joiner -> initializing +2023-03-12T13:13:13.953254Z 3 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:13:13.954380Z 0 [Warning] [MY-013245] [Server] The SSL library function CRYPTO_set_mem_functions failed. This is typically caused by the SSL library already being used. As a result the SSL memory allocation will not be instrumented. +2023-03-12T13:13:13.955631Z 0 [Note] [MY-012366] [InnoDB] Using Linux native AIO +2023-03-12T13:13:13.955795Z 0 [Note] [MY-010747] [Server] Plugin 'FEDERATED' is disabled. +2023-03-12T13:13:13.956850Z 4 [System] [MY-013576] [InnoDB] InnoDB initialization has started. +2023-03-12T13:13:13.956890Z 4 [Note] [MY-013546] [InnoDB] Atomic write enabled +2023-03-12T13:13:13.956946Z 4 [Note] [MY-012932] [InnoDB] PUNCH HOLE support available +2023-03-12T13:13:13.956971Z 4 [Note] [MY-012944] [InnoDB] Uses event mutexes +2023-03-12T13:13:13.956984Z 4 [Note] [MY-012945] [InnoDB] GCC builtin __atomic_thread_fence() is used for memory barrier +2023-03-12T13:13:13.956998Z 4 [Note] [MY-012948] [InnoDB] Compressed tables use zlib 1.2.11 +2023-03-12T13:13:13.959436Z 4 [Note] [MY-013251] [InnoDB] Number of pools: 1 +2023-03-12T13:13:13.959523Z 4 [Note] [MY-012951] [InnoDB] Using hardware accelerated crc32 and polynomial multiplication. +2023-03-12T13:13:13.959964Z 4 [Note] [MY-012203] [InnoDB] Directories to scan './' +2023-03-12T13:13:13.960010Z 4 [Note] [MY-012204] [InnoDB] Scanning './' +2023-03-12T13:13:14.362243Z 4 [Note] [MY-012208] [InnoDB] Completed space ID check of 3118 files. +2023-03-12T13:13:14.366958Z 4 [Note] [MY-012955] [InnoDB] Initializing buffer pool, total size = 120.000000G, instances = 64, chunk size =128.000000M +2023-03-12T13:13:14.886853Z 0 [Note] [MY-000000] [Galera] 0.0 (node3): State transfer to 1.0 (node2) complete. +2023-03-12T13:13:14.887067Z 0 [Note] [MY-000000] [Galera] Member 0.0 (node3) synced with group. +2023-03-12T13:13:15.015723Z 0 [Note] [MY-000000] [Galera] (7026494c-a649, 'ssl://0.0.0.0:4567') turning message relay requesting off +2023-03-12T13:13:17.974572Z 4 [Note] [MY-012957] [InnoDB] Completed initialization of buffer pool +2023-03-12T13:13:18.225311Z 0 [Note] [MY-011952] [InnoDB] If the mysqld execution user is authorized, page cleaner and LRU manager thread priority can be changed. See the man page of setpriority(). +2023-03-12T13:13:18.228859Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_0.dblwr' for doublewrite +2023-03-12T13:13:18.229722Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_1.dblwr' for doublewrite +2023-03-12T13:13:18.230821Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_2.dblwr' for doublewrite +2023-03-12T13:13:18.231707Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_3.dblwr' for doublewrite +2023-03-12T13:13:18.232683Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_4.dblwr' for doublewrite +2023-03-12T13:13:18.233422Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_5.dblwr' for doublewrite +2023-03-12T13:13:18.234353Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_6.dblwr' for doublewrite +2023-03-12T13:13:18.235065Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_7.dblwr' for doublewrite +2023-03-12T13:13:18.235973Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_8.dblwr' for doublewrite +2023-03-12T13:13:18.236661Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_9.dblwr' for doublewrite +2023-03-12T13:13:18.237561Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_10.dblwr' for doublewrite +2023-03-12T13:13:18.238269Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_11.dblwr' for doublewrite +2023-03-12T13:13:18.239171Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_12.dblwr' for doublewrite +2023-03-12T13:13:18.239871Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_13.dblwr' for doublewrite +2023-03-12T13:13:18.240774Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_14.dblwr' for doublewrite +2023-03-12T13:13:18.241478Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_15.dblwr' for doublewrite +2023-03-12T13:13:18.242391Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_16.dblwr' for doublewrite +2023-03-12T13:13:18.243091Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_17.dblwr' for doublewrite +2023-03-12T13:13:18.244010Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_18.dblwr' for doublewrite +2023-03-12T13:13:18.244687Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_19.dblwr' for doublewrite +2023-03-12T13:13:18.245579Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_20.dblwr' for doublewrite +2023-03-12T13:13:18.246258Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_21.dblwr' for doublewrite +2023-03-12T13:13:18.247140Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_22.dblwr' for doublewrite +2023-03-12T13:13:18.247846Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_23.dblwr' for doublewrite +2023-03-12T13:13:18.248696Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_24.dblwr' for doublewrite +2023-03-12T13:13:18.249357Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_25.dblwr' for doublewrite +2023-03-12T13:13:18.250197Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_26.dblwr' for doublewrite +2023-03-12T13:13:18.250826Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_27.dblwr' for doublewrite +2023-03-12T13:13:18.251633Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_28.dblwr' for doublewrite +2023-03-12T13:13:18.252265Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_29.dblwr' for doublewrite +2023-03-12T13:13:18.253130Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_30.dblwr' for doublewrite +2023-03-12T13:13:18.253769Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_31.dblwr' for doublewrite +2023-03-12T13:13:18.254574Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_32.dblwr' for doublewrite +2023-03-12T13:13:18.255174Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_33.dblwr' for doublewrite +2023-03-12T13:13:18.255960Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_34.dblwr' for doublewrite +2023-03-12T13:13:18.256665Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_35.dblwr' for doublewrite +2023-03-12T13:13:18.257542Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_36.dblwr' for doublewrite +2023-03-12T13:13:18.258242Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_37.dblwr' for doublewrite +2023-03-12T13:13:18.259143Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_38.dblwr' for doublewrite +2023-03-12T13:13:18.259824Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_39.dblwr' for doublewrite +2023-03-12T13:13:18.260697Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_40.dblwr' for doublewrite +2023-03-12T13:13:18.261374Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_41.dblwr' for doublewrite +2023-03-12T13:13:18.262235Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_42.dblwr' for doublewrite +2023-03-12T13:13:18.262936Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_43.dblwr' for doublewrite +2023-03-12T13:13:18.263783Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_44.dblwr' for doublewrite +2023-03-12T13:13:18.264481Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_45.dblwr' for doublewrite +2023-03-12T13:13:18.265363Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_46.dblwr' for doublewrite +2023-03-12T13:13:18.266048Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_47.dblwr' for doublewrite +2023-03-12T13:13:18.266897Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_48.dblwr' for doublewrite +2023-03-12T13:13:18.267574Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_49.dblwr' for doublewrite +2023-03-12T13:13:18.268434Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_50.dblwr' for doublewrite +2023-03-12T13:13:18.269095Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_51.dblwr' for doublewrite +2023-03-12T13:13:18.269950Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_52.dblwr' for doublewrite +2023-03-12T13:13:18.270575Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_53.dblwr' for doublewrite +2023-03-12T13:13:18.271477Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_54.dblwr' for doublewrite +2023-03-12T13:13:18.272180Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_55.dblwr' for doublewrite +2023-03-12T13:13:18.273093Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_56.dblwr' for doublewrite +2023-03-12T13:13:18.273790Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_57.dblwr' for doublewrite +2023-03-12T13:13:18.274725Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_58.dblwr' for doublewrite +2023-03-12T13:13:18.275413Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_59.dblwr' for doublewrite +2023-03-12T13:13:18.276315Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_60.dblwr' for doublewrite +2023-03-12T13:13:18.276957Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_61.dblwr' for doublewrite +2023-03-12T13:13:18.277821Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_62.dblwr' for doublewrite +2023-03-12T13:13:18.278454Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_63.dblwr' for doublewrite +2023-03-12T13:13:18.279232Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_64.dblwr' for doublewrite +2023-03-12T13:13:18.279821Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_65.dblwr' for doublewrite +2023-03-12T13:13:18.280591Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_66.dblwr' for doublewrite +2023-03-12T13:13:18.281157Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_67.dblwr' for doublewrite +2023-03-12T13:13:18.281899Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_68.dblwr' for doublewrite +2023-03-12T13:13:18.282554Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_69.dblwr' for doublewrite +2023-03-12T13:13:18.283417Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_70.dblwr' for doublewrite +2023-03-12T13:13:18.284093Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_71.dblwr' for doublewrite +2023-03-12T13:13:18.284977Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_72.dblwr' for doublewrite +2023-03-12T13:13:18.285656Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_73.dblwr' for doublewrite +2023-03-12T13:13:18.286503Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_74.dblwr' for doublewrite +2023-03-12T13:13:18.287174Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_75.dblwr' for doublewrite +2023-03-12T13:13:18.288042Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_76.dblwr' for doublewrite +2023-03-12T13:13:18.288704Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_77.dblwr' for doublewrite +2023-03-12T13:13:18.289611Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_78.dblwr' for doublewrite +2023-03-12T13:13:18.290289Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_79.dblwr' for doublewrite +2023-03-12T13:13:18.291153Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_80.dblwr' for doublewrite +2023-03-12T13:13:18.291985Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_81.dblwr' for doublewrite +2023-03-12T13:13:18.292842Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_82.dblwr' for doublewrite +2023-03-12T13:13:18.293505Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_83.dblwr' for doublewrite +2023-03-12T13:13:18.294348Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_84.dblwr' for doublewrite +2023-03-12T13:13:18.295031Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_85.dblwr' for doublewrite +2023-03-12T13:13:18.295865Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_86.dblwr' for doublewrite +2023-03-12T13:13:18.296547Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_87.dblwr' for doublewrite +2023-03-12T13:13:18.297400Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_88.dblwr' for doublewrite +2023-03-12T13:13:18.298043Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_89.dblwr' for doublewrite +2023-03-12T13:13:18.298834Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_90.dblwr' for doublewrite +2023-03-12T13:13:18.299462Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_91.dblwr' for doublewrite +2023-03-12T13:13:18.300292Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_92.dblwr' for doublewrite +2023-03-12T13:13:18.300939Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_93.dblwr' for doublewrite +2023-03-12T13:13:18.301740Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_94.dblwr' for doublewrite +2023-03-12T13:13:18.302364Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_95.dblwr' for doublewrite +2023-03-12T13:13:18.303162Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_96.dblwr' for doublewrite +2023-03-12T13:13:18.303778Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_97.dblwr' for doublewrite +2023-03-12T13:13:18.304539Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_98.dblwr' for doublewrite +2023-03-12T13:13:18.305127Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_99.dblwr' for doublewrite +2023-03-12T13:13:18.305884Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_100.dblwr' for doublewrite +2023-03-12T13:13:18.306478Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_101.dblwr' for doublewrite +2023-03-12T13:13:18.307254Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_102.dblwr' for doublewrite +2023-03-12T13:13:18.307842Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_103.dblwr' for doublewrite +2023-03-12T13:13:18.308612Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_104.dblwr' for doublewrite +2023-03-12T13:13:18.309193Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_105.dblwr' for doublewrite +2023-03-12T13:13:18.310016Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_106.dblwr' for doublewrite +2023-03-12T13:13:18.310691Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_107.dblwr' for doublewrite +2023-03-12T13:13:18.311566Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_108.dblwr' for doublewrite +2023-03-12T13:13:18.312248Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_109.dblwr' for doublewrite +2023-03-12T13:13:18.313266Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_110.dblwr' for doublewrite +2023-03-12T13:13:18.314039Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_111.dblwr' for doublewrite +2023-03-12T13:13:18.314887Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_112.dblwr' for doublewrite +2023-03-12T13:13:18.315609Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_113.dblwr' for doublewrite +2023-03-12T13:13:18.316495Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_114.dblwr' for doublewrite +2023-03-12T13:13:18.317204Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_115.dblwr' for doublewrite +2023-03-12T13:13:18.318053Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_116.dblwr' for doublewrite +2023-03-12T13:13:18.318719Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_117.dblwr' for doublewrite +2023-03-12T13:13:18.319568Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_118.dblwr' for doublewrite +2023-03-12T13:13:18.320235Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_119.dblwr' for doublewrite +2023-03-12T13:13:18.321099Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_120.dblwr' for doublewrite +2023-03-12T13:13:18.321760Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_121.dblwr' for doublewrite +2023-03-12T13:13:18.322602Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_122.dblwr' for doublewrite +2023-03-12T13:13:18.323310Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_123.dblwr' for doublewrite +2023-03-12T13:13:18.324147Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_124.dblwr' for doublewrite +2023-03-12T13:13:18.324805Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_125.dblwr' for doublewrite +2023-03-12T13:13:18.325652Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_126.dblwr' for doublewrite +2023-03-12T13:13:18.326275Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_127.dblwr' for doublewrite +2023-03-12T13:13:18.453985Z 4 [Note] [MY-013566] [InnoDB] Double write buffer files: 128 +2023-03-12T13:13:18.454037Z 4 [Note] [MY-013565] [InnoDB] Double write buffer pages per instance: 32 +2023-03-12T13:13:18.454074Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_0.dblwr' for doublewrite +2023-03-12T13:13:18.454105Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_1.dblwr' for doublewrite +2023-03-12T13:13:18.454138Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_2.dblwr' for doublewrite +2023-03-12T13:13:18.454170Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_3.dblwr' for doublewrite +2023-03-12T13:13:18.454203Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_4.dblwr' for doublewrite +2023-03-12T13:13:18.454235Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_5.dblwr' for doublewrite +2023-03-12T13:13:18.454265Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_6.dblwr' for doublewrite +2023-03-12T13:13:18.454295Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_7.dblwr' for doublewrite +2023-03-12T13:13:18.454326Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_8.dblwr' for doublewrite +2023-03-12T13:13:18.454358Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_9.dblwr' for doublewrite +2023-03-12T13:13:18.454390Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_10.dblwr' for doublewrite +2023-03-12T13:13:18.454421Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_11.dblwr' for doublewrite +2023-03-12T13:13:18.454452Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_12.dblwr' for doublewrite +2023-03-12T13:13:18.454484Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_13.dblwr' for doublewrite +2023-03-12T13:13:18.454517Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_14.dblwr' for doublewrite +2023-03-12T13:13:18.454548Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_15.dblwr' for doublewrite +2023-03-12T13:13:18.454577Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_16.dblwr' for doublewrite +2023-03-12T13:13:18.454611Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_17.dblwr' for doublewrite +2023-03-12T13:13:18.454643Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_18.dblwr' for doublewrite +2023-03-12T13:13:18.454673Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_19.dblwr' for doublewrite +2023-03-12T13:13:18.454703Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_20.dblwr' for doublewrite +2023-03-12T13:13:18.454733Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_21.dblwr' for doublewrite +2023-03-12T13:13:18.454762Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_22.dblwr' for doublewrite +2023-03-12T13:13:18.454792Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_23.dblwr' for doublewrite +2023-03-12T13:13:18.454823Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_24.dblwr' for doublewrite +2023-03-12T13:13:18.454854Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_25.dblwr' for doublewrite +2023-03-12T13:13:18.454885Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_26.dblwr' for doublewrite +2023-03-12T13:13:18.454923Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_27.dblwr' for doublewrite +2023-03-12T13:13:18.454956Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_28.dblwr' for doublewrite +2023-03-12T13:13:18.454986Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_29.dblwr' for doublewrite +2023-03-12T13:13:18.455016Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_30.dblwr' for doublewrite +2023-03-12T13:13:18.455061Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_31.dblwr' for doublewrite +2023-03-12T13:13:18.455093Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_32.dblwr' for doublewrite +2023-03-12T13:13:18.455124Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_33.dblwr' for doublewrite +2023-03-12T13:13:18.455154Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_34.dblwr' for doublewrite +2023-03-12T13:13:18.455184Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_35.dblwr' for doublewrite +2023-03-12T13:13:18.455214Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_36.dblwr' for doublewrite +2023-03-12T13:13:18.455244Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_37.dblwr' for doublewrite +2023-03-12T13:13:18.455280Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_38.dblwr' for doublewrite +2023-03-12T13:13:18.455311Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_39.dblwr' for doublewrite +2023-03-12T13:13:18.455341Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_40.dblwr' for doublewrite +2023-03-12T13:13:18.455375Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_41.dblwr' for doublewrite +2023-03-12T13:13:18.455404Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_42.dblwr' for doublewrite +2023-03-12T13:13:18.455435Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_43.dblwr' for doublewrite +2023-03-12T13:13:18.455465Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_44.dblwr' for doublewrite +2023-03-12T13:13:18.455495Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_45.dblwr' for doublewrite +2023-03-12T13:13:18.455524Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_46.dblwr' for doublewrite +2023-03-12T13:13:18.455555Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_47.dblwr' for doublewrite +2023-03-12T13:13:18.455585Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_48.dblwr' for doublewrite +2023-03-12T13:13:18.455615Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_49.dblwr' for doublewrite +2023-03-12T13:13:18.455647Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_50.dblwr' for doublewrite +2023-03-12T13:13:18.455676Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_51.dblwr' for doublewrite +2023-03-12T13:13:18.455707Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_52.dblwr' for doublewrite +2023-03-12T13:13:18.455737Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_53.dblwr' for doublewrite +2023-03-12T13:13:18.455767Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_54.dblwr' for doublewrite +2023-03-12T13:13:18.455796Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_55.dblwr' for doublewrite +2023-03-12T13:13:18.455825Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_56.dblwr' for doublewrite +2023-03-12T13:13:18.455854Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_57.dblwr' for doublewrite +2023-03-12T13:13:18.455884Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_58.dblwr' for doublewrite +2023-03-12T13:13:18.455921Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_59.dblwr' for doublewrite +2023-03-12T13:13:18.455955Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_60.dblwr' for doublewrite +2023-03-12T13:13:18.455985Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_61.dblwr' for doublewrite +2023-03-12T13:13:18.456014Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_62.dblwr' for doublewrite +2023-03-12T13:13:18.456044Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_63.dblwr' for doublewrite +2023-03-12T13:13:18.456073Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_64.dblwr' for doublewrite +2023-03-12T13:13:18.456102Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_65.dblwr' for doublewrite +2023-03-12T13:13:18.456130Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_66.dblwr' for doublewrite +2023-03-12T13:13:18.456160Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_67.dblwr' for doublewrite +2023-03-12T13:13:18.456192Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_68.dblwr' for doublewrite +2023-03-12T13:13:18.456223Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_69.dblwr' for doublewrite +2023-03-12T13:13:18.456252Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_70.dblwr' for doublewrite +2023-03-12T13:13:18.456281Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_71.dblwr' for doublewrite +2023-03-12T13:13:18.456310Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_72.dblwr' for doublewrite +2023-03-12T13:13:18.456340Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_73.dblwr' for doublewrite +2023-03-12T13:13:18.456368Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_74.dblwr' for doublewrite +2023-03-12T13:13:18.456398Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_75.dblwr' for doublewrite +2023-03-12T13:13:18.456429Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_76.dblwr' for doublewrite +2023-03-12T13:13:18.456461Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_77.dblwr' for doublewrite +2023-03-12T13:13:18.456490Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_78.dblwr' for doublewrite +2023-03-12T13:13:18.456521Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_79.dblwr' for doublewrite +2023-03-12T13:13:18.456549Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_80.dblwr' for doublewrite +2023-03-12T13:13:18.456578Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_81.dblwr' for doublewrite +2023-03-12T13:13:18.456608Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_82.dblwr' for doublewrite +2023-03-12T13:13:18.456637Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_83.dblwr' for doublewrite +2023-03-12T13:13:18.456667Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_84.dblwr' for doublewrite +2023-03-12T13:13:18.456699Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_85.dblwr' for doublewrite +2023-03-12T13:13:18.456730Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_86.dblwr' for doublewrite +2023-03-12T13:13:18.456759Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_87.dblwr' for doublewrite +2023-03-12T13:13:18.456790Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_88.dblwr' for doublewrite +2023-03-12T13:13:18.456818Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_89.dblwr' for doublewrite +2023-03-12T13:13:18.456848Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_90.dblwr' for doublewrite +2023-03-12T13:13:18.456877Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_91.dblwr' for doublewrite +2023-03-12T13:13:18.456906Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_92.dblwr' for doublewrite +2023-03-12T13:13:18.456939Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_93.dblwr' for doublewrite +2023-03-12T13:13:18.456972Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_94.dblwr' for doublewrite +2023-03-12T13:13:18.457002Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_95.dblwr' for doublewrite +2023-03-12T13:13:18.457032Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_96.dblwr' for doublewrite +2023-03-12T13:13:18.457062Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_97.dblwr' for doublewrite +2023-03-12T13:13:18.457090Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_98.dblwr' for doublewrite +2023-03-12T13:13:18.457119Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_99.dblwr' for doublewrite +2023-03-12T13:13:18.457149Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_100.dblwr' for doublewrite +2023-03-12T13:13:18.457178Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_101.dblwr' for doublewrite +2023-03-12T13:13:18.457208Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_102.dblwr' for doublewrite +2023-03-12T13:13:18.457238Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_103.dblwr' for doublewrite +2023-03-12T13:13:18.466950Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_104.dblwr' for doublewrite +2023-03-12T13:13:18.466993Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_105.dblwr' for doublewrite +2023-03-12T13:13:18.467025Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_106.dblwr' for doublewrite +2023-03-12T13:13:18.467057Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_107.dblwr' for doublewrite +2023-03-12T13:13:18.467087Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_108.dblwr' for doublewrite +2023-03-12T13:13:18.467117Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_109.dblwr' for doublewrite +2023-03-12T13:13:18.467147Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_110.dblwr' for doublewrite +2023-03-12T13:13:18.467180Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_111.dblwr' for doublewrite +2023-03-12T13:13:18.467211Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_112.dblwr' for doublewrite +2023-03-12T13:13:18.467239Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_113.dblwr' for doublewrite +2023-03-12T13:13:18.467271Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_114.dblwr' for doublewrite +2023-03-12T13:13:18.467300Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_115.dblwr' for doublewrite +2023-03-12T13:13:18.467329Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_116.dblwr' for doublewrite +2023-03-12T13:13:18.467361Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_117.dblwr' for doublewrite +2023-03-12T13:13:18.467391Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_118.dblwr' for doublewrite +2023-03-12T13:13:18.467420Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_119.dblwr' for doublewrite +2023-03-12T13:13:18.467455Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_120.dblwr' for doublewrite +2023-03-12T13:13:18.467485Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_121.dblwr' for doublewrite +2023-03-12T13:13:18.467515Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_122.dblwr' for doublewrite +2023-03-12T13:13:18.467544Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_123.dblwr' for doublewrite +2023-03-12T13:13:18.467573Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_124.dblwr' for doublewrite +2023-03-12T13:13:18.467602Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_125.dblwr' for doublewrite +2023-03-12T13:13:18.467632Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_126.dblwr' for doublewrite +2023-03-12T13:13:18.467661Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_127.dblwr' for doublewrite +2023-03-12T13:13:18.471013Z 4 [Note] [MY-013086] [InnoDB] Starting to parse redo log at lsn = 35636250795071, whereas checkpoint_lsn = 35636250795479 and start_lsn = 35636250795008 +2023-03-12T13:13:18.576529Z 4 [Note] [MY-013083] [InnoDB] Log background threads are being started... +2023-03-12T13:13:18.577229Z 4 [Note] [MY-012532] [InnoDB] Applying a batch of 0 redo log records ... +2023-03-12T13:13:18.577272Z 4 [Note] [MY-012535] [InnoDB] Apply batch completed! +2023-03-12T13:13:18.578039Z 4 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_001'. +2023-03-12T13:13:18.579142Z 4 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_002'. +2023-03-12T13:13:18.581501Z 4 [Note] [MY-012910] [InnoDB] Opened 2 existing undo tablespaces. +2023-03-12T13:13:18.581573Z 4 [Note] [MY-011980] [InnoDB] GTID recovery trx_no: 10986174221 +2023-03-12T13:13:18.588110Z 4 [Note] [MY-013776] [InnoDB] Parallel initialization of rseg complete +2023-03-12T13:13:18.588160Z 4 [Note] [MY-013777] [InnoDB] Time taken to initialize rseg using 4 thread: 6593 ms. +2023-03-12T13:13:18.588292Z 4 [Note] [MY-012923] [InnoDB] Creating shared tablespace for temporary tables +2023-03-12T13:13:18.588379Z 4 [Note] [MY-012265] [InnoDB] Setting file '/var/lib/mysqlibtmp1' size to 12 MB. Physically writing the file full; Please wait ... +2023-03-12T13:13:18.602335Z 4 [Note] [MY-012266] [InnoDB] File '/var/lib/mysqlibtmp1' size is now 12 MB. +2023-03-12T13:13:18.603235Z 4 [Note] [MY-013627] [InnoDB] Scanning temp tablespace dir:'./#innodb_temp/' +2023-03-12T13:13:18.627153Z 4 [Note] [MY-013018] [InnoDB] Created 128 and tracked 128 new rollback segment(s) in the temporary tablespace. 128 are now active. +2023-03-12T13:13:18.627391Z 4 [Note] [MY-012976] [InnoDB] Percona XtraDB (http://www.percona.com) 8.0.28-19 started; log sequence number 35636250795489 +2023-03-12T13:13:18.629090Z 4 [System] [MY-013577] [InnoDB] InnoDB initialization has ended. +2023-03-12T13:13:18.633330Z 4 [Note] [MY-011089] [Server] Data dictionary restarting version '80023'. +2023-03-12T13:13:18.693668Z 4 [Note] [MY-012357] [InnoDB] Reading DD tablespace files +2023-03-12T13:13:18.822322Z 4 [Note] [MY-012356] [InnoDB] Scanned 3120 tablespaces. Validated 3120. +2023-03-12T13:13:18.878330Z 4 [Note] [MY-000000] [WSREP] wsrep_init_schema_and_SR (nil) +2023-03-12T13:13:18.884580Z 4 [System] [MY-000000] [WSREP] PXC upgrade completed successfully +2023-03-12T13:13:18.884662Z 4 [Note] [MY-010006] [Server] Using data dictionary with version '80023'. +2023-03-12T13:13:18.895829Z 0 [Note] [MY-011332] [Server] Plugin mysqlx reported: 'IPv6 is available' +2023-03-12T13:13:18.898864Z 0 [Note] [MY-011323] [Server] Plugin mysqlx reported: 'X Plugin ready for connections. bind-address: '::' port: 33060' +2023-03-12T13:13:18.898896Z 0 [Note] [MY-011323] [Server] Plugin mysqlx reported: 'X Plugin ready for connections. socket: '/var/lib/mysql/mysqlx.sock'' +2023-03-12T13:13:18.910055Z 0 [Note] [MY-010902] [Server] Thread priority attribute setting in Resource Group SQL shall be ignored due to unsupported platform or insufficient privilege. +2023-03-12T13:13:18.924512Z 0 [Note] [MY-012487] [InnoDB] DDL log recovery : begin +2023-03-12T13:13:18.924575Z 0 [Note] [MY-012488] [InnoDB] DDL log recovery : end +2023-03-12T13:13:18.925663Z 0 [Note] [MY-011946] [InnoDB] Loading buffer pool(s) from /var/lib/mysqlib_buffer_pool +2023-03-12T13:13:18.929005Z 0 [Note] [MY-012922] [InnoDB] Waiting for purge to start +2023-03-12T13:13:18.986101Z 0 [Warning] [MY-013829] [Server] Missing data directory for ICU regular expressions: /usr/lib64/mysql/private/. +2023-03-12T13:13:18.989274Z 0 [Note] [MY-010303] [Server] Skipping generation of SSL certificates as options related to SSL are specified. +2023-03-12T13:13:18.989882Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. +2023-03-12T13:13:18.989911Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. +2023-03-12T13:13:18.989942Z 0 [Note] [MY-010308] [Server] Skipping generation of RSA key pair through --sha256_password_auto_generate_rsa_keys as key files are present in data directory. +2023-03-12T13:13:18.989961Z 0 [Note] [MY-010308] [Server] Skipping generation of RSA key pair through --caching_sha2_password_auto_generate_rsa_keys as key files are present in data directory. +2023-03-12T13:13:18.990077Z 0 [Note] [MY-010252] [Server] Server hostname (bind-address): '0.0.0.0'; port: 3306 +2023-03-12T13:13:18.990099Z 0 [Note] [MY-010264] [Server] - '0.0.0.0' resolves to '0.0.0.0'; +2023-03-12T13:13:18.990123Z 0 [Note] [MY-010251] [Server] Server socket created on IP: '0.0.0.0'. +2023-03-12T13:13:19.020751Z 0 [Warning] [MY-010533] [Repl] Error during --relay-log-recovery: Could not locate rotate event from the master. +2023-03-12T13:13:19.020804Z 0 [Warning] [MY-013504] [Repl] Server was not able to find a rotate event from master server to initialize relay log recovery for channel ''. Skipping relay log recovery for the channel. +2023-03-12T13:13:19.031164Z 0 [Note] [MY-000000] [WSREP] Initialized wsrep sidno 2 +2023-03-12T13:13:19.031202Z 0 [Note] [MY-000000] [Galera] Server initialized +2023-03-12T13:13:19.031218Z 0 [Note] [MY-000000] [WSREP] Server status change initializing -> initialized +2023-03-12T13:13:19.031229Z 8 [Note] [MY-010051] [Server] Event Scheduler: scheduler thread started with id 8 +2023-03-12T13:13:19.031282Z 0 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:13:19.031367Z 3 [Note] [MY-000000] [Galera] Recovered position from storage: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336 +2023-03-12T13:13:19.035186Z 3 [Note] [MY-000000] [Galera] Recovered view from SST: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: -1 + members(2): + 0: 0509936f-dc55-11ed-8cc2-ba331b939383, node3 + 1: a689dc26-dc51-11ed-80dc-37422db6f664, node2 + +2023-03-12T13:13:19.035221Z 12 [Note] [MY-000000] [WSREP] Starting applier thread 12 +2023-03-12T13:13:19.035232Z 3 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:13:19.035269Z 14 [Note] [MY-000000] [WSREP] Starting applier thread 14 +2023-03-12T13:13:19.035293Z 15 [Note] [MY-000000] [WSREP] Starting applier thread 15 +2023-03-12T13:13:19.035243Z 13 [Note] [MY-000000] [WSREP] Starting applier thread 13 +2023-03-12T13:13:19.035275Z 0 [Note] [MY-011240] [Server] Plugin mysqlx reported: 'Using SSL configuration from MySQL Server' +2023-03-12T13:13:19.035234Z 10 [Note] [MY-000000] [WSREP] Starting applier thread 10 +2023-03-12T13:13:19.035233Z 11 [Note] [MY-000000] [WSREP] Starting applier thread 11 +2023-03-12T13:13:19.035308Z 16 [Note] [MY-000000] [WSREP] Starting applier thread 16 +2023-03-12T13:13:19.035378Z 17 [Note] [MY-000000] [WSREP] Recovered cluster id 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T13:13:19.035861Z 0 [Note] [MY-011243] [Server] Plugin mysqlx reported: 'Using OpenSSL for TLS connections' +2023-03-12T13:13:19.036018Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Bind-address: '::' port: 33060, socket: /var/lib/mysql/mysqlx.sock +2023-03-12T13:13:19.036106Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.28-19.1' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), Release rel19, Revision f544540, WSREP version 26.4.3. +2023-03-12T13:13:19.038457Z 3 [Note] [MY-000000] [Galera] SST received: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336 +2023-03-12T13:13:19.038488Z 3 [System] [MY-000000] [WSREP] SST completed +2023-03-12T13:13:19.038535Z 2 [Note] [MY-000000] [Galera] str_proto_ver_: 3 sst_seqno_: 170407336 cc_seqno: 170407338 req->ist_len(): 81 +2023-03-12T13:13:19.038586Z 2 [Note] [MY-000000] [Galera] Installed new state from SST: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336 +2023-03-12T13:13:19.146840Z 2 [Note] [MY-000000] [Galera] Receiving IST: 2 writesets, seqnos 170407337-170407338 +2023-03-12T13:13:19.146941Z 0 [Note] [MY-000000] [Galera] ####### IST applying starts with 170407337 +2023-03-12T13:13:19.147052Z 0 [Note] [MY-000000] [Galera] ####### IST current seqno initialized to 170407226 +2023-03-12T13:13:19.147103Z 0 [Note] [MY-000000] [Galera] Receiving IST... 0.0% ( 0/113 events) complete. +2023-03-12T13:13:19.147115Z 0 [Note] [MY-000000] [Galera] IST preload starting at 170407226 +2023-03-12T13:13:19.147157Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T13:13:19.147204Z 0 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 00000000-0000-0000-0000-000000000000:170407225, protocol version: 5 +2023-03-12T13:13:19.147931Z 0 [Note] [MY-000000] [Galera] ####### Passing IST CC 170407335, must_apply: 0, preload: true +2023-03-12T13:13:19.147962Z 0 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T13:13:19.147971Z 0 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170407334 -> 170407335 +2023-03-12T13:13:19.147995Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T13:13:19.148018Z 0 [Note] [MY-000000] [Galera] Recording CC from preload: 170407335 +2023-03-12T13:13:19.148031Z 0 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from preload: 170407226 +2023-03-12T13:13:19.148037Z 0 [Note] [MY-000000] [Galera] Min available from gcache for CC from preload: 170403896 +2023-03-12T13:13:19.148051Z 0 [Note] [MY-000000] [Galera] ####### Passing IST CC 170407336, must_apply: 0, preload: true +2023-03-12T13:13:19.148066Z 0 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T13:13:19.148072Z 0 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170407335 -> 170407336 +2023-03-12T13:13:19.148087Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T13:13:19.148109Z 0 [Note] [MY-000000] [Galera] Recording CC from preload: 170407336 +2023-03-12T13:13:19.148117Z 0 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from preload: 170407226 +2023-03-12T13:13:19.148122Z 0 [Note] [MY-000000] [Galera] Min available from gcache for CC from preload: 170403896 +2023-03-12T13:13:19.148153Z 0 [Note] [MY-000000] [Galera] ####### Passing IST CC 170407337, must_apply: 1, preload: true +2023-03-12T13:13:19.148172Z 0 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T13:13:19.148183Z 0 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170407336 -> 170407337 +2023-03-12T13:13:19.148205Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T13:13:19.148235Z 0 [Note] [MY-000000] [Galera] Recording CC from ist: 170407337 +2023-03-12T13:13:19.148248Z 0 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from ist: 170407226 +2023-03-12T13:13:19.148254Z 0 [Note] [MY-000000] [Galera] Min available from gcache for CC from ist: 170403896 +2023-03-12T13:13:19.148289Z 0 [Note] [MY-000000] [Galera] ####### Passing IST CC 170407338, must_apply: 1, preload: true +2023-03-12T13:13:19.148308Z 12 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407337 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: -1 + members(1): + 0: 0509936f-dc55-11ed-8cc2-ba331b939383, node3 +================================================= +2023-03-12T13:13:19.148365Z 12 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:13:19.152584Z 0 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T13:13:19.152614Z 0 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170407337 -> 170407338 +2023-03-12T13:13:19.152636Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T13:13:19.152668Z 0 [Note] [MY-000000] [Galera] Recording CC from ist: 170407338 +2023-03-12T13:13:19.152680Z 0 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from ist: 170407226 +2023-03-12T13:13:19.152685Z 0 [Note] [MY-000000] [Galera] Min available from gcache for CC from ist: 170403896 +2023-03-12T13:13:19.152715Z 0 [Note] [MY-000000] [Galera] Receiving IST...100.0% (113/113 events) complete. +2023-03-12T13:13:19.152730Z 14 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407338 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 1 + members(2): + 0: 0509936f-dc55-11ed-8cc2-ba331b939383, node3 + 1: 7026494c-dc58-11ed-a649-76a13e89694d, node2 +================================================= +2023-03-12T13:13:19.152765Z 14 [Note] [MY-000000] [WSREP] Server status change initialized -> joined +2023-03-12T13:13:19.152795Z 14 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:13:19.152813Z 14 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:13:19.153034Z 2 [Note] [MY-000000] [Galera] Draining apply monitors after IST up to 170407338 +2023-03-12T13:13:19.156722Z 2 [Note] [MY-000000] [Galera] IST received: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407338 +2023-03-12T13:13:19.158477Z 2 [Note] [MY-000000] [Galera] Recording CC from sst: 170407338 +2023-03-12T13:13:19.158507Z 2 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from sst: 170407226 +2023-03-12T13:13:19.158535Z 2 [Note] [MY-000000] [Galera] Min available from gcache for CC from sst: 170403896 +2023-03-12T13:13:19.158801Z 0 [Note] [MY-000000] [Galera] 1.0 (node2): State transfer from 0.0 (node3) complete. +2023-03-12T13:13:19.158831Z 0 [Note] [MY-000000] [Galera] SST leaving flow control +2023-03-12T13:13:19.158840Z 0 [Note] [MY-000000] [Galera] Shifting JOINER -> JOINED (TO: 170407338) +2023-03-12T13:13:19.158866Z 0 [Note] [MY-000000] [Galera] Processing event queue:... -nan% (0/0 events) complete. +2023-03-12T13:13:19.159025Z 0 [Note] [MY-000000] [Galera] Member 1.0 (node2) synced with group. +2023-03-12T13:13:19.159046Z 0 [Note] [MY-000000] [Galera] Processing event queue:...100.0% (1/1 events) complete. +2023-03-12T13:13:19.159057Z 0 [Note] [MY-000000] [Galera] Shifting JOINED -> SYNCED (TO: 170407338) +2023-03-12T13:13:19.159076Z 2 [Note] [MY-000000] [Galera] Server node2 synced with group +2023-03-12T13:13:19.159094Z 2 [Note] [MY-000000] [WSREP] Server status change joined -> synced +2023-03-12T13:13:19.159110Z 2 [Note] [MY-000000] [WSREP] Synchronized with group, ready for connections +2023-03-12T13:13:19.159117Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:13:21.304969Z 0 [Note] [MY-011946] [InnoDB] Buffer pool(s) load completed at 230416 15:13:21 +2023-03-12T13:14:09.772618Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:11.271576Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:12.771763Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:14.271907Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:15.772418Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:17.272161Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:18.772333Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:20.272403Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:21.772492Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:23.272943Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:24.772966Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:26.273484Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:27.773166Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:29.273317Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:30.773494Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:32.273521Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:33.773681Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:35.273771Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:36.773847Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:38.274157Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:39.774260Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:41.274288Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:42.774698Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:17.119311Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:18.619279Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:20.119704Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:21.619720Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:23.119826Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:24.620660Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:26.119936Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:27.620705Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:29.120307Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:30.620790Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:32.120609Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:33.620685Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:35.120824Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:36.621034Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:38.121095Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:39.621265Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:41.121418Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:42.621486Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:44.121699Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:45.621890Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:47.121967Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:48.622083Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:50.122144Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T19:35:05.878879Z 0 [Note] [MY-000000] [Galera] (7026494c-a649, 'ssl://0.0.0.0:4567') connection established to ca2c2a5f-a82a ssl://172.17.0.2:4567 +2023-03-12T19:35:05.881333Z 0 [Note] [MY-000000] [Galera] (7026494c-a649, 'ssl://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T19:35:06.376016Z 0 [Note] [MY-000000] [Galera] declaring 0509936f-8cc2 at ssl://172.17.0.4:4567 stable +2023-03-12T19:35:06.376081Z 0 [Note] [MY-000000] [Galera] declaring ca2c2a5f-a82a at ssl://172.17.0.2:4567 stable +2023-03-12T19:35:06.376348Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T19:35:06.376599Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,9) +memb { + 0509936f-8cc2,0 + 7026494c-a649,0 + ca2c2a5f-a82a,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T19:35:06.376612Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T19:35:06.383186Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 1, memb_num = 3 +2023-03-12T19:35:06.383224Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: Waiting for state UUID. +2023-03-12T19:35:06.383463Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.383501Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.383533Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.383561Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.383618Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.383624Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.383639Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.383644Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.383649Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.383654Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.383658Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.383663Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.383667Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.383672Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.383676Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.383681Z 0 [Warning] [MY-000000] [Galera] Action message in non-primary configuration from member 0 +2023-03-12T19:35:06.385974Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: ca7a22c9-dc8d-11ed-964b-af60786b1721 +2023-03-12T19:35:06.386143Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ca7a22c9-dc8d-11ed-964b-af60786b1721 from 0 (node3) +2023-03-12T19:35:06.386155Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ca7a22c9-dc8d-11ed-964b-af60786b1721 from 1 (node2) +2023-03-12T19:35:06.876494Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ca7a22c9-dc8d-11ed-964b-af60786b1721 from 2 (node1) +2023-03-12T19:35:06.876546Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 8, + members = 2/3 (primary/total), + act_id = 178226773, + last_appl. = 178226713, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T19:35:06.876620Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [173, 173] +2023-03-12T19:35:06.876838Z 10 [Note] [MY-000000] [Galera] ####### processing CC 178226774, local, ordered +2023-03-12T19:35:06.876891Z 10 [Note] [MY-000000] [Galera] Maybe drain monitors from 178226773 upto current CC event 178226774 upto:178226773 +2023-03-12T19:35:06.876898Z 10 [Note] [MY-000000] [Galera] Drain monitors from 178226773 up to 178226773 +2023-03-12T19:35:06.876907Z 10 [Note] [MY-000000] [Galera] ####### My UUID: 7026494c-dc58-11ed-a649-76a13e89694d +2023-03-12T19:35:06.876927Z 10 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T19:35:06.876951Z 10 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T19:35:06.876958Z 10 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 178226773 -> 178226774 +2023-03-12T19:35:06.876999Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T19:35:06.887587Z 10 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226774 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 1 + members(3): + 0: 0509936f-dc55-11ed-8cc2-ba331b939383, node3 + 1: 7026494c-dc58-11ed-a649-76a13e89694d, node2 + 2: ca2c2a5f-dc8d-11ed-a82a-ebad461f7ad9, node1 +================================================= +2023-03-12T19:35:06.887668Z 10 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T19:35:06.895044Z 10 [Note] [MY-000000] [Galera] Recording CC from group: 178226774 +2023-03-12T19:35:06.895084Z 10 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 178226714 +2023-03-12T19:35:06.895092Z 10 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403896 +2023-03-12T19:35:07.644687Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:35:07.644740Z 0 [Note] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node'. Selected 0.0 (node3)(SYNCED) as donor. +2023-03-12T19:35:09.155329Z 0 [Note] [MY-000000] [Galera] (7026494c-a649, 'ssl://0.0.0.0:4567') turning message relay requesting off +2023-03-12T19:36:48.590280Z 0 [Note] [MY-000000] [Galera] declaring 0509936f-8cc2 at ssl://172.17.0.4:4567 stable +2023-03-12T19:36:48.590388Z 0 [Note] [MY-000000] [Galera] forgetting ca2c2a5f-a82a (ssl://172.17.0.2:4567) +2023-03-12T19:36:48.590598Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T19:36:48.598093Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,10) +memb { + 0509936f-8cc2,0 + 7026494c-a649,0 + } +joined { + } +left { + } +partitioned { + ca2c2a5f-a82a,0 + } +) +2023-03-12T19:36:48.598111Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T19:36:48.604279Z 0 [Note] [MY-000000] [Galera] forgetting ca2c2a5f-a82a (ssl://172.17.0.2:4567) +2023-03-12T19:36:48.604341Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 1, memb_num = 2 +2023-03-12T19:36:48.604393Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: Waiting for state UUID. +2023-03-12T19:36:48.604532Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 076681ec-dc8e-11ed-95fc-de68239e7adb +2023-03-12T19:36:48.604664Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 076681ec-dc8e-11ed-95fc-de68239e7adb from 0 (node3) +2023-03-12T19:36:48.604677Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 076681ec-dc8e-11ed-95fc-de68239e7adb from 1 (node2) +2023-03-12T19:36:48.604685Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 9, + members = 2/2 (primary/total), + act_id = 178226790, + last_appl. = 178226713, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T19:36:48.604743Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [141, 141] +2023-03-12T19:36:48.604873Z 10 [Note] [MY-000000] [Galera] ####### processing CC 178226791, local, ordered +2023-03-12T19:36:48.604905Z 10 [Note] [MY-000000] [Galera] Maybe drain monitors from 178226790 upto current CC event 178226791 upto:178226790 +2023-03-12T19:36:48.604913Z 10 [Note] [MY-000000] [Galera] Drain monitors from 178226790 up to 178226790 +2023-03-12T19:36:48.604939Z 10 [Note] [MY-000000] [Galera] ####### My UUID: 7026494c-dc58-11ed-a649-76a13e89694d +2023-03-12T19:36:48.604947Z 10 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T19:36:48.604953Z 10 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T19:36:48.604960Z 10 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 178226790 -> 178226791 +2023-03-12T19:36:48.605012Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T19:36:48.615792Z 10 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226791 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 1 + members(2): + 0: 0509936f-dc55-11ed-8cc2-ba331b939383, node3 + 1: 7026494c-dc58-11ed-a649-76a13e89694d, node2 +================================================= +2023-03-12T19:36:48.615822Z 10 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T19:36:48.622218Z 10 [Note] [MY-000000] [Galera] Recording CC from group: 178226791 +2023-03-12T19:36:48.622242Z 10 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 178226714 +2023-03-12T19:36:48.622248Z 10 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403896 +2023-03-12T19:36:53.669715Z 0 [Note] [MY-000000] [Galera] cleaning up ca2c2a5f-a82a (ssl://172.17.0.2:4567) +2023-03-12T19:43:17.133926Z 0 [Note] [MY-000000] [Galera] (7026494c-a649, 'ssl://0.0.0.0:4567') connection established to eefb9c8a-b69a ssl://172.17.0.2:4567 +2023-03-12T19:43:17.134164Z 0 [Note] [MY-000000] [Galera] (7026494c-a649, 'ssl://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T19:43:17.630191Z 0 [Note] [MY-000000] [Galera] declaring 0509936f-8cc2 at ssl://172.17.0.4:4567 stable +2023-03-12T19:43:17.630243Z 0 [Note] [MY-000000] [Galera] declaring eefb9c8a-b69a at ssl://172.17.0.2:4567 stable +2023-03-12T19:43:17.634758Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T19:43:17.635099Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,11) +memb { + 0509936f-8cc2,0 + 7026494c-a649,0 + eefb9c8a-b69a,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T19:43:17.635114Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T19:43:17.643210Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 1, memb_num = 3 +2023-03-12T19:43:17.643271Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: Waiting for state UUID. +2023-03-12T19:43:17.648850Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: ef4ae07b-dc8e-11ed-92ad-47fe88dd637c +2023-03-12T19:43:17.648998Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ef4ae07b-dc8e-11ed-92ad-47fe88dd637c from 0 (node3) +2023-03-12T19:43:17.649013Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ef4ae07b-dc8e-11ed-92ad-47fe88dd637c from 1 (node2) +2023-03-12T19:43:18.130940Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ef4ae07b-dc8e-11ed-92ad-47fe88dd637c from 2 (node1) +2023-03-12T19:43:18.131007Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 10, + members = 2/3 (primary/total), + act_id = 178226791, + last_appl. = 178226713, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T19:43:18.131069Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [173, 173] +2023-03-12T19:43:18.131191Z 10 [Note] [MY-000000] [Galera] ####### processing CC 178226792, local, ordered +2023-03-12T19:43:18.131237Z 10 [Note] [MY-000000] [Galera] Maybe drain monitors from 178226791 upto current CC event 178226792 upto:178226791 +2023-03-12T19:43:18.131244Z 10 [Note] [MY-000000] [Galera] Drain monitors from 178226791 up to 178226791 +2023-03-12T19:43:18.131253Z 10 [Note] [MY-000000] [Galera] ####### My UUID: 7026494c-dc58-11ed-a649-76a13e89694d +2023-03-12T19:43:18.131260Z 10 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T19:43:18.131266Z 10 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T19:43:18.131274Z 10 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 178226791 -> 178226792 +2023-03-12T19:43:18.131317Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T19:43:18.145296Z 10 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226792 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 1 + members(3): + 0: 0509936f-dc55-11ed-8cc2-ba331b939383, node3 + 1: 7026494c-dc58-11ed-a649-76a13e89694d, node2 + 2: eefb9c8a-dc8e-11ed-b69a-5ff81ce70855, node1 +================================================= +2023-03-12T19:43:18.145325Z 10 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T19:43:18.155751Z 10 [Note] [MY-000000] [Galera] Recording CC from group: 178226792 +2023-03-12T19:43:18.155775Z 10 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 178226714 +2023-03-12T19:43:18.155782Z 10 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403896 +2023-03-12T19:43:18.913483Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:18.913565Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:19.914293Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:19.914362Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:20.219182Z 0 [Note] [MY-000000] [Galera] (7026494c-a649, 'ssl://0.0.0.0:4567') turning message relay requesting off +2023-03-12T19:43:20.915171Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:20.915262Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:21.916137Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:21.916208Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:22.917115Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:22.917173Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:23.918011Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:23.918107Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:24.918950Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:24.919020Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:25.919854Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:25.919941Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:26.920811Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:26.920881Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:27.921777Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:27.921847Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:28.922696Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:28.922763Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:29.923574Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:29.923645Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:30.924557Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:30.924629Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:31.925373Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:31.925432Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:32.926254Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:32.926320Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:33.927176Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:33.927237Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:34.928053Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:34.928126Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:35.928901Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:35.928992Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:36.929675Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:36.929735Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:37.930561Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:37.930627Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:38.931379Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:38.931438Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:39.932333Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:39.932394Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:40.933112Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:40.933178Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:41.933898Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:41.933973Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:42.934792Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:42.934870Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:43.935575Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:43.935643Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:44.936406Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:44.936473Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:45.937267Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:45.937323Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:46.938061Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:46.938124Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:47.938935Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:47.939004Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:48.939783Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:48.939850Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:49.940678Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:49.940750Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:50.941561Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:50.941627Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:51.942535Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:51.942594Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:52.943376Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:52.943449Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:53.944280Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:53.944354Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:54.945140Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:54.945208Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:55.945988Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:55.946059Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:56.946950Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:56.947016Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:57.947810Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:57.947866Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:58.948710Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:58.948783Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:59.949660Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:59.949717Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:00.950461Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:00.950531Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:01.951260Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:01.951324Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:02.952165Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:02.952233Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:03.953095Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:03.953151Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:04.953983Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:04.954050Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:05.954797Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:05.954867Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:06.955705Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:06.955773Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:07.956619Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:07.956687Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:08.957496Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:08.957567Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:09.958427Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:09.958488Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:10.959265Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:10.959333Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:11.960270Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:11.960331Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:12.961108Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:12.961178Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:13.961969Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:13.962038Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:14.962807Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:14.962876Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:15.963695Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:15.963750Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:16.964584Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:16.964656Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:17.965501Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:17.965570Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:18.966313Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:18.966380Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:19.967122Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:19.967192Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:20.967992Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:20.968049Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:21.968814Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:21.968876Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:22.969589Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:22.969657Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:23.971610Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:23.971681Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:24.972341Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:24.972412Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:25.973041Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:25.973111Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:26.973784Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:26.973852Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:27.974532Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:27.974589Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:28.975324Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:28.975393Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:29.976164Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:29.976236Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:30.976968Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:30.977038Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:31.977791Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:31.977869Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:32.978599Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:32.978666Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:33.979336Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:33.979393Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:34.980060Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:34.980128Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:35.980842Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:35.980908Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:36.981671Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:36.981732Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:37.982381Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:37.982453Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:38.983224Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:38.983290Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:39.984109Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:39.984168Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:40.985164Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:40.985220Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:41.985946Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:41.986010Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:42.986774Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:42.986842Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:43.987619Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:43.987688Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:44.988490Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:44.988569Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:45.989261Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:45.989319Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:46.990057Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:46.990126Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:47.990764Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:47.990837Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:48.991546Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:48.991615Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:49.992255Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:49.992319Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:50.993031Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:50.993097Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:51.993785Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:51.993841Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:52.994495Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:52.994562Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:53.995319Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:53.995385Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:54.996075Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:54.996142Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:55.996852Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:55.996929Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:56.997651Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:56.997717Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:57.999040Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:57.999097Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:58.999820Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:58.999891Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:59.840933Z 0 [Note] [MY-000000] [Galera] declaring 0509936f-8cc2 at ssl://172.17.0.4:4567 stable +2023-03-12T19:44:59.841034Z 0 [Note] [MY-000000] [Galera] forgetting eefb9c8a-b69a (ssl://172.17.0.2:4567) +2023-03-12T19:44:59.841248Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T19:44:59.848765Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,12) +memb { + 0509936f-8cc2,0 + 7026494c-a649,0 + } +joined { + } +left { + } +partitioned { + eefb9c8a-b69a,0 + } +) +2023-03-12T19:44:59.848796Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T19:44:59.855443Z 0 [Note] [MY-000000] [Galera] forgetting eefb9c8a-b69a (ssl://172.17.0.2:4567) +2023-03-12T19:44:59.855491Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 1, memb_num = 2 +2023-03-12T19:44:59.855546Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: Waiting for state UUID. +2023-03-12T19:44:59.855733Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 2c3566a1-dc8f-11ed-a833-dec0bb0819e1 +2023-03-12T19:44:59.855876Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 2c3566a1-dc8f-11ed-a833-dec0bb0819e1 from 0 (node3) +2023-03-12T19:44:59.855890Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 2c3566a1-dc8f-11ed-a833-dec0bb0819e1 from 1 (node2) +2023-03-12T19:44:59.855897Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 11, + members = 2/2 (primary/total), + act_id = 178226792, + last_appl. = 178226713, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T19:44:59.855939Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [141, 141] +2023-03-12T19:44:59.856081Z 10 [Note] [MY-000000] [Galera] ####### processing CC 178226793, local, ordered +2023-03-12T19:44:59.856107Z 10 [Note] [MY-000000] [Galera] Maybe drain monitors from 178226792 upto current CC event 178226793 upto:178226792 +2023-03-12T19:44:59.856115Z 10 [Note] [MY-000000] [Galera] Drain monitors from 178226792 up to 178226792 +2023-03-12T19:44:59.856123Z 10 [Note] [MY-000000] [Galera] ####### My UUID: 7026494c-dc58-11ed-a649-76a13e89694d +2023-03-12T19:44:59.856130Z 10 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T19:44:59.856136Z 10 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T19:44:59.856143Z 10 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 178226792 -> 178226793 +2023-03-12T19:44:59.856196Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T19:44:59.869127Z 10 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226793 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 1 + members(2): + 0: 0509936f-dc55-11ed-8cc2-ba331b939383, node3 + 1: 7026494c-dc58-11ed-a649-76a13e89694d, node2 +================================================= +2023-03-12T19:44:59.869162Z 10 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T19:44:59.878447Z 10 [Note] [MY-000000] [Galera] Recording CC from group: 178226793 +2023-03-12T19:44:59.878471Z 10 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 178226714 +2023-03-12T19:44:59.878478Z 10 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403896 +2023-03-12T19:45:05.231002Z 0 [Note] [MY-000000] [Galera] cleaning up eefb9c8a-b69a (ssl://172.17.0.2:4567) +2023-03-12T21:55:48.916258Z 0 [System] [MY-013172] [Server] Received SHUTDOWN from user . Shutting down mysqld (Version: 8.0.28-19.1). +2023-03-12T21:55:48.916323Z 0 [Note] [MY-000000] [WSREP] Received shutdown signal. Will sleep for 10 secs before initiating shutdown. pxc_maint_mode switched to SHUTDOWN +2023-03-12T21:55:58.917472Z 0 [Note] [MY-000000] [WSREP] Shutdown replication +2023-03-12T21:55:58.917539Z 0 [Note] [MY-000000] [WSREP] Server status change synced -> disconnecting +2023-03-12T21:55:58.917580Z 0 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T21:55:58.917611Z 0 [Note] [MY-000000] [Galera] Closing send monitor... +2023-03-12T21:55:58.917625Z 0 [Note] [MY-000000] [Galera] Closed send monitor. +2023-03-12T21:55:58.917635Z 0 [Note] [MY-000000] [Galera] gcomm: terminating thread +2023-03-12T21:55:58.917652Z 0 [Note] [MY-000000] [Galera] gcomm: joining thread +2023-03-12T21:55:58.917934Z 0 [Note] [MY-000000] [Galera] gcomm: closing backend +2023-03-12T21:55:59.925207Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(NON_PRIM,0509936f-8cc2,12) +memb { + 7026494c-a649,0 + } +joined { + } +left { + } +partitioned { + 0509936f-8cc2,0 + } +) +2023-03-12T21:55:59.925294Z 0 [Note] [MY-000000] [Galera] PC protocol downgrade 1 -> 0 +2023-03-12T21:55:59.925313Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view ((empty)) +2023-03-12T21:55:59.925511Z 0 [Note] [MY-000000] [Galera] gcomm: closed +2023-03-12T21:55:59.925551Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = no, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T21:55:59.925660Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [100, 100] +2023-03-12T21:55:59.925675Z 0 [Note] [MY-000000] [Galera] Received NON-PRIMARY. +2023-03-12T21:55:59.925682Z 0 [Note] [MY-000000] [Galera] Shifting SYNCED -> OPEN (TO: 178226796) +2023-03-12T21:55:59.925700Z 0 [Note] [MY-000000] [Galera] New SELF-LEAVE. +2023-03-12T21:55:59.925714Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [0, 0] +2023-03-12T21:55:59.925720Z 0 [Note] [MY-000000] [Galera] Received SELF-LEAVE. Closing connection. +2023-03-12T21:55:59.925725Z 0 [Note] [MY-000000] [Galera] Shifting OPEN -> CLOSED (TO: 178226796) +2023-03-12T21:55:59.925740Z 0 [Note] [MY-000000] [Galera] RECV thread exiting 0: Success +2023-03-12T21:55:59.925947Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 178226796 upto current CC event 178226796 upto:178226796 +2023-03-12T21:55:59.925992Z 2 [Note] [MY-000000] [Galera] Drain monitors from 178226796 up to 178226796 +2023-03-12T21:55:59.926020Z 2 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226796 + status: non-primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 0 + members(1): + 0: 7026494c-dc58-11ed-a649-76a13e89694d, node2 +================================================= +2023-03-12T21:55:59.926024Z 0 [Note] [MY-000000] [Galera] recv_thread() joined. +2023-03-12T21:55:59.926055Z 0 [Note] [MY-000000] [Galera] Closing replication queue. +2023-03-12T21:55:59.926037Z 2 [Note] [MY-000000] [Galera] Non-primary view +2023-03-12T21:55:59.926065Z 0 [Note] [MY-000000] [Galera] Closing slave action queue. +2023-03-12T21:55:59.926155Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T21:55:59.926207Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 178226796 upto current CC event 178226796 upto:178226796 +2023-03-12T21:55:59.926216Z 2 [Note] [MY-000000] [Galera] Drain monitors from 178226796 up to 178226796 +2023-03-12T21:55:59.926226Z 2 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226796 + status: non-primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: yes + own_index: -1 + members(0): +================================================= +2023-03-12T21:55:59.926232Z 2 [Note] [MY-000000] [Galera] Non-primary view +2023-03-12T21:55:59.926241Z 2 [Note] [MY-000000] [WSREP] Server status change disconnecting -> disconnected +2023-03-12T21:55:59.926248Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T21:55:59.926254Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T21:55:59.928970Z 2 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 0 thd: 2 +2023-03-12T21:55:59.928976Z 0 [Note] [MY-000000] [WSREP] Waiting for active wsrep applier to exit +2023-03-12T21:55:59.929008Z 0 [Note] [MY-000000] [WSREP] Waiting for (8) applier thread(s) to terminate +2023-03-12T21:55:59.935976Z 12 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 12 +2023-03-12T21:55:59.936029Z 15 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 15 +2023-03-12T21:55:59.936058Z 14 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 14 +2023-03-12T21:55:59.935990Z 13 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 13 +2023-03-12T21:55:59.936001Z 16 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 16 +2023-03-12T21:55:59.936000Z 10 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 10 +2023-03-12T21:55:59.936043Z 11 [Note] [MY-000000] [WSREP] Applier thread exiting ret: 6 thd: 11 +2023-03-12T21:56:00.929126Z 0 [Note] [MY-000000] [WSREP] All applier thread terminated. Will now terminate rollback thread +2023-03-12T21:56:00.929228Z 0 [Note] [MY-000000] [WSREP] Waiting for rollback thread to terminate +2023-03-12T21:56:00.929286Z 1 [Note] [MY-000000] [WSREP] rollbacker thread exiting 1 +2023-03-12T21:56:01.929339Z 0 [Note] [MY-000000] [WSREP] Rollback thread terminated +2023-03-12T21:56:01.929636Z 0 [Note] [MY-010067] [Server] Giving 5 client threads a chance to die gracefully +2023-03-12T21:56:01.929674Z 0 [Note] [MY-010117] [Server] Shutting down slave threads +2023-03-12T21:56:01.930436Z 0 [Note] [MY-010054] [Server] Event Scheduler: Killing the scheduler thread, thread id 8 +2023-03-12T21:56:01.930460Z 0 [Note] [MY-010050] [Server] Event Scheduler: Waiting for the scheduler thread to reply +2023-03-12T21:56:01.930539Z 0 [Note] [MY-010048] [Server] Event Scheduler: Stopped +2023-03-12T21:56:03.930678Z 0 [Note] [MY-010118] [Server] Forcefully disconnecting 2 remaining clients +2023-03-12T21:56:03.930824Z 0 [Warning] [MY-010909] [Server] /usr/sbin/mysqld: Forcing close of thread 19 user: 'pxcmonitor'. +2023-03-12T21:56:03.931011Z 0 [Warning] [MY-010909] [Server] /usr/sbin/mysqld: Forcing close of thread 22 user: 'pxcmonitor'. +2023-03-12T21:56:03.931130Z 0 [Note] [MY-010043] [Server] Event Scheduler: Purging the queue. 0 events +2023-03-12T21:56:03.944953Z 0 [Note] [MY-000000] [Galera] dtor state: CLOSED +2023-03-12T21:56:03.944988Z 0 [Note] [MY-000000] [Galera] MemPool(TrxHandleSlave): hit ratio: 0.999956, misses: 344, in use: 79, in pool: 265 +2023-03-12T21:56:03.947306Z 0 [Note] [MY-000000] [Galera] mon: entered 7819456 oooe fraction 0 oool fraction 0 +2023-03-12T21:56:03.949736Z 0 [Note] [MY-000000] [Galera] mon: entered 7819456 oooe fraction 0.612553 oool fraction 0.10201 +2023-03-12T21:56:03.951973Z 0 [Note] [MY-000000] [Galera] mon: entered 8071205 oooe fraction 0 oool fraction 1.23897e-07 +2023-03-12T21:56:03.952003Z 0 [Note] [MY-000000] [Galera] cert index usage at exit 812 +2023-03-12T21:56:03.952011Z 0 [Note] [MY-000000] [Galera] cert trx map usage at exit 79 +2023-03-12T21:56:03.952018Z 0 [Note] [MY-000000] [Galera] deps set usage at exit 0 +2023-03-12T21:56:03.952025Z 0 [Note] [MY-000000] [Galera] avg deps dist 9.31711 +2023-03-12T21:56:03.952032Z 0 [Note] [MY-000000] [Galera] avg cert interval 2383.69 +2023-03-12T21:56:03.952038Z 0 [Note] [MY-000000] [Galera] cert index size 812 +2023-03-12T21:56:03.952833Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T21:56:03.957138Z 0 [Note] [MY-000000] [Galera] wsdb trx map usage 0 conn query map usage 0 +2023-03-12T21:56:03.957181Z 0 [Note] [MY-000000] [Galera] MemPool(LocalTrxHandle): hit ratio: 0, misses: 1, in use: 0, in pool: 1 +2023-03-12T21:56:03.969103Z 0 [Note] [MY-000000] [Galera] Flushing memory map to disk... +2023-03-12T21:56:04.402273Z 0 [Note] [MY-012330] [InnoDB] FTS optimize thread exiting. +2023-03-12T21:56:04.708020Z 0 [Note] [MY-010120] [Server] Binlog end +2023-03-12T21:56:04.737381Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysqlx' +2023-03-12T21:56:04.738181Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysqlx_cache_cleaner' +2023-03-12T21:56:04.738208Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'ngram' +2023-03-12T21:56:04.738219Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'BLACKHOLE' +2023-03-12T21:56:04.738229Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'ARCHIVE' +2023-03-12T21:56:04.738240Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'TempTable' +2023-03-12T21:56:04.738245Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MRG_MYISAM' +2023-03-12T21:56:04.738251Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MyISAM' +2023-03-12T21:56:04.738267Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CHANGED_PAGES' +2023-03-12T21:56:04.738276Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESPACES_SCRUBBING' +2023-03-12T21:56:04.738282Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESPACES_ENCRYPTION' +2023-03-12T21:56:04.738288Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_SESSION_TEMP_TABLESPACES' +2023-03-12T21:56:04.738293Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CACHED_INDEXES' +2023-03-12T21:56:04.738299Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_VIRTUAL' +2023-03-12T21:56:04.738303Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_COLUMNS' +2023-03-12T21:56:04.738308Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESPACES' +2023-03-12T21:56:04.738313Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_INDEXES' +2023-03-12T21:56:04.738318Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLESTATS' +2023-03-12T21:56:04.738322Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TABLES' +2023-03-12T21:56:04.738327Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_INDEX_TABLE' +2023-03-12T21:56:04.738332Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_INDEX_CACHE' +2023-03-12T21:56:04.738338Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_CONFIG' +2023-03-12T21:56:04.738343Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_BEING_DELETED' +2023-03-12T21:56:04.738348Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_DELETED' +2023-03-12T21:56:04.738354Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD' +2023-03-12T21:56:04.738360Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_METRICS' +2023-03-12T21:56:04.738365Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TEMP_TABLE_INFO' +2023-03-12T21:56:04.738370Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_POOL_STATS' +2023-03-12T21:56:04.738376Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU' +2023-03-12T21:56:04.738381Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_BUFFER_PAGE' +2023-03-12T21:56:04.738397Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET' +2023-03-12T21:56:04.738404Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_PER_INDEX' +2023-03-12T21:56:04.738409Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMPMEM_RESET' +2023-03-12T21:56:04.738414Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMPMEM' +2023-03-12T21:56:04.738421Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP_RESET' +2023-03-12T21:56:04.738426Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_CMP' +2023-03-12T21:56:04.738432Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'INNODB_TRX' +2023-03-12T21:56:04.738437Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'InnoDB' +2023-03-12T21:56:04.738465Z 0 [Note] [MY-013072] [InnoDB] Starting shutdown... +2023-03-12T21:56:04.738660Z 0 [Note] [MY-011944] [InnoDB] Dumping buffer pool(s) to /var/lib/mysqlib_buffer_pool +2023-03-12T21:56:04.981939Z 0 [Note] [MY-011944] [InnoDB] Buffer pool(s) dump completed at 230416 23:56:04 +2023-03-12T21:56:05.492508Z 0 [Note] [MY-013084] [InnoDB] Log background threads are being closed... +2023-03-12T21:56:16.996381Z 0 [Note] [MY-012980] [InnoDB] Shutdown completed; log sequence number 35686909519351 +2023-03-12T21:56:16.996785Z 0 [Note] [MY-012255] [InnoDB] Removed temporary tablespace data file: "ibtmp1" +2023-03-12T21:56:16.996856Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'MEMORY' +2023-03-12T21:56:16.996880Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'CSV' +2023-03-12T21:56:16.996890Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'PERFORMANCE_SCHEMA' +2023-03-12T21:56:16.996945Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'wsrep' +2023-03-12T21:56:16.996959Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'daemon_keyring_proxy_plugin' +2023-03-12T21:56:16.997465Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'sha2_cache_cleaner' +2023-03-12T21:56:16.997493Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'caching_sha2_password' +2023-03-12T21:56:16.997506Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'sha256_password' +2023-03-12T21:56:16.997515Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'mysql_native_password' +2023-03-12T21:56:16.997756Z 0 [Note] [MY-010733] [Server] Shutting down plugin 'binlog' +2023-03-12T21:56:17.004067Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.28-19.1) Percona XtraDB Cluster (GPL), Release rel19, Revision f544540, WSREP version 26.4.3. + INFO: Skipping wsrep-recover for 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226796 pair + INFO: Assigning 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226796 to wsrep_start_position +2023-03-12T21:58:39.511623Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead. +2023-03-12T21:58:39.511639Z 0 [Warning] [MY-011069] [Server] The syntax '--master-info-repository' is deprecated and will be removed in a future release. +2023-03-12T21:58:39.511646Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T21:58:39.511676Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T21:58:39.511686Z 0 [Warning] [MY-011068] [Server] The syntax 'log_slave_updates' is deprecated and will be removed in a future release. Please use log_replica_updates instead. +2023-03-12T21:58:39.511693Z 0 [Warning] [MY-011068] [Server] The syntax 'skip_slave_start' is deprecated and will be removed in a future release. Please use skip_replica_start instead. +2023-03-12T21:58:39.511709Z 0 [Warning] [MY-011068] [Server] The syntax 'wsrep_slave_threads' is deprecated and will be removed in a future release. Please use wsrep_applier_threads instead. +2023-03-12T21:58:39.513880Z 0 [Note] [MY-010949] [Server] Basedir set to /usr/. +2023-03-12T21:58:39.513891Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.28-19.1) starting as process 1766624 +2023-03-12T21:58:39.514739Z 0 [Warning] [MY-013242] [Server] --character-set-server: 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous. +2023-03-12T21:58:39.514745Z 0 [Warning] [MY-013244] [Server] --collation-server: 'utf8_general_ci' is a collation of the deprecated character set UTF8MB3. Please consider using UTF8MB4 with an appropriate collation instead. +2023-03-12T21:58:39.517411Z 0 [Note] [MY-010182] [Server] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +2023-03-12T21:58:39.517525Z 0 [Note] [MY-010304] [Server] Skipping generation of SSL certificates as certificate files are present in data directory. +2023-03-12T21:58:39.523441Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. +2023-03-12T21:58:39.523477Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. +2023-03-12T21:58:39.523488Z 0 [Note] [MY-000000] [WSREP] New joining cluster node configured to use specified SSL artifacts +2023-03-12T21:58:39.523524Z 0 [Note] [MY-000000] [Galera] Loading provider /usr/lib64/libgalera_smm.so initial position: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226796 +2023-03-12T21:58:39.523542Z 0 [Note] [MY-000000] [Galera] wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so' +2023-03-12T21:58:39.524155Z 0 [Note] [MY-000000] [Galera] wsrep_load(): Galera 4.11(a9008fc) by Codership Oy (modified by Percona ) loaded successfully. +2023-03-12T21:58:39.524192Z 0 [Note] [MY-000000] [Galera] CRC-32C: using 64-bit x86 acceleration. +2023-03-12T21:58:39.524722Z 0 [Note] [MY-000000] [Galera] Found saved state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226796, safe_to_bootstrap: 0 +2023-03-12T21:58:39.524814Z 0 [Note] [MY-000000] [Galera] GCache DEBUG: opened preamble: +Version: 2 +UUID: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +Seqno: 170403896 - 178226796 +Offset: 1280 +Synced: 1 +2023-03-12T21:58:39.524835Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: version: 2, UUID: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049, offset: 1280 +2023-03-12T21:58:39.524899Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer initial scan... 0.0% ( 0/53687091224 bytes) complete. +2023-03-12T21:58:43.503470Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer initial scan...100.0% (53687091224/53687091224 bytes) complete. +2023-03-12T21:58:43.651720Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: found gapless sequence 170403896-178226796 +2023-03-12T21:58:43.651824Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer unused buffers scan... 0.0% ( 0/17477746024 bytes) complete. +2023-03-12T21:58:44.370541Z 0 [Note] [MY-000000] [Galera] GCache::RingBuffer unused buffers scan...100.0% (17477746024/17477746024 bytes) complete. +2023-03-12T21:58:44.370600Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: found 109/7823010 locked buffers +2023-03-12T21:58:44.370612Z 0 [Note] [MY-000000] [Galera] Recovering GCache ring buffer: free space: 36209367016/53687091200 +2023-03-12T21:58:44.371561Z 0 [Warning] [MY-000000] [Galera] Option 'gcs.fc_master_slave' is deprecated and will be removed in the future versions, please use 'gcs.fc_single_primary' instead. +2023-03-12T21:58:44.372314Z 0 [Note] [MY-000000] [Galera] Passing config to GCS: base_dir = /var/lib/mysql; base_host = 172.17.0.3; base_port = 4567; cert.log_conflicts = no; cert.optimistic_pa = no; debug = no; evs.auto_evict = 0; evs.delay_margin = PT1S; evs.delayed_keep_period = PT30S; evs.inactive_check_period = PT0.5S; evs.inactive_timeout = PT15S; evs.join_retrans_period = PT1S; evs.max_install_timeouts = 3; evs.send_window = 10; evs.stats_report_period = PT1M; evs.suspect_timeout = PT5S; evs.user_send_window = 4; evs.view_forget_timeout = PT24H; gcache.dir = /var/lib/mysql; gcache.freeze_purge_at_seqno = -1; gcache.keep_pages_count = 0; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = galera.cache; gcache.page_size = 128M; gcache.recover = yes; gcache.size = 50G; gcomm.thread_prio = ; gcs.fc_debug = 0; gcs.fc_factor = 1.0; gcs.fc_limit = 100; gcs.fc_master_slave = no; gcs.fc_single_primary = no; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = no; gmcast.segment = 0; gmcast.version = 0; pc.announce_timeout = PT3S; pc.checksum = false; pc.ignore_quorum = false; pc.ignore_sb = false; pc.npvo = false; pc.recovery = true; pc.version = 0; pc.wait_prim = true; pc.wait_prim_timeout = PT30S; pc.weight = 1; protonet.backend = asio; protonet.version = 0; repl.causal_read_timeout = PT30S; repl.commit_order = 3; repl.key_format = FLAT8; repl.max_ws_size = 2147483647; repl.proto_max = 10; socket.checksum = 2; socket.recv_buf_size = auto; socket.send_buf_size = auto; socket.ssl = YES; socket.ssl_ca = ca.pem; socket.ssl_cert = server-cert.pem; socket.ssl_cipher = ; socket.ssl_compression = YES; socket.ssl_key = server-key.pem; socket.ssl_reload = 1; +2023-03-12T21:58:44.382103Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T21:58:44.382786Z 0 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226796, protocol version: -1 +2023-03-12T21:58:44.382857Z 0 [Note] [MY-000000] [WSREP] Starting replication +2023-03-12T21:58:44.382873Z 0 [Note] [MY-000000] [Galera] Connecting with bootstrap option: 0 +2023-03-12T21:58:44.382888Z 0 [Note] [MY-000000] [Galera] Setting GCS initial position to 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226796 +2023-03-12T21:58:44.382940Z 0 [Note] [MY-000000] [Galera] protonet asio version 0 +2023-03-12T21:58:44.383333Z 0 [Note] [MY-000000] [Galera] Using CRC-32C for message checksums. +2023-03-12T21:58:44.383356Z 0 [Note] [MY-000000] [Galera] backend: asio +2023-03-12T21:58:44.383464Z 0 [Note] [MY-000000] [Galera] gcomm thread scheduling priority set to other:0 +2023-03-12T21:58:44.383546Z 0 [Warning] [MY-000000] [Galera] Fail to access the file (/var/lib/mysql/gvwstate.dat) error (No such file or directory). It is possible if node is booting for first time or re-booting after a graceful shutdown +2023-03-12T21:58:44.383560Z 0 [Note] [MY-000000] [Galera] Restoring primary-component from disk failed. Either node is booting for first time or re-booting after a graceful shutdown +2023-03-12T21:58:44.383672Z 0 [Note] [MY-000000] [Galera] GMCast version 0 +2023-03-12T21:58:44.383780Z 0 [Note] [MY-000000] [Galera] (db344985-8b41, 'ssl://0.0.0.0:4567') listening at ssl://0.0.0.0:4567 +2023-03-12T21:58:44.383793Z 0 [Note] [MY-000000] [Galera] (db344985-8b41, 'ssl://0.0.0.0:4567') multicast: , ttl: 1 +2023-03-12T21:58:44.383975Z 0 [Note] [MY-000000] [Galera] EVS version 1 +2023-03-12T21:58:44.384034Z 0 [Note] [MY-000000] [Galera] gcomm: connecting to group 'pxc_cluster', peer '172.17.0.2:,172.17.0.3:,172.17.0.4:' +2023-03-12T21:58:44.387771Z 0 [Note] [MY-000000] [Galera] (db344985-8b41, 'ssl://0.0.0.0:4567') Found matching local endpoint for a connection, blacklisting address ssl://172.17.0.3:4567 +2023-03-12T21:58:44.388622Z 0 [Note] [MY-000000] [Galera] (db344985-8b41, 'ssl://0.0.0.0:4567') connection established to 0509936f-8cc2 ssl://172.17.0.4:4567 +2023-03-12T21:58:44.388685Z 0 [Note] [MY-000000] [Galera] (db344985-8b41, 'ssl://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T21:58:44.885129Z 0 [Note] [MY-000000] [Galera] EVS version upgrade 0 -> 1 +2023-03-12T21:58:44.885179Z 0 [Note] [MY-000000] [Galera] declaring 0509936f-8cc2 at ssl://172.17.0.4:4567 stable +2023-03-12T21:58:44.885197Z 0 [Note] [MY-000000] [Galera] PC protocol upgrade 0 -> 1 +2023-03-12T21:58:44.885340Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T21:58:44.888114Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,14) +memb { + 0509936f-8cc2,0 + db344985-8b41,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T21:58:44.888141Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T21:58:44.893178Z 0 [Note] [MY-000000] [Galera] discarding pending addr without UUID: ssl://172.17.0.2:4567 +2023-03-12T21:58:45.384512Z 0 [Note] [MY-000000] [Galera] gcomm: connected +2023-03-12T21:58:45.384580Z 0 [Note] [MY-000000] [Galera] Changing maximum packet size to 64500, resulting msg size: 32636 +2023-03-12T21:58:45.384740Z 0 [Note] [MY-000000] [Galera] Shifting CLOSED -> OPEN (TO: 0) +2023-03-12T21:58:45.384753Z 0 [Note] [MY-000000] [Galera] Opened channel 'pxc_cluster' +2023-03-12T21:58:45.384861Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 1, memb_num = 2 +2023-03-12T21:58:45.384913Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: Waiting for state UUID. +2023-03-12T21:58:45.384968Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: db814216-dca1-11ed-aa7e-4b87ee079a22 +2023-03-12T21:58:45.384990Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: db814216-dca1-11ed-aa7e-4b87ee079a22 from 0 (node3) +2023-03-12T21:58:45.385073Z 1 [Note] [MY-000000] [WSREP] Starting rollbacker thread 1 +2023-03-12T21:58:45.385140Z 2 [Note] [MY-000000] [WSREP] Starting applier thread 2 +2023-03-12T21:58:45.385436Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: db814216-dca1-11ed-aa7e-4b87ee079a22 from 1 (node2) +2023-03-12T21:58:45.385453Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 13, + members = 1/2 (primary/total), + act_id = 178226797, + last_appl. = 178226713, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T21:58:45.385495Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [141, 141] +2023-03-12T21:58:45.385505Z 0 [Note] [MY-000000] [Galera] Shifting OPEN -> PRIMARY (TO: 178226798) +2023-03-12T21:58:45.385559Z 2 [Note] [MY-000000] [Galera] ####### processing CC 178226798, local, ordered +2023-03-12T21:58:45.385579Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 178226796 upto current CC event 178226798 upto:178226796 +2023-03-12T21:58:45.385594Z 2 [Note] [MY-000000] [Galera] Drain monitors from 178226796 up to 178226796 +2023-03-12T21:58:45.385612Z 2 [Note] [MY-000000] [Galera] Process first view: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 my uuid: db344985-dca1-11ed-8b41-77164eda7f87 +2023-03-12T21:58:45.385635Z 2 [Note] [MY-000000] [Galera] Server node2 connected to cluster at position 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226798 with ID db344985-dca1-11ed-8b41-77164eda7f87 +2023-03-12T21:58:45.385649Z 2 [Note] [MY-000000] [WSREP] Server status change disconnected -> connected +2023-03-12T21:58:45.385680Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T21:58:45.385706Z 2 [Note] [MY-000000] [Galera] ####### My UUID: db344985-dca1-11ed-8b41-77164eda7f87 +2023-03-12T21:58:45.385721Z 2 [Note] [MY-000000] [Galera] Cert index reset to 00000000-0000-0000-0000-000000000000:-1 (proto: 10), state transfer needed: yes +2023-03-12T21:58:45.385783Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T21:58:45.385826Z 2 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 00000000-0000-0000-0000-000000000000:-1, protocol version: -1 +2023-03-12T21:58:45.385839Z 2 [Note] [MY-000000] [Galera] State transfer required: + Group state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226798 + Local state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226796 +2023-03-12T21:58:45.385848Z 2 [Note] [MY-000000] [WSREP] Server status change connected -> joiner +2023-03-12T21:58:45.385858Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T21:58:45.386026Z 0 [Note] [MY-000000] [WSREP] Initiating SST/IST transfer on JOINER side (wsrep_sst_xtrabackup-v2 --role 'joiner' --address '172.17.0.3' --datadir '/var/lib/mysql' --basedir '/usr/' --plugindir '/usr/lib64/mysql/plugin/' --defaults-file '/etc/my.cnf' --defaults-group-suffix '' --parent '1766624' --mysqld-version '8.0.28-19.1' '' ) +2023-03-12T21:58:46.154797Z 2 [Note] [MY-000000] [WSREP] Prepared SST request: xtrabackup-v2|172.17.0.3:4444/xtrabackup_sst//1 +2023-03-12T21:58:46.154863Z 2 [Note] [MY-000000] [Galera] Check if state gap can be serviced using IST +2023-03-12T21:58:46.154886Z 2 [Note] [MY-000000] [Galera] ####### IST uuid:9db0bcdf-b31a-11ed-a398-2a4cfdd82049 f: 178226797, l: 178226798, STRv: 3 +2023-03-12T21:58:46.154972Z 2 [Note] [MY-000000] [Galera] IST receiver addr using ssl://172.17.0.3:4568 +2023-03-12T21:58:46.155006Z 2 [Note] [MY-000000] [Galera] IST receiver using ssl +2023-03-12T21:58:46.155159Z 2 [Note] [MY-000000] [Galera] Prepared IST receiver for 178226797-178226798, listening at: ssl://172.17.0.3:4568 +2023-03-12T21:58:46.160014Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:46.160077Z 2 [Note] [MY-000000] [Galera] Requesting state transfer failed: -11(Resource temporarily unavailable). Will keep retrying every 1 second(s) +2023-03-12T21:58:47.160758Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:47.884860Z 0 [Note] [MY-000000] [Galera] (db344985-8b41, 'ssl://0.0.0.0:4567') turning message relay requesting off +2023-03-12T21:58:48.161544Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:49.162253Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:50.162971Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:51.163805Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:52.164645Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:53.165491Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:54.166632Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:55.167461Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:56.168233Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:57.169007Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:58.169817Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:59.170596Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:00.171456Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:01.172311Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:02.173215Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:03.174051Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:04.175236Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:05.176180Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:06.177020Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:07.177864Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:08.178751Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:09.179585Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:10.180327Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:11.181085Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:12.182310Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:13.183120Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:14.183897Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:15.184624Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:16.185387Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:17.186182Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:18.186958Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:19.187789Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:20.188612Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:21.189392Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:22.190267Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:23.191089Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:24.191951Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:25.192747Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:26.193959Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:27.194756Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:28.195533Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:29.196364Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:30.197303Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:31.198100Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:32.198971Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:33.199787Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:34.200503Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:35.201246Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:36.201958Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:37.202689Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:38.203503Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:39.204220Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:40.204938Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:41.205632Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:42.206334Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:43.207042Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:44.207752Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:45.208428Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:46.209139Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:47.209864Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:48.210620Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:49.211342Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:50.211980Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:51.212614Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:52.213316Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:53.213999Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:54.214666Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:55.215367Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:56.216100Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:57.216783Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:58.217458Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:59.218100Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:00.218795Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:01.219535Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:02.220249Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:03.220980Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:04.221676Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:05.222375Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:06.223029Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:07.223731Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:08.224363Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:09.225006Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:10.225692Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:11.226387Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:12.227096Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:13.227770Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:14.228532Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:15.229214Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:16.229888Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:17.230600Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:18.231340Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:19.232061Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:20.232812Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:21.233552Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:22.234226Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:23.234859Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:24.235607Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:25.236356Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:26.050532Z 0 [Note] [MY-000000] [WSREP-SST] Trying to terminate (1767094) socat -u openssl-listen:4444,reuseaddr,cert=/var/lib/mysqlserver-cert.pem,key=/var/lib/mysqlserver-key.pem,cafile=/var/lib/mysqlca.pem,verify=1,retry=30 stdio | /usr/bin/pxc_extra/pxb-8.0/bin/xbstream -x with SIGTERM +2023-03-12T22:00:26.064295Z 0 [Note] [MY-000000] [WSREP-SST] /usr/bin/wsrep_sst_xtrabackup-v2: line 212: 1767096 Exit 143 socat -u openssl-listen:4444,reuseaddr,cert=/var/lib/mysqlserver-cert.pem,key=/var/lib/mysqlserver-key.pem,cafile=/var/lib/mysqlca.pem,verify=1,retry=30 stdio +2023-03-12T22:00:26.064350Z 0 [Note] [MY-000000] [WSREP-SST] 1767097 Terminated | /usr/bin/pxc_extra/pxb-8.0/bin/xbstream -x +2023-03-12T22:00:26.237093Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:27.066885Z 0 [ERROR] [MY-000000] [WSREP-SST] ******************* FATAL ERROR ********************** +2023-03-12T22:00:27.067645Z 0 [ERROR] [MY-000000] [WSREP-SST] Possible timeout in receving first data from donor in gtid/keyring stage +2023-03-12T22:00:27.067672Z 0 [ERROR] [MY-000000] [WSREP-SST] Line 1304 +2023-03-12T22:00:27.067682Z 0 [ERROR] [MY-000000] [WSREP-SST] ****************************************************** +2023-03-12T22:00:27.067694Z 0 [ERROR] [MY-000000] [WSREP-SST] Cleanup after exit with status:32 +2023-03-12T22:00:27.089809Z 0 [ERROR] [MY-000000] [WSREP] Process completed with error: wsrep_sst_xtrabackup-v2 --role 'joiner' --address '172.17.0.3' --datadir '/var/lib/mysql' --basedir '/usr/' --plugindir '/usr/lib64/mysql/plugin/' --defaults-file '/etc/my.cnf' --defaults-group-suffix '' --parent '1766624' --mysqld-version '8.0.28-19.1' '' : 32 (Broken pipe) +2023-03-12T22:00:27.089865Z 0 [ERROR] [MY-000000] [WSREP] Failed to read uuid:seqno from joiner script. +2023-03-12T22:00:27.089882Z 0 [ERROR] [MY-000000] [WSREP] SST script aborted with error 32 (Broken pipe) +2023-03-12T22:00:27.089981Z 3 [Note] [MY-000000] [Galera] Processing SST received +2023-03-12T22:00:27.090014Z 3 [Note] [MY-000000] [Galera] SST request was cancelled +2023-03-12T22:00:27.090038Z 3 [ERROR] [MY-000000] [Galera] State transfer request failed unrecoverably: 32 (Broken pipe). Most likely it is due to inability to communicate with the cluster primary component. Restart required. +2023-03-12T22:00:27.090052Z 3 [Note] [MY-000000] [Galera] ReplicatorSMM::abort() +2023-03-12T22:00:27.090067Z 3 [Note] [MY-000000] [Galera] Closing send monitor... +2023-03-12T22:00:27.090082Z 3 [Note] [MY-000000] [Galera] Closed send monitor. +2023-03-12T22:00:27.090098Z 3 [Note] [MY-000000] [Galera] gcomm: terminating thread +2023-03-12T22:00:27.090121Z 3 [Note] [MY-000000] [Galera] gcomm: joining thread +2023-03-12T22:00:27.090276Z 3 [Note] [MY-000000] [Galera] gcomm: closing backend +2023-03-12T22:00:27.237339Z 2 [ERROR] [MY-000000] [Galera] Requesting state transfer failed: -77(File descriptor in bad state) +2023-03-12T22:00:27.237433Z 2 [ERROR] [MY-000000] [Galera] State transfer request failed unrecoverably: 77 (File descriptor in bad state). Most likely it is due to inability to communicate with the cluster primary component. Restart required. +2023-03-12T22:00:27.237448Z 2 [Note] [MY-000000] [Galera] ReplicatorSMM::abort() +2023-03-12T22:00:27.237470Z 2 [Note] [MY-000000] [Galera] /usr/sbin/mysqld: Terminated. +2023-03-12T22:00:27.237486Z 2 [Note] [MY-000000] [WSREP] Initiating SST cancellation +2023-03-12T22:00:27.237496Z 2 [Note] [MY-000000] [WSREP] Terminating SST process diff --git a/src/go/pt-galera-log-explainer/tests/logs/upgrade/node3.log b/src/go/pt-galera-log-explainer/tests/logs/upgrade/node3.log new file mode 100644 index 00000000..d4492bce --- /dev/null +++ b/src/go/pt-galera-log-explainer/tests/logs/upgrade/node3.log @@ -0,0 +1,1565 @@ +2023-03-12T12:48:43.291653Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead. +2023-03-12T12:48:43.291670Z 0 [Warning] [MY-011069] [Server] The syntax '--master-info-repository' is deprecated and will be removed in a future release. +2023-03-12T12:48:43.291677Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T12:48:43.291708Z 0 [Warning] [MY-011069] [Server] The syntax '--relay-log-info-repository' is deprecated and will be removed in a future release. +2023-03-12T12:48:43.291719Z 0 [Warning] [MY-011068] [Server] The syntax 'log_slave_updates' is deprecated and will be removed in a future release. Please use log_replica_updates instead. +2023-03-12T12:48:43.291726Z 0 [Warning] [MY-011068] [Server] The syntax 'skip_slave_start' is deprecated and will be removed in a future release. Please use skip_replica_start instead. +2023-03-12T12:48:43.291741Z 0 [Warning] [MY-011068] [Server] The syntax 'wsrep_slave_threads' is deprecated and will be removed in a future release. Please use wsrep_applier_threads instead. +2023-03-12T12:48:43.293790Z 0 [Note] [MY-010949] [Server] Basedir set to /usr/. +2023-03-12T12:48:43.293802Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.28-19.1) starting as process 2001026 +2023-03-12T12:48:43.294684Z 0 [Warning] [MY-013242] [Server] --character-set-server: 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous. +2023-03-12T12:48:43.294690Z 0 [Warning] [MY-013244] [Server] --collation-server: 'utf8_general_ci' is a collation of the deprecated character set UTF8MB3. Please consider using UTF8MB4 with an appropriate collation instead. +2023-03-12T12:48:43.295919Z 0 [Note] [MY-010182] [Server] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them. +2023-03-12T12:48:43.296040Z 0 [Note] [MY-010304] [Server] Skipping generation of SSL certificates as certificate files are present in data directory. +2023-03-12T12:48:43.297764Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. +2023-03-12T12:48:43.297796Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. +2023-03-12T12:48:43.297807Z 0 [Note] [MY-000000] [WSREP] New joining cluster node configured to use specified SSL artifacts +2023-03-12T12:48:43.297840Z 0 [Note] [MY-000000] [Galera] Loading provider /usr/lib64/libgalera_smm.so initial position: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T12:48:43.297858Z 0 [Note] [MY-000000] [Galera] wsrep_load(): loading provider library '/usr/lib64/libgalera_smm.so' +2023-03-12T12:48:43.302339Z 0 [Note] [MY-000000] [Galera] wsrep_load(): Galera 4.11(a9008fc) by Codership Oy (modified by Percona ) loaded successfully. +2023-03-12T12:48:43.302379Z 0 [Note] [MY-000000] [Galera] CRC-32C: using 64-bit x86 acceleration. +2023-03-12T12:48:43.302943Z 0 [Note] [MY-000000] [Galera] Found saved state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896, safe_to_bootstrap: 0 +2023-03-12T12:48:43.304075Z 0 [Note] [MY-000000] [Galera] GCache DEBUG: opened preamble: +Version: 0 +UUID: 00000000-0000-0000-0000-000000000000 +Seqno: -1 - -1 +Offset: -1 +Synced: 0 +2023-03-12T12:48:43.304104Z 0 [Note] [MY-000000] [Galera] Skipped GCache ring buffer recovery: could not determine history UUID. +2023-03-12T12:48:43.305752Z 0 [Warning] [MY-000000] [Galera] Option 'gcs.fc_master_slave' is deprecated and will be removed in the future versions, please use 'gcs.fc_single_primary' instead. +2023-03-12T12:48:43.306328Z 0 [Note] [MY-000000] [Galera] Passing config to GCS: base_dir = /var/lib/mysql/; base_host = 172.17.0.4; base_port = 4567; cert.log_conflicts = no; cert.optimistic_pa = no; debug = no; evs.auto_evict = 0; evs.delay_margin = PT1S; evs.delayed_keep_period = PT30S; evs.inactive_check_period = PT0.5S; evs.inactive_timeout = PT15S; evs.join_retrans_period = PT1S; evs.max_install_timeouts = 3; evs.send_window = 10; evs.stats_report_period = PT1M; evs.suspect_timeout = PT5S; evs.user_send_window = 4; evs.view_forget_timeout = PT24H; gcache.dir = /var/lib/mysql/; gcache.freeze_purge_at_seqno = -1; gcache.keep_pages_count = 0; gcache.keep_pages_size = 0; gcache.mem_size = 0; gcache.name = galera.cache; gcache.page_size = 128M; gcache.recover = yes; gcache.size = 50G; gcomm.thread_prio = ; gcs.fc_debug = 0; gcs.fc_factor = 1.0; gcs.fc_limit = 100; gcs.fc_master_slave = no; gcs.fc_single_primary = no; gcs.max_packet_size = 64500; gcs.max_throttle = 0.25; gcs.recv_q_hard_limit = 9223372036854775807; gcs.recv_q_soft_limit = 0.25; gcs.sync_donor = no; gmcast.segment = 0; gmcast.version = 0; pc.announce_timeout = PT3S; pc.checksum = false; pc.ignore_quorum = false; pc.ignore_sb = false; pc.npvo = false; pc.recovery = true; pc.version = 0; pc.wait_prim = true; pc.wait_prim_timeout = PT30S; pc.weight = 1; protonet.backend = asio; protonet.version = 0; repl.causal_read_timeout = PT30S; repl.commit_order = 3; repl.key_format = FLAT8; repl.max_ws_size = 2147483647; repl.proto_max = 10; socket.checksum = 2; socket.recv_buf_size = auto; socket.send_buf_size = auto; socket.ssl = YES; socket.ssl_ca = ca.pem; socket.ssl_cert = server-cert.pem; socket.ssl_cipher = ; socket.ssl_compression = YES; socket.ssl_key = server-key.pem; socket.ssl_reload = 1; +2023-03-12T12:48:43.317893Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:48:43.317960Z 0 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896, protocol version: -1 +2023-03-12T12:48:43.317989Z 0 [Note] [MY-000000] [Galera] GCache history reset: 00000000-0000-0000-0000-000000000000:0 -> 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T12:48:43.319227Z 0 [Note] [MY-000000] [WSREP] Starting replication +2023-03-12T12:48:43.319246Z 0 [Note] [MY-000000] [Galera] Connecting with bootstrap option: 0 +2023-03-12T12:48:43.319260Z 0 [Note] [MY-000000] [Galera] Setting GCS initial position to 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T12:48:43.319300Z 0 [Note] [MY-000000] [Galera] protonet asio version 0 +2023-03-12T12:48:43.319624Z 0 [Note] [MY-000000] [Galera] Using CRC-32C for message checksums. +2023-03-12T12:48:43.319643Z 0 [Note] [MY-000000] [Galera] backend: asio +2023-03-12T12:48:43.319698Z 0 [Note] [MY-000000] [Galera] gcomm thread scheduling priority set to other:0 +2023-03-12T12:48:43.319764Z 0 [Warning] [MY-000000] [Galera] Fail to access the file (/var/lib/mysql//gvwstate.dat) error (No such file or directory). It is possible if node is booting for first time or re-booting after a graceful shutdown +2023-03-12T12:48:43.319776Z 0 [Note] [MY-000000] [Galera] Restoring primary-component from disk failed. Either node is booting for first time or re-booting after a graceful shutdown +2023-03-12T12:48:43.319889Z 0 [Note] [MY-000000] [Galera] GMCast version 0 +2023-03-12T12:48:43.320000Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') listening at ssl://0.0.0.0:4567 +2023-03-12T12:48:43.320013Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') multicast: , ttl: 1 +2023-03-12T12:48:43.320174Z 0 [Note] [MY-000000] [Galera] EVS version 1 +2023-03-12T12:48:43.320230Z 0 [Note] [MY-000000] [Galera] gcomm: connecting to group 'pxc_cluster', peer '172.17.0.2:,172.17.0.3:,172.17.0.4:' +2023-03-12T12:48:43.323912Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') Found matching local endpoint for a connection, blacklisting address ssl://172.17.0.4:4567 +2023-03-12T12:48:43.324133Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') connection established to a689dc26-80dc ssl://172.17.0.3:4567 +2023-03-12T12:48:43.324187Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T12:48:43.521806Z 0 [Note] [MY-000000] [Galera] EVS version upgrade 0 -> 1 +2023-03-12T12:48:43.521846Z 0 [Note] [MY-000000] [Galera] declaring a689dc26-80dc at ssl://172.17.0.3:4567 stable +2023-03-12T12:48:43.521864Z 0 [Note] [MY-000000] [Galera] PC protocol upgrade 0 -> 1 +2023-03-12T12:48:43.522064Z 0 [Note] [MY-000000] [Galera] Node a689dc26-80dc state primary +2023-03-12T12:48:43.522221Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,4) +memb { + 0509936f-8cc2,0 + a689dc26-80dc,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T12:48:43.522236Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T12:48:43.524029Z 0 [Note] [MY-000000] [Galera] discarding pending addr without UUID: ssl://172.17.0.2:4567 +2023-03-12T12:48:43.820637Z 0 [Note] [MY-000000] [Galera] gcomm: connected +2023-03-12T12:48:43.820693Z 0 [Note] [MY-000000] [Galera] Changing maximum packet size to 64500, resulting msg size: 32636 +2023-03-12T12:48:43.820825Z 0 [Note] [MY-000000] [Galera] Shifting CLOSED -> OPEN (TO: 0) +2023-03-12T12:48:43.820838Z 0 [Note] [MY-000000] [Galera] Opened channel 'pxc_cluster' +2023-03-12T12:48:43.820929Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 2 +2023-03-12T12:48:43.821058Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: 05560d07-dc55-11ed-9a8e-d23f5c06357a +2023-03-12T12:48:43.821150Z 1 [Note] [MY-000000] [WSREP] Starting rollbacker thread 1 +2023-03-12T12:48:43.821194Z 2 [Note] [MY-000000] [WSREP] Starting applier thread 2 +2023-03-12T12:48:43.821494Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 05560d07-dc55-11ed-9a8e-d23f5c06357a +2023-03-12T12:48:43.821656Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 05560d07-dc55-11ed-9a8e-d23f5c06357a from 0 (node3) +2023-03-12T12:48:43.821915Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 05560d07-dc55-11ed-9a8e-d23f5c06357a from 1 (node2) +2023-03-12T12:48:43.821927Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 3, + members = 1/2 (primary/total), + act_id = 170403904, + last_appl. = 170403901, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T12:48:43.821989Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [141, 141] +2023-03-12T12:48:43.822001Z 0 [Note] [MY-000000] [Galera] Shifting OPEN -> PRIMARY (TO: 170403905) +2023-03-12T12:48:43.822053Z 2 [Note] [MY-000000] [Galera] ####### processing CC 170403905, local, ordered +2023-03-12T12:48:43.822072Z 2 [Note] [MY-000000] [Galera] Maybe drain monitors from 170403896 upto current CC event 170403905 upto:170403896 +2023-03-12T12:48:43.822086Z 2 [Note] [MY-000000] [Galera] Drain monitors from 170403896 up to 170403896 +2023-03-12T12:48:43.822104Z 2 [Note] [MY-000000] [Galera] Process first view: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 my uuid: 0509936f-dc55-11ed-8cc2-ba331b939383 +2023-03-12T12:48:43.822127Z 2 [Note] [MY-000000] [Galera] Server node3 connected to cluster at position 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403905 with ID 0509936f-dc55-11ed-8cc2-ba331b939383 +2023-03-12T12:48:43.822140Z 2 [Note] [MY-000000] [WSREP] Server status change disconnected -> connected +2023-03-12T12:48:43.822164Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:43.822191Z 2 [Note] [MY-000000] [Galera] ####### My UUID: 0509936f-dc55-11ed-8cc2-ba331b939383 +2023-03-12T12:48:43.822205Z 2 [Note] [MY-000000] [Galera] Cert index reset to 00000000-0000-0000-0000-000000000000:-1 (proto: 10), state transfer needed: yes +2023-03-12T12:48:43.822277Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:48:43.822317Z 2 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 00000000-0000-0000-0000-000000000000:-1, protocol version: -1 +2023-03-12T12:48:43.822330Z 2 [Note] [MY-000000] [Galera] State transfer required: + Group state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403905 + Local state: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T12:48:43.822344Z 2 [Note] [MY-000000] [WSREP] Server status change connected -> joiner +2023-03-12T12:48:43.822354Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:43.822483Z 0 [Note] [MY-000000] [WSREP] Initiating SST/IST transfer on JOINER side (wsrep_sst_xtrabackup-v2 --role 'joiner' --address '172.17.0.4' --datadir '/var/lib/mysql/' --basedir '/usr/' --plugindir '/usr/lib64/mysql/plugin/' --defaults-file '/etc/my.cnf' --defaults-group-suffix '' --parent '2001026' --mysqld-version '8.0.28-19.1' '' ) +2023-03-12T12:48:44.596991Z 2 [Note] [MY-000000] [WSREP] Prepared SST request: xtrabackup-v2|172.17.0.4:4444/xtrabackup_sst//1 +2023-03-12T12:48:44.597045Z 2 [Note] [MY-000000] [Galera] Check if state gap can be serviced using IST +2023-03-12T12:48:44.597069Z 2 [Note] [MY-000000] [Galera] ####### IST uuid:9db0bcdf-b31a-11ed-a398-2a4cfdd82049 f: 170403897, l: 170403905, STRv: 3 +2023-03-12T12:48:44.597137Z 2 [Note] [MY-000000] [Galera] IST receiver addr using ssl://172.17.0.4:4568 +2023-03-12T12:48:44.597169Z 2 [Note] [MY-000000] [Galera] IST receiver using ssl +2023-03-12T12:48:44.597299Z 2 [Note] [MY-000000] [Galera] Prepared IST receiver for 170403897-170403905, listening at: ssl://172.17.0.4:4568 +2023-03-12T12:48:44.599346Z 0 [Note] [MY-000000] [Galera] Member 0.0 (node3) requested state transfer from 'node'. Selected 1.0 (node2)(SYNCED) as donor. +2023-03-12T12:48:44.599377Z 0 [Note] [MY-000000] [Galera] Shifting PRIMARY -> JOINER (TO: 170403905) +2023-03-12T12:48:44.599417Z 2 [Note] [MY-000000] [Galera] Requesting state transfer: success, donor: 1 +2023-03-12T12:48:45.268034Z 0 [Note] [MY-000000] [WSREP-SST] xtrabackup_ist received from donor: Running IST +2023-03-12T12:48:45.268077Z 0 [Note] [MY-000000] [WSREP-SST] Running post-processing........... +2023-03-12T12:48:45.276072Z 0 [Note] [MY-000000] [WSREP-SST] Skipping mysql_upgrade (ist) +2023-03-12T12:48:45.276207Z 0 [Note] [MY-000000] [WSREP-SST] ...........post-processing done +2023-03-12T12:48:45.278181Z 0 [Note] [MY-000000] [WSREP-SST] Galera co-ords from recovery: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T12:48:45.303163Z 3 [Note] [MY-000000] [Galera] Processing SST received +2023-03-12T12:48:45.303197Z 3 [Note] [MY-000000] [WSREP] Server status change joiner -> initializing +2023-03-12T12:48:45.303227Z 3 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:45.304926Z 0 [Warning] [MY-013245] [Server] The SSL library function CRYPTO_set_mem_functions failed. This is typically caused by the SSL library already being used. As a result the SSL memory allocation will not be instrumented. +2023-03-12T12:48:45.305151Z 0 [Warning] [MY-010075] [Server] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: 063880f0-dc55-11ed-806e-005056a7b68b. +2023-03-12T12:48:45.313431Z 0 [Note] [MY-012366] [InnoDB] Using Linux native AIO +2023-03-12T12:48:45.316493Z 0 [Note] [MY-010747] [Server] Plugin 'FEDERATED' is disabled. +2023-03-12T12:48:45.328080Z 4 [System] [MY-013576] [InnoDB] InnoDB initialization has started. +2023-03-12T12:48:45.328126Z 4 [Note] [MY-013546] [InnoDB] Atomic write enabled +2023-03-12T12:48:45.328187Z 4 [Note] [MY-012932] [InnoDB] PUNCH HOLE support available +2023-03-12T12:48:45.328208Z 4 [Note] [MY-012944] [InnoDB] Uses event mutexes +2023-03-12T12:48:45.328223Z 4 [Note] [MY-012945] [InnoDB] GCC builtin __atomic_thread_fence() is used for memory barrier +2023-03-12T12:48:45.328237Z 4 [Note] [MY-012948] [InnoDB] Compressed tables use zlib 1.2.11 +2023-03-12T12:48:45.331785Z 4 [Note] [MY-013251] [InnoDB] Number of pools: 1 +2023-03-12T12:48:45.331878Z 4 [Note] [MY-012951] [InnoDB] Using hardware accelerated crc32 and polynomial multiplication. +2023-03-12T12:48:45.332331Z 4 [Note] [MY-012203] [InnoDB] Directories to scan './' +2023-03-12T12:48:45.332382Z 4 [Note] [MY-012204] [InnoDB] Scanning './' +2023-03-12T12:48:46.065014Z 0 [Note] [MY-000000] [Galera] 1.0 (node2): State transfer to 0.0 (node3) complete. +2023-03-12T12:48:46.065262Z 0 [Note] [MY-000000] [Galera] Member 1.0 (node2) synced with group. +2023-03-12T12:48:46.820916Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') turning message relay requesting off +2023-03-12T12:48:48.342057Z 4 [Note] [MY-012208] [InnoDB] Completed space ID check of 3118 files. +2023-03-12T12:48:48.347746Z 4 [Note] [MY-012955] [InnoDB] Initializing buffer pool, total size = 120.000000G, instances = 64, chunk size =128.000000M +2023-03-12T12:48:52.834286Z 4 [Note] [MY-012957] [InnoDB] Completed initialization of buffer pool +2023-03-12T12:48:53.269275Z 0 [Note] [MY-011952] [InnoDB] If the mysqld execution user is authorized, page cleaner and LRU manager thread priority can be changed. See the man page of setpriority(). +2023-03-12T12:48:53.491062Z 4 [Note] [MY-013566] [InnoDB] Double write buffer files: 128 +2023-03-12T12:48:53.491111Z 4 [Note] [MY-013565] [InnoDB] Double write buffer pages per instance: 32 +2023-03-12T12:48:53.491195Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_0.dblwr' for doublewrite +2023-03-12T12:48:53.491510Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_1.dblwr' for doublewrite +2023-03-12T12:48:53.491831Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_2.dblwr' for doublewrite +2023-03-12T12:48:53.492116Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_3.dblwr' for doublewrite +2023-03-12T12:48:53.492746Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_4.dblwr' for doublewrite +2023-03-12T12:48:53.493019Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_5.dblwr' for doublewrite +2023-03-12T12:48:53.493406Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_6.dblwr' for doublewrite +2023-03-12T12:48:53.493643Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_7.dblwr' for doublewrite +2023-03-12T12:48:53.493919Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_8.dblwr' for doublewrite +2023-03-12T12:48:53.494159Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_9.dblwr' for doublewrite +2023-03-12T12:48:53.494429Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_10.dblwr' for doublewrite +2023-03-12T12:48:53.494657Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_11.dblwr' for doublewrite +2023-03-12T12:48:53.494917Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_12.dblwr' for doublewrite +2023-03-12T12:48:53.495154Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_13.dblwr' for doublewrite +2023-03-12T12:48:53.495426Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_14.dblwr' for doublewrite +2023-03-12T12:48:53.495673Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_15.dblwr' for doublewrite +2023-03-12T12:48:53.496029Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_16.dblwr' for doublewrite +2023-03-12T12:48:53.496315Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_17.dblwr' for doublewrite +2023-03-12T12:48:53.496638Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_18.dblwr' for doublewrite +2023-03-12T12:48:53.496886Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_19.dblwr' for doublewrite +2023-03-12T12:48:53.497205Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_20.dblwr' for doublewrite +2023-03-12T12:48:53.497447Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_21.dblwr' for doublewrite +2023-03-12T12:48:53.497754Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_22.dblwr' for doublewrite +2023-03-12T12:48:53.498020Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_23.dblwr' for doublewrite +2023-03-12T12:48:53.498292Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_24.dblwr' for doublewrite +2023-03-12T12:48:53.498509Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_25.dblwr' for doublewrite +2023-03-12T12:48:53.498856Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_26.dblwr' for doublewrite +2023-03-12T12:48:53.499134Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_27.dblwr' for doublewrite +2023-03-12T12:48:53.499415Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_28.dblwr' for doublewrite +2023-03-12T12:48:53.499656Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_29.dblwr' for doublewrite +2023-03-12T12:48:53.499924Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_30.dblwr' for doublewrite +2023-03-12T12:48:53.500180Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_31.dblwr' for doublewrite +2023-03-12T12:48:53.500489Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_32.dblwr' for doublewrite +2023-03-12T12:48:53.500711Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_33.dblwr' for doublewrite +2023-03-12T12:48:53.500991Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_34.dblwr' for doublewrite +2023-03-12T12:48:53.501220Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_35.dblwr' for doublewrite +2023-03-12T12:48:53.501491Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_36.dblwr' for doublewrite +2023-03-12T12:48:53.501709Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_37.dblwr' for doublewrite +2023-03-12T12:48:53.501979Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_38.dblwr' for doublewrite +2023-03-12T12:48:53.502208Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_39.dblwr' for doublewrite +2023-03-12T12:48:53.502468Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_40.dblwr' for doublewrite +2023-03-12T12:48:53.502686Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_41.dblwr' for doublewrite +2023-03-12T12:48:53.502972Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_42.dblwr' for doublewrite +2023-03-12T12:48:53.503203Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_43.dblwr' for doublewrite +2023-03-12T12:48:53.503499Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_44.dblwr' for doublewrite +2023-03-12T12:48:53.503728Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_45.dblwr' for doublewrite +2023-03-12T12:48:53.504008Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_46.dblwr' for doublewrite +2023-03-12T12:48:53.504236Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_47.dblwr' for doublewrite +2023-03-12T12:48:53.504508Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_48.dblwr' for doublewrite +2023-03-12T12:48:53.504729Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_49.dblwr' for doublewrite +2023-03-12T12:48:53.505002Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_50.dblwr' for doublewrite +2023-03-12T12:48:53.505220Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_51.dblwr' for doublewrite +2023-03-12T12:48:53.505468Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_52.dblwr' for doublewrite +2023-03-12T12:48:53.505680Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_53.dblwr' for doublewrite +2023-03-12T12:48:53.505940Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_54.dblwr' for doublewrite +2023-03-12T12:48:53.506172Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_55.dblwr' for doublewrite +2023-03-12T12:48:53.506433Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_56.dblwr' for doublewrite +2023-03-12T12:48:53.506660Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_57.dblwr' for doublewrite +2023-03-12T12:48:53.506918Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_58.dblwr' for doublewrite +2023-03-12T12:48:53.507156Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_59.dblwr' for doublewrite +2023-03-12T12:48:53.507415Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_60.dblwr' for doublewrite +2023-03-12T12:48:53.507635Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_61.dblwr' for doublewrite +2023-03-12T12:48:53.507895Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_62.dblwr' for doublewrite +2023-03-12T12:48:53.508126Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_63.dblwr' for doublewrite +2023-03-12T12:48:53.508386Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_64.dblwr' for doublewrite +2023-03-12T12:48:53.508602Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_65.dblwr' for doublewrite +2023-03-12T12:48:53.508856Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_66.dblwr' for doublewrite +2023-03-12T12:48:53.509084Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_67.dblwr' for doublewrite +2023-03-12T12:48:53.509339Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_68.dblwr' for doublewrite +2023-03-12T12:48:53.509579Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_69.dblwr' for doublewrite +2023-03-12T12:48:53.509838Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_70.dblwr' for doublewrite +2023-03-12T12:48:53.510063Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_71.dblwr' for doublewrite +2023-03-12T12:48:53.510351Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_72.dblwr' for doublewrite +2023-03-12T12:48:53.510583Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_73.dblwr' for doublewrite +2023-03-12T12:48:53.510843Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_74.dblwr' for doublewrite +2023-03-12T12:48:53.511089Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_75.dblwr' for doublewrite +2023-03-12T12:48:53.511348Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_76.dblwr' for doublewrite +2023-03-12T12:48:53.511580Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_77.dblwr' for doublewrite +2023-03-12T12:48:53.511844Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_78.dblwr' for doublewrite +2023-03-12T12:48:53.512073Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_79.dblwr' for doublewrite +2023-03-12T12:48:53.512341Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_80.dblwr' for doublewrite +2023-03-12T12:48:53.512554Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_81.dblwr' for doublewrite +2023-03-12T12:48:53.512812Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_82.dblwr' for doublewrite +2023-03-12T12:48:53.513046Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_83.dblwr' for doublewrite +2023-03-12T12:48:53.513306Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_84.dblwr' for doublewrite +2023-03-12T12:48:53.513535Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_85.dblwr' for doublewrite +2023-03-12T12:48:53.513795Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_86.dblwr' for doublewrite +2023-03-12T12:48:53.514024Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_87.dblwr' for doublewrite +2023-03-12T12:48:53.514312Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_88.dblwr' for doublewrite +2023-03-12T12:48:53.514531Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_89.dblwr' for doublewrite +2023-03-12T12:48:53.514826Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_90.dblwr' for doublewrite +2023-03-12T12:48:53.515061Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_91.dblwr' for doublewrite +2023-03-12T12:48:53.515315Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_92.dblwr' for doublewrite +2023-03-12T12:48:53.515528Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_93.dblwr' for doublewrite +2023-03-12T12:48:53.515789Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_94.dblwr' for doublewrite +2023-03-12T12:48:53.516016Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_95.dblwr' for doublewrite +2023-03-12T12:48:53.516282Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_96.dblwr' for doublewrite +2023-03-12T12:48:53.516501Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_97.dblwr' for doublewrite +2023-03-12T12:48:53.516761Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_98.dblwr' for doublewrite +2023-03-12T12:48:53.516991Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_99.dblwr' for doublewrite +2023-03-12T12:48:53.517260Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_100.dblwr' for doublewrite +2023-03-12T12:48:53.517488Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_101.dblwr' for doublewrite +2023-03-12T12:48:53.517745Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_102.dblwr' for doublewrite +2023-03-12T12:48:53.517988Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_103.dblwr' for doublewrite +2023-03-12T12:48:53.518250Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_104.dblwr' for doublewrite +2023-03-12T12:48:53.518469Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_105.dblwr' for doublewrite +2023-03-12T12:48:53.518797Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_106.dblwr' for doublewrite +2023-03-12T12:48:53.519082Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_107.dblwr' for doublewrite +2023-03-12T12:48:53.519410Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_108.dblwr' for doublewrite +2023-03-12T12:48:53.519672Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_109.dblwr' for doublewrite +2023-03-12T12:48:53.520002Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_110.dblwr' for doublewrite +2023-03-12T12:48:53.520273Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_111.dblwr' for doublewrite +2023-03-12T12:48:53.520601Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_112.dblwr' for doublewrite +2023-03-12T12:48:53.520862Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_113.dblwr' for doublewrite +2023-03-12T12:48:53.521212Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_114.dblwr' for doublewrite +2023-03-12T12:48:53.521477Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_115.dblwr' for doublewrite +2023-03-12T12:48:53.521786Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_116.dblwr' for doublewrite +2023-03-12T12:48:53.522053Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_117.dblwr' for doublewrite +2023-03-12T12:48:53.522366Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_118.dblwr' for doublewrite +2023-03-12T12:48:53.522624Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_119.dblwr' for doublewrite +2023-03-12T12:48:53.522931Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_120.dblwr' for doublewrite +2023-03-12T12:48:53.523210Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_121.dblwr' for doublewrite +2023-03-12T12:48:53.523545Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_122.dblwr' for doublewrite +2023-03-12T12:48:53.523802Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_123.dblwr' for doublewrite +2023-03-12T12:48:53.524126Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_124.dblwr' for doublewrite +2023-03-12T12:48:53.524398Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_125.dblwr' for doublewrite +2023-03-12T12:48:53.524712Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_126.dblwr' for doublewrite +2023-03-12T12:48:53.524975Z 4 [Note] [MY-013532] [InnoDB] Using './#ib_16384_127.dblwr' for doublewrite +2023-03-12T12:48:53.527523Z 4 [Note] [MY-013086] [InnoDB] Starting to parse redo log at lsn = 35636234645004, whereas checkpoint_lsn = 35636234645014 and start_lsn = 35636234644992 +2023-03-12T12:48:53.761226Z 4 [Note] [MY-013083] [InnoDB] Log background threads are being started... +2023-03-12T12:48:53.761983Z 4 [Note] [MY-012532] [InnoDB] Applying a batch of 0 redo log records ... +2023-03-12T12:48:53.762030Z 4 [Note] [MY-012535] [InnoDB] Apply batch completed! +2023-03-12T12:48:53.762399Z 4 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_001'. +2023-03-12T12:48:53.763577Z 4 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_002'. +2023-03-12T12:48:53.765186Z 4 [Note] [MY-012910] [InnoDB] Opened 2 existing undo tablespaces. +2023-03-12T12:48:53.765262Z 4 [Note] [MY-011980] [InnoDB] GTID recovery trx_no: 10986149155 +2023-03-12T12:48:53.770344Z 4 [Note] [MY-013776] [InnoDB] Parallel initialization of rseg complete +2023-03-12T12:48:53.770393Z 4 [Note] [MY-013777] [InnoDB] Time taken to initialize rseg using 4 thread: 5138 ms. +2023-03-12T12:48:53.771576Z 4 [Note] [MY-012255] [InnoDB] Removed temporary tablespace data file: "ibtmp1" +2023-03-12T12:48:53.771607Z 4 [Note] [MY-012923] [InnoDB] Creating shared tablespace for temporary tables +2023-03-12T12:48:53.771666Z 4 [Note] [MY-012265] [InnoDB] Setting file '/var/lib/mysql/ibtmp1' size to 12 MB. Physically writing the file full; Please wait ... +2023-03-12T12:48:53.792614Z 4 [Note] [MY-012266] [InnoDB] File '/var/lib/mysql/ibtmp1' size is now 12 MB. +2023-03-12T12:48:53.798648Z 4 [Note] [MY-013627] [InnoDB] Scanning temp tablespace dir:'./#innodb_temp/' +2023-03-12T12:48:53.828162Z 4 [Note] [MY-013018] [InnoDB] Created 128 and tracked 128 new rollback segment(s) in the temporary tablespace. 128 are now active. +2023-03-12T12:48:53.828387Z 4 [Note] [MY-012976] [InnoDB] Percona XtraDB (http://www.percona.com) 8.0.28-19 started; log sequence number 35636234645024 +2023-03-12T12:48:53.829225Z 4 [System] [MY-013577] [InnoDB] InnoDB initialization has ended. +2023-03-12T12:48:53.838009Z 4 [Note] [MY-011089] [Server] Data dictionary restarting version '80023'. +2023-03-12T12:48:53.902806Z 4 [Note] [MY-012357] [InnoDB] Reading DD tablespace files +2023-03-12T12:48:54.031046Z 4 [Note] [MY-012356] [InnoDB] Scanned 3120 tablespaces. Validated 3120. +2023-03-12T12:48:54.079063Z 4 [Note] [MY-000000] [WSREP] wsrep_init_schema_and_SR (nil) +2023-03-12T12:48:54.085987Z 4 [System] [MY-000000] [WSREP] PXC upgrade completed successfully +2023-03-12T12:48:54.086068Z 4 [Note] [MY-010006] [Server] Using data dictionary with version '80023'. +2023-03-12T12:48:54.095328Z 0 [Note] [MY-011332] [Server] Plugin mysqlx reported: 'IPv6 is available' +2023-03-12T12:48:54.097433Z 0 [Note] [MY-011323] [Server] Plugin mysqlx reported: 'X Plugin ready for connections. bind-address: '::' port: 33060' +2023-03-12T12:48:54.097466Z 0 [Note] [MY-011323] [Server] Plugin mysqlx reported: 'X Plugin ready for connections. socket: '/var/lib/mysql/mysqlx.sock'' +2023-03-12T12:48:54.111885Z 0 [Note] [MY-010902] [Server] Thread priority attribute setting in Resource Group SQL shall be ignored due to unsupported platform or insufficient privilege. +2023-03-12T12:48:54.116191Z 0 [Note] [MY-010855] [Server] Recovering after a crash using /binlog/mysql-bin +2023-03-12T12:48:54.116241Z 0 [Note] [MY-000000] [WSREP] Before binlog recovery (wsrep position: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896) +2023-03-12T12:48:54.116276Z 0 [System] [MY-010229] [Server] Starting XA crash recovery... +2023-03-12T12:48:54.125973Z 0 [System] [MY-010232] [Server] XA crash recovery finished. +2023-03-12T12:48:54.126017Z 0 [Note] [MY-000000] [WSREP] After binlog recovery (wsrep position: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896) +2023-03-12T12:48:54.138642Z 0 [Note] [MY-012487] [InnoDB] DDL log recovery : begin +2023-03-12T12:48:54.138719Z 0 [Note] [MY-012488] [InnoDB] DDL log recovery : end +2023-03-12T12:48:54.139651Z 0 [Note] [MY-011946] [InnoDB] Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool +2023-03-12T12:48:54.143009Z 0 [Note] [MY-012922] [InnoDB] Waiting for purge to start +2023-03-12T12:48:54.197354Z 0 [Warning] [MY-013829] [Server] Missing data directory for ICU regular expressions: /usr/lib64/mysql/private/. +2023-03-12T12:48:54.198482Z 0 [Note] [MY-010303] [Server] Skipping generation of SSL certificates as options related to SSL are specified. +2023-03-12T12:48:54.199124Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. +2023-03-12T12:48:54.199159Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. +2023-03-12T12:48:54.199177Z 0 [Note] [MY-010308] [Server] Skipping generation of RSA key pair through --sha256_password_auto_generate_rsa_keys as key files are present in data directory. +2023-03-12T12:48:54.199195Z 0 [Note] [MY-010308] [Server] Skipping generation of RSA key pair through --caching_sha2_password_auto_generate_rsa_keys as key files are present in data directory. +2023-03-12T12:48:54.199328Z 0 [Note] [MY-010252] [Server] Server hostname (bind-address): '0.0.0.0'; port: 3306 +2023-03-12T12:48:54.199350Z 0 [Note] [MY-010264] [Server] - '0.0.0.0' resolves to '0.0.0.0'; +2023-03-12T12:48:54.199376Z 0 [Note] [MY-010251] [Server] Server socket created on IP: '0.0.0.0'. +2023-03-12T12:48:54.225704Z 0 [Warning] [MY-010533] [Repl] Error during --relay-log-recovery: Could not locate rotate event from the master. +2023-03-12T12:48:54.225731Z 0 [Warning] [MY-013504] [Repl] Server was not able to find a rotate event from master server to initialize relay log recovery for channel ''. Skipping relay log recovery for the channel. +2023-03-12T12:48:54.233756Z 0 [Note] [MY-000000] [WSREP] Initialized wsrep sidno 2 +2023-03-12T12:48:54.233793Z 0 [Note] [MY-000000] [Galera] Server initialized +2023-03-12T12:48:54.233810Z 8 [Note] [MY-010051] [Server] Event Scheduler: scheduler thread started with id 8 +2023-03-12T12:48:54.233850Z 0 [Note] [MY-000000] [WSREP] Server status change initializing -> initialized +2023-03-12T12:48:54.233881Z 0 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:54.233973Z 3 [Note] [MY-000000] [Galera] Recovered position from storage: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T12:48:54.235720Z 10 [Note] [MY-000000] [WSREP] Starting applier thread 10 +2023-03-12T12:48:54.235866Z 11 [Note] [MY-000000] [WSREP] Starting applier thread 11 +2023-03-12T12:48:54.235903Z 13 [Note] [MY-000000] [WSREP] Starting applier thread 13 +2023-03-12T12:48:54.235891Z 12 [Note] [MY-000000] [WSREP] Starting applier thread 12 +2023-03-12T12:48:54.235890Z 14 [Note] [MY-000000] [WSREP] Starting applier thread 14 +2023-03-12T12:48:54.236062Z 16 [Note] [MY-000000] [WSREP] Starting applier thread 16 +2023-03-12T12:48:54.235931Z 0 [Note] [MY-011240] [Server] Plugin mysqlx reported: 'Using SSL configuration from MySQL Server' +2023-03-12T12:48:54.235928Z 15 [Note] [MY-000000] [WSREP] Starting applier thread 15 +2023-03-12T12:48:54.236597Z 0 [Note] [MY-011243] [Server] Plugin mysqlx reported: 'Using OpenSSL for TLS connections' +2023-03-12T12:48:54.236670Z 3 [Note] [MY-000000] [Galera] Recovered view from SST: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: -1 + members(1): + 0: 09a4dbb2-dc3e-11ed-842d-c344795288be, node2 + +2023-03-12T12:48:54.236700Z 3 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:54.236771Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Bind-address: '::' port: 33060, socket: /var/lib/mysql/mysqlx.sock +2023-03-12T12:48:54.236793Z 17 [Note] [MY-000000] [WSREP] Recovered cluster id 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T12:48:54.236832Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.28-19.1' socket: '/var/lib/mysql/mysql.sock' port: 3306 Percona XtraDB Cluster (GPL), Release rel19, Revision f544540, WSREP version 26.4.3. +2023-03-12T12:48:54.241694Z 3 [Note] [MY-000000] [Galera] SST received: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T12:48:54.241736Z 3 [System] [MY-000000] [WSREP] SST completed +2023-03-12T12:48:54.241829Z 2 [Note] [MY-000000] [Galera] str_proto_ver_: 3 sst_seqno_: 170403896 cc_seqno: 170403905 req->ist_len(): 81 +2023-03-12T12:48:54.241875Z 2 [Note] [MY-000000] [Galera] Installed new state from SST: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896 +2023-03-12T12:48:54.242922Z 2 [Note] [MY-000000] [Galera] Receiving IST: 9 writesets, seqnos 170403897-170403905 +2023-03-12T12:48:54.243005Z 0 [Note] [MY-000000] [Galera] ####### IST applying starts with 170403897 +2023-03-12T12:48:54.243091Z 0 [Note] [MY-000000] [Galera] ####### IST current seqno initialized to 170403897 +2023-03-12T12:48:54.243167Z 0 [Note] [MY-000000] [Galera] Receiving IST... 0.0% (0/9 events) complete. +2023-03-12T12:48:54.243181Z 0 [Note] [MY-000000] [Galera] ####### Passing IST CC 170403897, must_apply: 1, preload: false +2023-03-12T12:48:54.243202Z 0 [Note] [MY-000000] [Galera] First IST (CC) event for rebuilding cert index +2023-03-12T12:48:54.243214Z 0 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T12:48:54.243252Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:48:54.243296Z 0 [Note] [MY-000000] [Galera] ####### Assign initial position for certification: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403896, protocol version: 5 +2023-03-12T12:48:54.243311Z 0 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T12:48:54.243319Z 0 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170403896 -> 170403897 +2023-03-12T12:48:54.243346Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:48:54.243371Z 0 [Note] [MY-000000] [Galera] Recording CC from ist: 170403897 +2023-03-12T12:48:54.243383Z 0 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from ist: 170403897 +2023-03-12T12:48:54.243388Z 0 [Note] [MY-000000] [Galera] Min available from gcache for CC from ist: 170403897 +2023-03-12T12:48:54.243428Z 0 [Note] [MY-000000] [Galera] ####### Passing IST CC 170403898, must_apply: 1, preload: false +2023-03-12T12:48:54.243487Z 10 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403897 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: -1 + members(1): + 0: 43029033-dc49-11ed-8c27-9a30b07be54c, node2 +================================================= +2023-03-12T12:48:54.243527Z 10 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:54.246083Z 0 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T12:48:54.246113Z 0 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170403897 -> 170403898 +2023-03-12T12:48:54.246139Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:48:54.246174Z 0 [Note] [MY-000000] [Galera] Recording CC from ist: 170403898 +2023-03-12T12:48:54.246187Z 0 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from ist: 170403898 +2023-03-12T12:48:54.246193Z 0 [Note] [MY-000000] [Galera] Min available from gcache for CC from ist: 170403897 +2023-03-12T12:48:54.246227Z 0 [Note] [MY-000000] [Galera] ####### Passing IST CC 170403899, must_apply: 1, preload: false +2023-03-12T12:48:54.246246Z 11 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403898 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: -1 + members(2): + 0: 43029033-dc49-11ed-8c27-9a30b07be54c, node2 + 1: c0fe0ba2-dc4a-11ed-8aac-cb0cdf1579ef, node3 +================================================= +2023-03-12T12:48:54.246296Z 11 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:54.249776Z 0 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T12:48:54.249801Z 0 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170403898 -> 170403899 +2023-03-12T12:48:54.249824Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:48:54.249855Z 0 [Note] [MY-000000] [Galera] Recording CC from ist: 170403899 +2023-03-12T12:48:54.249867Z 0 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from ist: 170403899 +2023-03-12T12:48:54.249873Z 0 [Note] [MY-000000] [Galera] Min available from gcache for CC from ist: 170403897 +2023-03-12T12:48:54.249902Z 0 [Note] [MY-000000] [Galera] ####### Passing IST CC 170403900, must_apply: 1, preload: false +2023-03-12T12:48:54.249922Z 13 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403899 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: -1 + members(1): + 0: 43029033-dc49-11ed-8c27-9a30b07be54c, node2 +================================================= +2023-03-12T12:48:54.249986Z 13 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:54.252853Z 0 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T12:48:54.252885Z 0 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170403899 -> 170403900 +2023-03-12T12:48:54.252913Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:48:54.252955Z 0 [Note] [MY-000000] [Galera] Recording CC from ist: 170403900 +2023-03-12T12:48:54.252973Z 0 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from ist: 170403900 +2023-03-12T12:48:54.252980Z 0 [Note] [MY-000000] [Galera] Min available from gcache for CC from ist: 170403897 +2023-03-12T12:48:54.253008Z 0 [Note] [MY-000000] [Galera] ####### Passing IST CC 170403901, must_apply: 1, preload: false +2023-03-12T12:48:54.253067Z 12 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403900 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: -1 + members(2): + 0: 43029033-dc49-11ed-8c27-9a30b07be54c, node2 + 1: 539cc651-dc4b-11ed-bd27-fad75366cd05, node3 +================================================= +2023-03-12T12:48:54.253109Z 12 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:54.255595Z 0 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T12:48:54.255624Z 0 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170403900 -> 170403901 +2023-03-12T12:48:54.255649Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:48:54.255677Z 0 [Note] [MY-000000] [Galera] Recording CC from ist: 170403901 +2023-03-12T12:48:54.255689Z 0 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from ist: 170403901 +2023-03-12T12:48:54.255695Z 0 [Note] [MY-000000] [Galera] Min available from gcache for CC from ist: 170403897 +2023-03-12T12:48:54.255721Z 0 [Note] [MY-000000] [Galera] ####### Passing IST CC 170403902, must_apply: 1, preload: false +2023-03-12T12:48:54.255733Z 14 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403901 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: -1 + members(1): + 0: 43029033-dc49-11ed-8c27-9a30b07be54c, node2 +================================================= +2023-03-12T12:48:54.255778Z 14 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:54.258247Z 0 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T12:48:54.258273Z 0 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170403901 -> 170403902 +2023-03-12T12:48:54.258295Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:48:54.258324Z 0 [Note] [MY-000000] [Galera] Recording CC from ist: 170403902 +2023-03-12T12:48:54.258336Z 0 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from ist: 170403902 +2023-03-12T12:48:54.258342Z 0 [Note] [MY-000000] [Galera] Min available from gcache for CC from ist: 170403897 +2023-03-12T12:48:54.258366Z 0 [Note] [MY-000000] [Galera] ####### Passing IST CC 170403903, must_apply: 1, preload: false +2023-03-12T12:48:54.258382Z 16 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403902 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: -1 + members(1): + 0: a689dc26-dc51-11ed-80dc-37422db6f664, node2 +================================================= +2023-03-12T12:48:54.258433Z 16 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:54.260919Z 0 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T12:48:54.260954Z 0 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170403902 -> 170403903 +2023-03-12T12:48:54.260989Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:48:54.261017Z 0 [Note] [MY-000000] [Galera] Recording CC from ist: 170403903 +2023-03-12T12:48:54.261030Z 0 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from ist: 170403903 +2023-03-12T12:48:54.261036Z 0 [Note] [MY-000000] [Galera] Min available from gcache for CC from ist: 170403897 +2023-03-12T12:48:54.261063Z 0 [Note] [MY-000000] [Galera] ####### Passing IST CC 170403904, must_apply: 1, preload: false +2023-03-12T12:48:54.261079Z 15 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403903 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: -1 + members(2): + 0: 60da0bf9-dc52-11ed-aa9c-7769749b5a43, node1 + 1: a689dc26-dc51-11ed-80dc-37422db6f664, node2 +================================================= +2023-03-12T12:48:54.261129Z 15 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:54.264016Z 0 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T12:48:54.264047Z 0 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170403903 -> 170403904 +2023-03-12T12:48:54.264075Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:48:54.264106Z 0 [Note] [MY-000000] [Galera] Recording CC from ist: 170403904 +2023-03-12T12:48:54.264123Z 0 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from ist: 170403904 +2023-03-12T12:48:54.264133Z 0 [Note] [MY-000000] [Galera] Min available from gcache for CC from ist: 170403897 +2023-03-12T12:48:54.264177Z 2 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403904 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: -1 + members(1): + 0: a689dc26-dc51-11ed-80dc-37422db6f664, node2 +================================================= +2023-03-12T12:48:54.264207Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:54.264208Z 0 [Note] [MY-000000] [Galera] IST preload starting at 170403905 +2023-03-12T12:48:54.264230Z 0 [Note] [MY-000000] [Galera] ####### Passing IST CC 170403905, must_apply: 1, preload: true +2023-03-12T12:48:54.266477Z 0 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T12:48:54.266507Z 0 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170403904 -> 170403905 +2023-03-12T12:48:54.266543Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T12:48:54.266575Z 0 [Note] [MY-000000] [Galera] Recording CC from ist: 170403905 +2023-03-12T12:48:54.266588Z 0 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from ist: 170403905 +2023-03-12T12:48:54.266594Z 0 [Note] [MY-000000] [Galera] Min available from gcache for CC from ist: 170403897 +2023-03-12T12:48:54.266631Z 0 [Note] [MY-000000] [Galera] Receiving IST...100.0% (9/9 events) complete. +2023-03-12T12:48:54.266638Z 10 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403905 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 0 + members(2): + 0: 0509936f-dc55-11ed-8cc2-ba331b939383, node3 + 1: a689dc26-dc51-11ed-80dc-37422db6f664, node2 +================================================= +2023-03-12T12:48:54.266661Z 10 [Note] [MY-000000] [WSREP] Server status change initialized -> joined +2023-03-12T12:48:54.266676Z 10 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:54.266700Z 10 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:54.266898Z 2 [Note] [MY-000000] [Galera] Draining apply monitors after IST up to 170403905 +2023-03-12T12:48:54.269978Z 2 [Note] [MY-000000] [Galera] IST received: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403905 +2023-03-12T12:48:54.271617Z 2 [Note] [MY-000000] [Galera] Recording CC from sst: 170403905 +2023-03-12T12:48:54.271653Z 2 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from sst: 170403905 +2023-03-12T12:48:54.271666Z 2 [Note] [MY-000000] [Galera] Min available from gcache for CC from sst: 170403897 +2023-03-12T12:48:54.271996Z 0 [Note] [MY-000000] [Galera] 0.0 (node3): State transfer from 1.0 (node2) complete. +2023-03-12T12:48:54.272025Z 0 [Note] [MY-000000] [Galera] SST leaving flow control +2023-03-12T12:48:54.272037Z 0 [Note] [MY-000000] [Galera] Shifting JOINER -> JOINED (TO: 170403905) +2023-03-12T12:48:54.272065Z 0 [Note] [MY-000000] [Galera] Processing event queue:... -nan% (0/0 events) complete. +2023-03-12T12:48:54.272232Z 0 [Note] [MY-000000] [Galera] Member 0.0 (node3) synced with group. +2023-03-12T12:48:54.272249Z 0 [Note] [MY-000000] [Galera] Processing event queue:...100.0% (1/1 events) complete. +2023-03-12T12:48:54.272256Z 0 [Note] [MY-000000] [Galera] Shifting JOINED -> SYNCED (TO: 170403905) +2023-03-12T12:48:54.272288Z 2 [Note] [MY-000000] [Galera] Server node3 synced with group +2023-03-12T12:48:54.272317Z 2 [Note] [MY-000000] [WSREP] Server status change joined -> synced +2023-03-12T12:48:54.272333Z 2 [Note] [MY-000000] [WSREP] Synchronized with group, ready for connections +2023-03-12T12:48:54.272344Z 2 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T12:48:58.424613Z 0 [Note] [MY-011946] [InnoDB] Buffer pool(s) load completed at 230416 14:48:58 +2023-03-12T13:04:23.979636Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') connection established to 35b62086-902c ssl://172.17.0.2:4567 +2023-03-12T13:04:23.979902Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T13:04:24.476806Z 0 [Note] [MY-000000] [Galera] declaring 35b62086-902c at ssl://172.17.0.2:4567 stable +2023-03-12T13:04:24.476863Z 0 [Note] [MY-000000] [Galera] declaring a689dc26-80dc at ssl://172.17.0.3:4567 stable +2023-03-12T13:04:24.477094Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T13:04:24.477333Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,5) +memb { + 0509936f-8cc2,0 + 35b62086-902c,0 + a689dc26-80dc,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T13:04:24.477350Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T13:04:24.479206Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 3 +2023-03-12T13:04:24.479313Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: 36031c8e-dc57-11ed-b8a9-2284e0264009 +2023-03-12T13:04:24.479604Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 36031c8e-dc57-11ed-b8a9-2284e0264009 +2023-03-12T13:04:24.479912Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 36031c8e-dc57-11ed-b8a9-2284e0264009 from 0 (node3) +2023-03-12T13:04:24.479926Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 36031c8e-dc57-11ed-b8a9-2284e0264009 from 2 (node2) +2023-03-12T13:04:24.977267Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 36031c8e-dc57-11ed-b8a9-2284e0264009 from 1 (node1) +2023-03-12T13:04:24.977322Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 4, + members = 2/3 (primary/total), + act_id = 170407334, + last_appl. = 170407225, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T13:04:24.977379Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [173, 173] +2023-03-12T13:04:24.977536Z 12 [Note] [MY-000000] [Galera] ####### processing CC 170407335, local, ordered +2023-03-12T13:04:24.977566Z 12 [Note] [MY-000000] [Galera] Maybe drain monitors from 170407334 upto current CC event 170407335 upto:170407334 +2023-03-12T13:04:24.977574Z 12 [Note] [MY-000000] [Galera] Drain monitors from 170407334 up to 170407334 +2023-03-12T13:04:24.977582Z 12 [Note] [MY-000000] [Galera] ####### My UUID: 0509936f-dc55-11ed-8cc2-ba331b939383 +2023-03-12T13:04:24.977590Z 12 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T13:04:24.977596Z 12 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T13:04:24.977605Z 12 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170407334 -> 170407335 +2023-03-12T13:04:24.977652Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T13:04:24.980544Z 12 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407335 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 0 + members(3): + 0: 0509936f-dc55-11ed-8cc2-ba331b939383, node3 + 1: 35b62086-dc57-11ed-902c-32d1f4959542, node1 + 2: a689dc26-dc51-11ed-80dc-37422db6f664, node2 +================================================= +2023-03-12T13:04:24.980569Z 12 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:04:24.983818Z 12 [Note] [MY-000000] [Galera] Recording CC from group: 170407335 +2023-03-12T13:04:24.983840Z 12 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 170407226 +2023-03-12T13:04:24.983846Z 12 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403897 +2023-03-12T13:04:25.732079Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403895] < safe_ist_seqno [170403922] +2023-03-12T13:04:25.732124Z 0 [Note] [MY-000000] [Galera] Member 1.0 (node1) requested state transfer from 'node'. Selected 0.0 (node3)(SYNCED) as donor. +2023-03-12T13:04:25.732132Z 0 [Note] [MY-000000] [Galera] Shifting SYNCED -> DONOR/DESYNCED (TO: 170407335) +2023-03-12T13:04:25.732176Z 12 [Note] [MY-000000] [Galera] Detected STR version: 1, req_len: 145, req: STRv1 +2023-03-12T13:04:25.732223Z 12 [Note] [MY-000000] [Galera] IST request: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170403895-170407335|ssl://172.17.0.2:4568 +2023-03-12T13:04:25.732267Z 12 [Note] [MY-000000] [Galera] IST first seqno 170403896 not found from cache, falling back to SST +2023-03-12T13:04:25.732274Z 12 [Note] [MY-000000] [Galera] Cert index preload: 170407226 -> 170407335 +2023-03-12T13:04:25.735888Z 12 [Note] [MY-000000] [WSREP] Server status change synced -> donor +2023-03-12T13:04:25.735936Z 12 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:04:25.735999Z 0 [Note] [MY-000000] [Galera] async IST sender starting to serve ssl://172.17.0.2:4568 sending 170407226-170407335, preload starts from 170407226 +2023-03-12T13:04:25.736162Z 0 [Note] [MY-000000] [WSREP] Initiating SST/IST transfer on DONOR side (wsrep_sst_xtrabackup-v2 --role 'donor' --address '172.17.0.2:4444/xtrabackup_sst//1' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql/' --basedir '/usr/' --plugindir '/usr/lib64/mysql/plugin/' --defaults-file '/etc/my.cnf' --defaults-group-suffix '' --mysqld-version '8.0.28-19.1' '' --gtid '9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407335' ) +2023-03-12T13:04:25.736336Z 0 [Note] [MY-000000] [Galera] IST sender 170407226 -> 170407335 +2023-03-12T13:04:25.751114Z 12 [Note] [MY-000000] [WSREP] DONOR thread signaled with 0 +2023-03-12T13:04:27.402034Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') turning message relay requesting off +2023-03-12T13:04:37.415791Z 0 [Note] [MY-000000] [WSREP-SST] Streaming the backup to joiner at 172.17.0.2 4444 +2023-03-12T13:04:37.470192Z 27 [Warning] [MY-013712] [Server] No suitable 'keyring_component_metadata_query' service implementation found to fulfill the request. +2023-03-12T13:04:38.643347Z 0 [Note] [MY-000000] [WSREP-SST] 2023/04/16 15:04:38 socat[2002808] E SSL_write(): Connection reset by peer +2023-03-12T13:04:38.647921Z 0 [Note] [MY-000000] [Galera] declaring a689dc26-80dc at ssl://172.17.0.3:4567 stable +2023-03-12T13:04:38.647981Z 0 [Note] [MY-000000] [Galera] forgetting 35b62086-902c (ssl://172.17.0.2:4567) +2023-03-12T13:04:38.648256Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T13:04:38.648395Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,6) +memb { + 0509936f-8cc2,0 + a689dc26-80dc,0 + } +joined { + } +left { + } +partitioned { + 35b62086-902c,0 + } +) +2023-03-12T13:04:38.648407Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T13:04:38.650097Z 0 [Note] [MY-000000] [Galera] forgetting 35b62086-902c (ssl://172.17.0.2:4567) +2023-03-12T13:04:38.650125Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 2 +2023-03-12T13:04:38.650216Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: 3e756b7d-dc57-11ed-b66e-ba236937ffa3 +2023-03-12T13:04:38.653233Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 3e756b7d-dc57-11ed-b66e-ba236937ffa3 +2023-03-12T13:04:38.653419Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 3e756b7d-dc57-11ed-b66e-ba236937ffa3 from 0 (node3) +2023-03-12T13:04:38.653432Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 3e756b7d-dc57-11ed-b66e-ba236937ffa3 from 1 (node2) +2023-03-12T13:04:38.653440Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 5, + members = 2/2 (primary/total), + act_id = 170407335, + last_appl. = 170407225, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T13:04:38.653478Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [141, 141] +2023-03-12T13:04:38.653608Z 15 [Note] [MY-000000] [Galera] ####### processing CC 170407336, local, ordered +2023-03-12T13:04:38.653633Z 15 [Note] [MY-000000] [Galera] Maybe drain monitors from 170407335 upto current CC event 170407336 upto:170407335 +2023-03-12T13:04:38.653641Z 15 [Note] [MY-000000] [Galera] Drain monitors from 170407335 up to 170407335 +2023-03-12T13:04:38.653650Z 15 [Note] [MY-000000] [Galera] ####### My UUID: 0509936f-dc55-11ed-8cc2-ba331b939383 +2023-03-12T13:04:38.653657Z 15 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T13:04:38.653664Z 15 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T13:04:38.653671Z 15 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170407335 -> 170407336 +2023-03-12T13:04:38.653716Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T13:04:38.656637Z 15 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 0 + members(2): + 0: 0509936f-dc55-11ed-8cc2-ba331b939383, node3 + 1: a689dc26-dc51-11ed-80dc-37422db6f664, node2 +================================================= +2023-03-12T13:04:38.656670Z 15 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:04:38.660110Z 15 [Note] [MY-000000] [Galera] Recording CC from group: 170407336 +2023-03-12T13:04:38.660136Z 15 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 170407226 +2023-03-12T13:04:38.660143Z 15 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403897 +2023-03-12T13:04:39.681816Z 27 [Note] [MY-010914] [Server] Aborted connection 27 to db: 'unconnected' user: 'mysql.pxc.sst.user' host: 'localhost' (Got an error reading communication packets). +2023-03-12T13:04:39.682368Z 0 [ERROR] [MY-000000] [WSREP-SST] ******************* FATAL ERROR ********************** +2023-03-12T13:04:39.682403Z 0 [ERROR] [MY-000000] [WSREP-SST] xtrabackup finished with error: 1. Check /var/lib/mysql//innobackup.backup.log +2023-03-12T13:04:39.682420Z 0 [ERROR] [MY-000000] [WSREP-SST] Line 1964 +2023-03-12T13:04:39.686473Z 0 [ERROR] [MY-000000] [WSREP-SST] ------------ innobackup.backup.log (START) ------------ + 2023-03-12T15:04:37.429771+02:00 0 [Note] [MY-011825] [Xtrabackup] recognized server arguments: --datadir=/var/lib/mysql --tmpdir=/tmp --server-id=11 --log_bin=/binlog/mysql-bin.log --innodb_buffer_pool_size=118G --innodb_log_file_size=512M --innodb_log_buffer_size=400M --innodb_flush_log_at_trx_commit=2 --innodb_read_io_threads=32 --innodb_write_io_threads=32 --innodb_file_per_table=1 --innodb_io_capacity=1000 --innodb_data_home_dir=/var/lib/mysql --innodb_data_file_path=ibdata1:100M:autoextend --innodb_log_group_home_dir=/var/lib/mysql --open_files_limit=200000 --defaults_group=mysqld + 2023-03-12T15:04:37.429930+02:00 0 [Note] [MY-011825] [Xtrabackup] recognized client arguments: --no-version-check=1 --parallel=4 --user=mysql.pxc.sst.user --password=* --socket=/var/lib/mysql/mysql.sock --lock-ddl=1 --backup=1 --galera-info=1 --stream=xbstream --xtrabackup-plugin-dir=/usr/bin/pxc_extra/pxb-8.0/lib/plugin --target-dir=/tmp/pxc_sst_oUpB/donor_xb_f463 + /usr/bin/pxc_extra/pxb-8.0/bin/xtrabackup version 8.0.28-21 based on MySQL server 8.0.28 Linux (x86_64) (revision id: 78878e9b608) + 2023-03-12T15:04:37.429957+02:00 0 [Note] [MY-011825] [Xtrabackup] Connecting to MySQL server host: localhost, user: mysql.pxc.sst.user, password: set, port: not set, socket: /var/lib/mysql/mysql.sock + 2023-03-12T15:04:37.446349+02:00 0 [Note] [MY-011825] [Xtrabackup] Using server version 8.0.28-19.1 + 2023-03-12T15:04:37.454188+02:00 0 [Note] [MY-011825] [Xtrabackup] Executing LOCK TABLES FOR BACKUP ... + 2023-03-12T15:04:37.460561+02:00 0 [Note] [MY-011825] [Xtrabackup] uses posix_fadvise(). + 2023-03-12T15:04:37.460602+02:00 0 [Note] [MY-011825] [Xtrabackup] cd to /var/lib/mysql + 2023-03-12T15:04:37.460614+02:00 0 [Note] [MY-011825] [Xtrabackup] open files limit requested 200000, set to 16364 + 2023-03-12T15:04:37.463189+02:00 0 [Note] [MY-011825] [Xtrabackup] using the following InnoDB configuration: + 2023-03-12T15:04:37.463210+02:00 0 [Note] [MY-011825] [Xtrabackup] innodb_data_home_dir = /var/lib/mysql + 2023-03-12T15:04:37.463215+02:00 0 [Note] [MY-011825] [Xtrabackup] innodb_data_file_path = ibdata1:100M:autoextend + 2023-03-12T15:04:37.463240+02:00 0 [Note] [MY-011825] [Xtrabackup] innodb_log_group_home_dir = /var/lib/mysql + 2023-03-12T15:04:37.463245+02:00 0 [Note] [MY-011825] [Xtrabackup] innodb_log_files_in_group = 2 + 2023-03-12T15:04:37.463252+02:00 0 [Note] [MY-011825] [Xtrabackup] innodb_log_file_size = 536870912 + 2023-03-12T15:04:37.467099+02:00 0 [Note] [MY-013251] [InnoDB] Number of pools: 1 + 2023-03-12T15:04:37.470859+02:00 0 [Note] [MY-011825] [Xtrabackup] inititialize_service_handles suceeded + 2023-03-12T15:04:38.083434+02:00 0 [Note] [MY-011825] [Xtrabackup] Connecting to MySQL server host: localhost, user: mysql.pxc.sst.user, password: set, port: not set, socket: /var/lib/mysql/mysql.sock + 2023-03-12T15:04:38.087445+02:00 0 [Note] [MY-011825] [Xtrabackup] Redo Log Archiving is not set up. + 2023-03-12T15:04:38.188847+02:00 1 [Note] [MY-011825] [Xtrabackup] >> log scanned up to (35636250175941) + 2023-03-12T15:04:38.491830+02:00 0 [Note] [MY-011825] [Xtrabackup] Generating a list of tablespaces + 2023-03-12T15:04:38.491890+02:00 0 [Note] [MY-011825] [Xtrabackup] Generating a list of tablespaces + 2023-03-12T15:04:38.491898+02:00 0 [Note] [MY-012204] [InnoDB] Scanning './' + 2023-03-12T15:04:38.503784+02:00 0 [Note] [MY-012208] [InnoDB] Completed space ID check of 2 files. + 2023-03-12T15:04:38.634258+02:00 0 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_001'. + 2023-03-12T15:04:38.635423+02:00 0 [Note] [MY-013252] [InnoDB] Using undo tablespace './undo_002'. + 2023-03-12T15:04:38.635994+02:00 0 [Note] [MY-012910] [InnoDB] Opened 2 existing undo tablespaces. + 2023-03-12T15:04:38.636020+02:00 0 [Note] [MY-011825] [Xtrabackup] Starting 4 threads for parallel data files transfer + xtrabackup: Error writing file '' (OS errno 32 - Broken pipe) + xtrabackup: Error writing file '' (OS errno 32 - Broken pipe) + xtrabackup: Error writing file '' (OS errno 32 - Broken pipe) + xtrabackup: Error writing file '' (OS errno 32 - Broken pipe) + 2023-03-12T15:04:39.189057+02:00 1 [Note] [MY-011825] [Xtrabackup] Starting to parse redo log at lsn = 35636250175520 + 2023-03-12T15:04:39.189193+02:00 1 [Note] [MY-011825] [Xtrabackup] >> log scanned up to (35636250179092) + +2023-03-12T13:04:39.686520Z 0 [ERROR] [MY-000000] [WSREP-SST] ------------ innobackup.backup.log (END) ------------ +2023-03-12T13:04:39.686529Z 0 [ERROR] [MY-000000] [WSREP-SST] ****************************************************** +2023-03-12T13:04:39.686561Z 0 [ERROR] [MY-000000] [WSREP-SST] Cleanup after exit with status:22 +2023-03-12T13:04:39.715275Z 0 [ERROR] [MY-000000] [WSREP] Process completed with error: wsrep_sst_xtrabackup-v2 --role 'donor' --address '172.17.0.2:4444/xtrabackup_sst//1' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql/' --basedir '/usr/' --plugindir '/usr/lib64/mysql/plugin/' --defaults-file '/etc/my.cnf' --defaults-group-suffix '' --mysqld-version '8.0.28-19.1' '' --gtid '9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407335' : 22 (Invalid argument) +2023-03-12T13:04:39.719890Z 0 [Note] [MY-000000] [Galera] SST sending failed: -22 +2023-03-12T13:04:39.719922Z 0 [Note] [MY-000000] [WSREP] Server status change donor -> joined +2023-03-12T13:04:39.719939Z 0 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:04:39.720007Z 0 [ERROR] [MY-000000] [WSREP] Command did not run: wsrep_sst_xtrabackup-v2 --role 'donor' --address '172.17.0.2:4444/xtrabackup_sst//1' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql/' --basedir '/usr/' --plugindir '/usr/lib64/mysql/plugin/' --defaults-file '/etc/my.cnf' --defaults-group-suffix '' --mysqld-version '8.0.28-19.1' '' --gtid '9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407335' +2023-03-12T13:04:39.720348Z 0 [Warning] [MY-000000] [Galera] Could not find peer: 35b62086-dc57-11ed-902c-32d1f4959542 +2023-03-12T13:04:39.720379Z 0 [Warning] [MY-000000] [Galera] 0.0 (node3): State transfer to -1.-1 (left the group) failed: -22 (Invalid argument) +2023-03-12T13:04:39.720388Z 0 [Note] [MY-000000] [Galera] Shifting DONOR/DESYNCED -> JOINED (TO: 170407336) +2023-03-12T13:04:39.720426Z 0 [Note] [MY-000000] [Galera] Processing event queue:... -nan% (0/0 events) complete. +2023-03-12T13:04:39.720582Z 0 [Note] [MY-000000] [Galera] Member 0.0 (node3) synced with group. +2023-03-12T13:04:39.720594Z 0 [Note] [MY-000000] [Galera] Processing event queue:...100.0% (1/1 events) complete. +2023-03-12T13:04:39.720600Z 0 [Note] [MY-000000] [Galera] Shifting JOINED -> SYNCED (TO: 170407336) +2023-03-12T13:04:39.720640Z 11 [Note] [MY-000000] [Galera] Server node3 synced with group +2023-03-12T13:04:39.720666Z 11 [Note] [MY-000000] [WSREP] Server status change joined -> synced +2023-03-12T13:04:39.720673Z 11 [Note] [MY-000000] [WSREP] Synchronized with group, ready for connections +2023-03-12T13:04:39.720679Z 11 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:04:42.081736Z 0 [Note] [MY-000000] [Galera] async IST sender served +2023-03-12T13:04:43.903421Z 0 [Note] [MY-000000] [Galera] cleaning up 35b62086-902c (ssl://172.17.0.2:4567) +2023-03-12T13:12:13.679000Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.3:4567 +2023-03-12T13:12:13.679070Z 0 [Note] [MY-000000] [Galera] forgetting a689dc26-80dc (ssl://172.17.0.3:4567) +2023-03-12T13:12:13.679097Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T13:12:13.679127Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,7) +memb { + 0509936f-8cc2,0 + } +joined { + } +left { + } +partitioned { + a689dc26-80dc,0 + } +) +2023-03-12T13:12:13.679135Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T13:12:13.681813Z 0 [Note] [MY-000000] [Galera] forgetting a689dc26-80dc (ssl://172.17.0.3:4567) +2023-03-12T13:12:13.681867Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T13:12:13.681979Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x6bdd2b0 +2023-03-12T13:12:13.682038Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: 4dadc154-dc58-11ed-9d05-5b7da94ccf83 +2023-03-12T13:12:13.682058Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T13:12:13.682062Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 4dadc154-dc58-11ed-9d05-5b7da94ccf83 +2023-03-12T13:12:13.682076Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 4dadc154-dc58-11ed-9d05-5b7da94ccf83 from 0 (node3) +2023-03-12T13:12:13.682104Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 6, + members = 1/1 (primary/total), + act_id = 170407336, + last_appl. = 170407225, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T13:12:13.682168Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [100, 100] +2023-03-12T13:12:13.682340Z 14 [Note] [MY-000000] [Galera] ####### processing CC 170407337, local, ordered +2023-03-12T13:12:13.682366Z 14 [Note] [MY-000000] [Galera] Maybe drain monitors from 170407336 upto current CC event 170407337 upto:170407336 +2023-03-12T13:12:13.682375Z 14 [Note] [MY-000000] [Galera] Drain monitors from 170407336 up to 170407336 +2023-03-12T13:12:13.682384Z 14 [Note] [MY-000000] [Galera] ####### My UUID: 0509936f-dc55-11ed-8cc2-ba331b939383 +2023-03-12T13:12:13.682391Z 14 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T13:12:13.682397Z 14 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T13:12:13.682403Z 14 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170407336 -> 170407337 +2023-03-12T13:12:13.682432Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T13:12:13.685466Z 14 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407337 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 0 + members(1): + 0: 0509936f-dc55-11ed-8cc2-ba331b939383, node3 +================================================= +2023-03-12T13:12:13.685491Z 14 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:12:13.689969Z 14 [Note] [MY-000000] [Galera] Recording CC from group: 170407337 +2023-03-12T13:12:13.689992Z 14 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 170407226 +2023-03-12T13:12:13.689998Z 14 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403897 +2023-03-12T13:12:18.945127Z 0 [Note] [MY-000000] [Galera] cleaning up a689dc26-80dc (ssl://172.17.0.3:4567) +2023-03-12T13:13:11.518791Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') connection established to 7026494c-a649 ssl://172.17.0.3:4567 +2023-03-12T13:13:11.519026Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T13:13:12.015998Z 0 [Note] [MY-000000] [Galera] declaring 7026494c-a649 at ssl://172.17.0.3:4567 stable +2023-03-12T13:13:12.016220Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T13:13:12.016350Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,8) +memb { + 0509936f-8cc2,0 + 7026494c-a649,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T13:13:12.016362Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T13:13:12.020360Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 2 +2023-03-12T13:13:12.020465Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: 707380d8-dc58-11ed-8c42-ffcf34d08917 +2023-03-12T13:13:12.024025Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 707380d8-dc58-11ed-8c42-ffcf34d08917 +2023-03-12T13:13:12.024167Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 707380d8-dc58-11ed-8c42-ffcf34d08917 from 0 (node3) +2023-03-12T13:13:12.516516Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 707380d8-dc58-11ed-8c42-ffcf34d08917 from 1 (node2) +2023-03-12T13:13:12.516569Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 7, + members = 1/2 (primary/total), + act_id = 170407337, + last_appl. = 170407225, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T13:13:12.516622Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [141, 141] +2023-03-12T13:13:12.516718Z 14 [Note] [MY-000000] [Galera] ####### processing CC 170407338, local, ordered +2023-03-12T13:13:12.516753Z 14 [Note] [MY-000000] [Galera] Maybe drain monitors from 170407337 upto current CC event 170407338 upto:170407337 +2023-03-12T13:13:12.516761Z 14 [Note] [MY-000000] [Galera] Drain monitors from 170407337 up to 170407337 +2023-03-12T13:13:12.516769Z 14 [Note] [MY-000000] [Galera] ####### My UUID: 0509936f-dc55-11ed-8cc2-ba331b939383 +2023-03-12T13:13:12.516777Z 14 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T13:13:12.516783Z 14 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T13:13:12.516790Z 14 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 170407337 -> 170407338 +2023-03-12T13:13:12.516825Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T13:13:12.520497Z 14 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407338 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 0 + members(2): + 0: 0509936f-dc55-11ed-8cc2-ba331b939383, node3 + 1: 7026494c-dc58-11ed-a649-76a13e89694d, node2 +================================================= +2023-03-12T13:13:12.520522Z 14 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:13:12.525020Z 14 [Note] [MY-000000] [Galera] Recording CC from group: 170407338 +2023-03-12T13:13:12.525043Z 14 [Note] [MY-000000] [Galera] Lowest cert index boundary for CC from group: 170407226 +2023-03-12T13:13:12.525050Z 14 [Note] [MY-000000] [Galera] Min available from gcache for CC from group: 170403897 +2023-03-12T13:13:13.248015Z 0 [Note] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node'. Selected 0.0 (node3)(SYNCED) as donor. +2023-03-12T13:13:13.248065Z 0 [Note] [MY-000000] [Galera] Shifting SYNCED -> DONOR/DESYNCED (TO: 170407338) +2023-03-12T13:13:13.248120Z 14 [Note] [MY-000000] [Galera] Detected STR version: 1, req_len: 145, req: STRv1 +2023-03-12T13:13:13.248173Z 14 [Note] [MY-000000] [Galera] IST request: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336-170407338|ssl://172.17.0.3:4568 +2023-03-12T13:13:13.248187Z 14 [Note] [MY-000000] [WSREP] Server status change synced -> donor +2023-03-12T13:13:13.248194Z 14 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:13:13.248366Z 0 [Note] [MY-000000] [WSREP] Initiating SST/IST transfer on DONOR side (wsrep_sst_xtrabackup-v2 --role 'donor' --address '172.17.0.3:4444/xtrabackup_sst//1' --socket '/var/lib/mysql/mysql.sock' --datadir '/var/lib/mysql/' --basedir '/usr/' --plugindir '/usr/lib64/mysql/plugin/' --defaults-file '/etc/my.cnf' --defaults-group-suffix '' --mysqld-version '8.0.28-19.1' '' --gtid '9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336' --bypass) +2023-03-12T13:13:13.258807Z 14 [Note] [MY-000000] [WSREP] DONOR thread signaled with 0 +2023-03-12T13:13:13.262238Z 0 [Note] [MY-000000] [Galera] async IST sender starting to serve ssl://172.17.0.3:4568 sending 170407226-170407338, preload starts from 170407226 +2023-03-12T13:13:13.262571Z 0 [Note] [MY-000000] [Galera] IST sender 170407226 -> 170407338 +2023-03-12T13:13:13.863959Z 0 [Note] [MY-000000] [WSREP-SST] Bypassing SST. Can work it through IST +2023-03-12T13:13:14.886323Z 0 [Note] [MY-000000] [Galera] SST sent: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:170407336 +2023-03-12T13:13:14.886360Z 0 [Note] [MY-000000] [WSREP] Server status change donor -> joined +2023-03-12T13:13:14.886381Z 0 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:13:14.886942Z 0 [Note] [MY-000000] [Galera] 0.0 (node3): State transfer to 1.0 (node2) complete. +2023-03-12T13:13:14.887000Z 0 [Note] [MY-000000] [Galera] Shifting DONOR/DESYNCED -> JOINED (TO: 170407338) +2023-03-12T13:13:14.887038Z 0 [Note] [MY-000000] [Galera] Processing event queue:... -nan% (0/0 events) complete. +2023-03-12T13:13:14.887223Z 0 [Note] [MY-000000] [Galera] Member 0.0 (node3) synced with group. +2023-03-12T13:13:14.887242Z 0 [Note] [MY-000000] [Galera] Processing event queue:...100.0% (1/1 events) complete. +2023-03-12T13:13:14.887249Z 0 [Note] [MY-000000] [Galera] Shifting JOINED -> SYNCED (TO: 170407338) +2023-03-12T13:13:14.887316Z 10 [Note] [MY-000000] [Galera] Server node3 synced with group +2023-03-12T13:13:14.887351Z 10 [Note] [MY-000000] [WSREP] Server status change joined -> synced +2023-03-12T13:13:14.887358Z 10 [Note] [MY-000000] [WSREP] Synchronized with group, ready for connections +2023-03-12T13:13:14.887364Z 10 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T13:13:14.949907Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') turning message relay requesting off +2023-03-12T13:13:19.153242Z 0 [Note] [MY-000000] [Galera] async IST sender served +2023-03-12T13:13:19.159109Z 0 [Note] [MY-000000] [Galera] 1.0 (node2): State transfer from 0.0 (node3) complete. +2023-03-12T13:13:19.159319Z 0 [Note] [MY-000000] [Galera] Member 1.0 (node2) synced with group. +2023-03-12T13:14:09.771854Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:11.771891Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:13.272088Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:14.772097Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:16.272201Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:17.772458Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:19.272543Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:20.772670Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:22.272921Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:23.772968Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:25.273105Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:26.773306Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:28.273445Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:29.773552Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:31.273573Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:32.773817Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:34.273993Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:35.773962Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:37.274224Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:38.774440Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:40.274544Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:14:41.774658Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:17.119633Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:19.119544Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:20.619728Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:22.119839Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:23.620004Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:25.120130Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:26.620283Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:28.120419Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:29.620757Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:31.120537Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:32.620763Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:34.120894Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:35.621091Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:37.121181Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:38.621332Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:40.121394Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:41.621584Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:43.121667Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:44.621939Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:46.121965Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:47.622082Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T13:25:49.122244Z 0 [Warning] [MY-000000] [Galera] Handshake failed: tlsv1 alert unknown ca +2023-03-12T14:37:48.561512Z 998 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of GET_LOCK with pxc_strict_mode = PERMISSIVE +2023-03-12T14:37:48.599706Z 998 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of RELEASE_LOCK with pxc_strict_mode = PERMISSIVE +2023-03-12T14:37:48.601098Z 998 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of GET_LOCK with pxc_strict_mode = PERMISSIVE +2023-03-12T14:37:48.605034Z 998 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of RELEASE_LOCK with pxc_strict_mode = PERMISSIVE +2023-03-12T14:38:48.809904Z 998 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of GET_LOCK with pxc_strict_mode = PERMISSIVE +2023-03-12T14:38:48.814236Z 998 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of RELEASE_LOCK with pxc_strict_mode = PERMISSIVE +2023-03-12T14:41:50.286201Z 998 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of GET_LOCK with pxc_strict_mode = PERMISSIVE +2023-03-12T14:41:50.290500Z 998 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of RELEASE_LOCK with pxc_strict_mode = PERMISSIVE +2023-03-12T18:23:13.657732Z 0 [Note] [MY-012994] [InnoDB] Truncating UNDO tablespace innodb_undo_001 +2023-03-12T18:23:13.791569Z 0 [Note] [MY-013000] [InnoDB] Completed truncate of undo tablespace innodb_undo_001. +2023-03-12T18:23:25.890871Z 9439 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of LOCK TABLE/FLUSH TABLE WITH READ LOCK/FOR EXPORT with pxc_strict_mode = PERMISSIVE +2023-03-12T18:23:26.109150Z 9370 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of LOCK TABLE/FLUSH TABLE
WITH READ LOCK/FOR EXPORT with pxc_strict_mode = PERMISSIVE +2023-03-12T18:23:26.168361Z 9370 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of LOCK TABLE/FLUSH TABLE
WITH READ LOCK/FOR EXPORT with pxc_strict_mode = PERMISSIVE +2023-03-12T18:23:26.274891Z 9370 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of LOCK TABLE/FLUSH TABLE
WITH READ LOCK/FOR EXPORT with pxc_strict_mode = PERMISSIVE +2023-03-12T18:23:26.436326Z 9370 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of LOCK TABLE/FLUSH TABLE
WITH READ LOCK/FOR EXPORT with pxc_strict_mode = PERMISSIVE +2023-03-12T18:23:26.522503Z 9370 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of LOCK TABLE/FLUSH TABLE
WITH READ LOCK/FOR EXPORT with pxc_strict_mode = PERMISSIVE +2023-03-12T18:23:26.598004Z 9370 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of LOCK TABLE/FLUSH TABLE
WITH READ LOCK/FOR EXPORT with pxc_strict_mode = PERMISSIVE +2023-03-12T18:23:27.451618Z 9370 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of LOCK TABLE/FLUSH TABLE
WITH READ LOCK/FOR EXPORT with pxc_strict_mode = PERMISSIVE +2023-03-12T18:23:29.641170Z 9370 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of LOCK TABLE/FLUSH TABLE
WITH READ LOCK/FOR EXPORT with pxc_strict_mode = PERMISSIVE +2023-03-12T18:23:29.752656Z 9370 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of LOCK TABLE/FLUSH TABLE
WITH READ LOCK/FOR EXPORT with pxc_strict_mode = PERMISSIVE +2023-03-12T18:23:29.850055Z 9370 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of LOCK TABLE/FLUSH TABLE
WITH READ LOCK/FOR EXPORT with pxc_strict_mode = PERMISSIVE +2023-03-12T18:23:30.401871Z 9370 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of LOCK TABLE/FLUSH TABLE
WITH READ LOCK/FOR EXPORT with pxc_strict_mode = PERMISSIVE +2023-03-12T18:23:30.688073Z 9370 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of LOCK TABLE/FLUSH TABLE
WITH READ LOCK/FOR EXPORT with pxc_strict_mode = PERMISSIVE +2023-03-12T18:23:31.225385Z 9370 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of LOCK TABLE/FLUSH TABLE
WITH READ LOCK/FOR EXPORT with pxc_strict_mode = PERMISSIVE +2023-03-12T18:23:31.801766Z 9370 [Warning] [MY-000000] [WSREP] Percona-XtraDB-Cluster doesn't recommend use of LOCK TABLE/FLUSH TABLE
WITH READ LOCK/FOR EXPORT with pxc_strict_mode = PERMISSIVE +2023-03-12T18:23:59.602842Z 0 [Note] [MY-012994] [InnoDB] Truncating UNDO tablespace innodb_undo_002 +2023-03-12T18:23:59.785842Z 0 [Note] [MY-013000] [InnoDB] Completed truncate of undo tablespace innodb_undo_002. +2023-03-12T19:32:27.627616Z 0 [Warning] [MY-000000] [Galera] Failed to report last committed 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178181021, -110 (Connection timed out) +2023-03-12T19:35:05.891346Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') turning message relay requesting on, nonlive peers: ssl://172.17.0.2:4567 +2023-03-12T19:35:05.896568Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') connection established to ca2c2a5f-a82a ssl://172.17.0.2:4567 +2023-03-12T19:35:05.897165Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') connection established to ca2c2a5f-a82a ssl://172.17.0.2:4567 +2023-03-12T19:35:06.375917Z 0 [Note] [MY-000000] [Galera] declaring 7026494c-a649 at ssl://172.17.0.3:4567 stable +2023-03-12T19:35:06.375974Z 0 [Note] [MY-000000] [Galera] declaring ca2c2a5f-a82a at ssl://172.17.0.2:4567 stable +2023-03-12T19:35:06.376237Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T19:35:06.376485Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,9) +memb { + 0509936f-8cc2,0 + 7026494c-a649,0 + ca2c2a5f-a82a,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T19:35:06.376504Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T19:35:06.385445Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 3 +2023-03-12T19:35:06.385550Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: ca7a22c9-dc8d-11ed-964b-af60786b1721 +2023-03-12T19:35:06.385810Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: ca7a22c9-dc8d-11ed-964b-af60786b1721 +2023-03-12T19:35:06.386044Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ca7a22c9-dc8d-11ed-964b-af60786b1721 from 0 (node3) +2023-03-12T19:35:06.386063Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ca7a22c9-dc8d-11ed-964b-af60786b1721 from 1 (node2) +2023-03-12T19:35:06.876362Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ca7a22c9-dc8d-11ed-964b-af60786b1721 from 2 (node1) +2023-03-12T19:35:06.876405Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 8, + members = 2/3 (primary/total), + act_id = 178226773, + last_appl. = 178226713, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T19:35:06.876450Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [173, 173] +2023-03-12T19:35:06.882921Z 14 [Note] [MY-000000] [Galera] ####### processing CC 178226774, local, ordered +2023-03-12T19:35:06.882982Z 14 [Note] [MY-000000] [Galera] Maybe drain monitors from 178226773 upto current CC event 178226774 upto:178226773 +2023-03-12T19:35:06.882991Z 14 [Note] [MY-000000] [Galera] Drain monitors from 178226773 up to 178226773 +2023-03-12T19:35:06.883000Z 14 [Note] [MY-000000] [Galera] ####### My UUID: 0509936f-dc55-11ed-8cc2-ba331b939383 +2023-03-12T19:35:06.883006Z 14 [Note] [MY-000000] [Galera] Skipping cert index reset +2023-03-12T19:35:06.883014Z 14 [Note] [MY-000000] [Galera] REPL Protocols: 10 (5) +2023-03-12T19:35:06.883024Z 14 [Note] [MY-000000] [Galera] ####### Adjusting cert position: 178226773 -> 178226774 +2023-03-12T19:35:06.883065Z 0 [Note] [MY-000000] [Galera] Service thread queue flushed. +2023-03-12T19:35:06.894256Z 14 [Note] [MY-000000] [Galera] ================================================ +View: + id: 9db0bcdf-b31a-11ed-a398-2a4cfdd82049:178226774 + status: primary + protocol_version: 4 + capabilities: MULTI-MASTER, CERTIFICATION, PARALLEL_APPLYING, REPLAY, ISOLATION, PAUSE, CAUSAL_READ, INCREMENTAL_WS, UNORDERED, PREORDERED, STREAMING, NBO + final: no + own_index: 0 + members(3): + 0: 0509936f-dc55-11ed-8cc2-ba331b939383, node3 + 1: 7026494c-dc58-11ed-a649-76a13e89694d, node2 + 2: ca2c2a5f-dc8d-11ed-a82a-ebad461f7ad9, node1 +================================================= +2023-03-12T19:35:06.894299Z 14 [Note] [MY-000000] [WSREP] wsrep_notify_cmd is not defined, skipping notification. +2023-03-12T19:35:07.644520Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:35:07.644560Z 0 [Note] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node'. Selected 0.0 (node3)(SYNCED) as donor. +2023-03-12T19:35:07.644570Z 0 [Note] [MY-000000] [Galera] Shifting SYNCED -> DONOR/DESYNCED (TO: 178226790) +2023-03-12T19:35:08.970060Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') turning message relay requesting off +2023-03-12T19:36:48.590054Z 0 [Note] [MY-000000] [Galera] declaring 7026494c-a649 at ssl://172.17.0.3:4567 stable +2023-03-12T19:36:48.590110Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.2:4567 +2023-03-12T19:36:48.590121Z 0 [Note] [MY-000000] [Galera] forgetting ca2c2a5f-a82a (ssl://172.17.0.2:4567) +2023-03-12T19:36:48.590211Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f9f5c017050 +2023-03-12T19:36:48.590268Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T19:36:48.590443Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T19:36:48.590576Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,10) +memb { + 0509936f-8cc2,0 + 7026494c-a649,0 + } +joined { + } +left { + } +partitioned { + ca2c2a5f-a82a,0 + } +) +2023-03-12T19:36:48.590589Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T19:36:48.597786Z 0 [Note] [MY-000000] [Galera] forgetting ca2c2a5f-a82a (ssl://172.17.0.2:4567) +2023-03-12T19:36:48.597826Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 2 +2023-03-12T19:36:48.597936Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: 076681ec-dc8e-11ed-95fc-de68239e7adb +2023-03-12T19:36:48.609078Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 076681ec-dc8e-11ed-95fc-de68239e7adb +2023-03-12T19:36:48.609130Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 076681ec-dc8e-11ed-95fc-de68239e7adb from 0 (node3) +2023-03-12T19:36:48.609149Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 076681ec-dc8e-11ed-95fc-de68239e7adb from 1 (node2) +2023-03-12T19:36:48.609161Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 9, + members = 2/2 (primary/total), + act_id = 178226790, + last_appl. = 178226713, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T19:36:48.609223Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [141, 141] +2023-03-12T19:36:53.977745Z 0 [Note] [MY-000000] [Galera] cleaning up ca2c2a5f-a82a (ssl://172.17.0.2:4567) +2023-03-12T19:43:17.133756Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') connection established to eefb9c8a-b69a ssl://172.17.0.2:4567 +2023-03-12T19:43:17.133915Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T19:43:17.634138Z 0 [Note] [MY-000000] [Galera] declaring 7026494c-a649 at ssl://172.17.0.3:4567 stable +2023-03-12T19:43:17.634229Z 0 [Note] [MY-000000] [Galera] declaring eefb9c8a-b69a at ssl://172.17.0.2:4567 stable +2023-03-12T19:43:17.634563Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T19:43:17.634876Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,11) +memb { + 0509936f-8cc2,0 + 7026494c-a649,0 + eefb9c8a-b69a,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T19:43:17.634898Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T19:43:17.648163Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 3 +2023-03-12T19:43:17.648274Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: ef4ae07b-dc8e-11ed-92ad-47fe88dd637c +2023-03-12T19:43:17.648583Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: ef4ae07b-dc8e-11ed-92ad-47fe88dd637c +2023-03-12T19:43:17.648804Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ef4ae07b-dc8e-11ed-92ad-47fe88dd637c from 0 (node3) +2023-03-12T19:43:17.648818Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ef4ae07b-dc8e-11ed-92ad-47fe88dd637c from 1 (node2) +2023-03-12T19:43:18.130720Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: ef4ae07b-dc8e-11ed-92ad-47fe88dd637c from 2 (node1) +2023-03-12T19:43:18.130770Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 10, + members = 2/3 (primary/total), + act_id = 178226791, + last_appl. = 178226713, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T19:43:18.130849Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [173, 173] +2023-03-12T19:43:18.913262Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:18.913328Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:19.914073Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:19.914122Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:20.507298Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') turning message relay requesting off +2023-03-12T19:43:20.914902Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:20.914957Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:21.915978Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:21.916033Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:22.916827Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:22.916886Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:23.917756Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:23.917817Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:24.918720Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:24.918783Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:25.919649Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:25.919730Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:26.920625Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:26.920685Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:27.921528Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:27.921600Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:28.922443Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:28.922502Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:29.923377Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:29.923440Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:30.924283Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:30.924347Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:31.925158Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:31.925229Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:32.926036Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:32.926116Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:33.926915Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:33.926991Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:34.927803Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:34.927871Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:35.928643Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:35.928706Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:36.929493Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:36.929559Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:37.930362Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:37.930429Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:38.931118Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:38.931191Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:39.932049Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:39.932125Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:40.932849Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:40.932918Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:41.933679Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:41.933746Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:42.934526Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:42.934592Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:43.935389Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:43.935454Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:44.936239Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:44.936309Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:45.937035Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:45.937100Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:46.937847Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:46.937911Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:47.938763Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:47.938817Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:48.939549Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:48.939617Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:49.940449Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:49.940527Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:50.941348Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:50.941416Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:51.942300Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:51.942357Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:52.943151Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:52.943218Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:53.944002Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:53.944063Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:54.944887Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:54.945003Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:55.945739Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:55.945806Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:56.946739Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:56.946819Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:57.947583Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:57.947661Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:58.948479Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:58.948548Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:43:59.949410Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:43:59.949476Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:00.950250Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:00.950318Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:01.951073Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:01.951177Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:02.951940Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:02.952035Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:03.952818Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:03.952889Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:04.953786Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:04.953872Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:05.954562Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:05.954629Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:06.955455Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:06.955521Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:07.956658Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:07.956724Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:08.957250Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:08.957318Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:09.958231Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:09.958303Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:10.959077Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:10.959145Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:11.960018Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:11.960089Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:12.960869Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:12.960934Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:13.961753Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:13.961833Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:14.962593Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:14.962664Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:15.963510Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:15.963596Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:16.964397Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:16.964474Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:17.965262Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:17.965329Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:18.966077Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:18.966157Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:19.966875Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:19.966934Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:20.967724Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:20.967802Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:21.968535Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:21.968608Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:22.969386Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:22.969444Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:23.971428Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:23.971500Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:24.972103Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:24.972184Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:25.972827Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:25.972885Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:26.973548Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:26.973626Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:27.974263Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:27.974329Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:28.975124Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:28.975191Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:29.975942Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:29.976004Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:30.976741Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:30.976795Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:31.977551Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:31.977602Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:32.978358Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:32.978425Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:33.979102Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:33.979169Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:34.979841Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:34.979915Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:35.980598Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:35.980651Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:36.981397Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:36.981465Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:37.982182Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:37.982254Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:38.982997Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:38.983065Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:39.984662Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:39.984730Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:40.984862Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:40.984931Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:41.985739Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:41.985791Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:42.986573Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:42.986624Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:43.987347Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:43.987400Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:44.988225Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:44.988279Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:45.989001Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:45.989052Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:46.989749Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:46.989798Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:47.990516Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:47.990578Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:48.991328Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:48.991376Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:49.992031Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:49.992082Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:50.992774Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:50.992842Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:51.993520Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:51.993584Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:52.994245Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:52.994303Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:53.995077Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:53.995129Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:54.995886Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:54.995941Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:55.996597Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:55.996648Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:56.997391Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:56.997460Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:57.998865Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:57.998931Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:58.999551Z 0 [Note] [MY-000000] [Galera] may fallback to sst. ist_seqno [170403896] < safe_ist_seqno [170465012] +2023-03-12T19:44:58.999603Z 0 [Warning] [MY-000000] [Galera] Member 2.0 (node1) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T19:44:59.840669Z 0 [Note] [MY-000000] [Galera] declaring 7026494c-a649 at ssl://172.17.0.3:4567 stable +2023-03-12T19:44:59.840734Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.2:42528 +2023-03-12T19:44:59.840745Z 0 [Note] [MY-000000] [Galera] forgetting eefb9c8a-b69a (ssl://172.17.0.2:4567) +2023-03-12T19:44:59.840840Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x7f9f5c0174d0 +2023-03-12T19:44:59.840849Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T19:44:59.841033Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T19:44:59.841173Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,12) +memb { + 0509936f-8cc2,0 + 7026494c-a649,0 + } +joined { + } +left { + } +partitioned { + eefb9c8a-b69a,0 + } +) +2023-03-12T19:44:59.841185Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T19:44:59.848349Z 0 [Note] [MY-000000] [Galera] forgetting eefb9c8a-b69a (ssl://172.17.0.2:4567) +2023-03-12T19:44:59.848409Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 2 +2023-03-12T19:44:59.848553Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: 2c3566a1-dc8f-11ed-a833-dec0bb0819e1 +2023-03-12T19:44:59.855443Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 2c3566a1-dc8f-11ed-a833-dec0bb0819e1 +2023-03-12T19:44:59.855620Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 2c3566a1-dc8f-11ed-a833-dec0bb0819e1 from 0 (node3) +2023-03-12T19:44:59.855635Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 2c3566a1-dc8f-11ed-a833-dec0bb0819e1 from 1 (node2) +2023-03-12T19:44:59.855644Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 11, + members = 2/2 (primary/total), + act_id = 178226792, + last_appl. = 178226713, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T19:44:59.855688Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [141, 141] +2023-03-12T19:45:05.015276Z 0 [Note] [MY-000000] [Galera] cleaning up eefb9c8a-b69a (ssl://172.17.0.2:4567) +2023-03-12T21:55:59.918354Z 0 [Note] [MY-000000] [Galera] Deferred close timer started for socket with remote endpoint: ssl://172.17.0.3:44004 +2023-03-12T21:55:59.918448Z 0 [Note] [MY-000000] [Galera] forgetting 7026494c-a649 (ssl://172.17.0.3:4567) +2023-03-12T21:55:59.918478Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T21:55:59.918503Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,13) +memb { + 0509936f-8cc2,0 + } +joined { + } +left { + } +partitioned { + 7026494c-a649,0 + } +) +2023-03-12T21:55:59.918512Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T21:55:59.924796Z 0 [Note] [MY-000000] [Galera] forgetting 7026494c-a649 (ssl://172.17.0.3:4567) +2023-03-12T21:55:59.924897Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T21:55:59.925061Z 0 [Note] [MY-000000] [Galera] Deferred close timer handle_wait Operation aborted. for 0x6c2bc50 +2023-03-12T21:55:59.925064Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: 792de603-dca1-11ed-bfad-72ca64995156 +2023-03-12T21:55:59.925114Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 792de603-dca1-11ed-bfad-72ca64995156 +2023-03-12T21:55:59.925132Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 792de603-dca1-11ed-bfad-72ca64995156 from 0 (node3) +2023-03-12T21:55:59.925142Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 12, + members = 1/1 (primary/total), + act_id = 178226796, + last_appl. = 178226713, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T21:55:59.925175Z 0 [Note] [MY-000000] [Galera] Deferred close timer destruct +2023-03-12T21:55:59.925188Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [100, 100] +2023-03-12T21:56:05.374698Z 0 [Note] [MY-000000] [Galera] cleaning up 7026494c-a649 (ssl://172.17.0.3:4567) +2023-03-12T21:58:44.388414Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') connection established to db344985-8b41 ssl://172.17.0.3:4567 +2023-03-12T21:58:44.388646Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') turning message relay requesting on, nonlive peers: +2023-03-12T21:58:44.885014Z 0 [Note] [MY-000000] [Galera] declaring db344985-8b41 at ssl://172.17.0.3:4567 stable +2023-03-12T21:58:44.885236Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T21:58:44.885358Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,14) +memb { + 0509936f-8cc2,0 + db344985-8b41,0 + } +joined { + } +left { + } +partitioned { + } +) +2023-03-12T21:58:44.885371Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T21:58:44.887985Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 2 +2023-03-12T21:58:44.888089Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: db814216-dca1-11ed-aa7e-4b87ee079a22 +2023-03-12T21:58:44.893244Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: db814216-dca1-11ed-aa7e-4b87ee079a22 +2023-03-12T21:58:44.893365Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: db814216-dca1-11ed-aa7e-4b87ee079a22 from 0 (node3) +2023-03-12T21:58:45.385479Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: db814216-dca1-11ed-aa7e-4b87ee079a22 from 1 (node2) +2023-03-12T21:58:45.385539Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 13, + members = 1/2 (primary/total), + act_id = 178226797, + last_appl. = 178226713, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T21:58:45.385604Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [141, 141] +2023-03-12T21:58:46.160016Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:47.160736Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:47.390593Z 0 [Note] [MY-000000] [Galera] (0509936f-8cc2, 'ssl://0.0.0.0:4567') turning message relay requesting off +2023-03-12T21:58:48.161511Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:49.162278Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:50.163058Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:51.163825Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:52.164577Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:53.165491Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:54.166597Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:55.167429Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:56.168248Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:57.168986Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:58.169763Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:58:59.170567Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:00.171450Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:01.172286Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:02.173201Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:03.174040Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:04.175237Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:05.176149Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:06.177041Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:07.177814Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:08.178756Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:09.179560Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:10.180302Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:11.181078Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:12.182304Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:13.183112Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:14.183886Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:15.184613Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:16.185406Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:17.186181Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:18.186975Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:19.187744Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:20.188634Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:21.189363Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:22.190255Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:23.191074Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:24.191884Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:25.192729Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:26.193925Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:27.194693Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:28.195515Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:29.196357Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:30.197283Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:31.198074Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:32.198921Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:33.199751Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:34.200480Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:35.201236Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:36.201926Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:37.202639Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:38.203497Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:39.204229Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:40.204938Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:41.205626Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:42.206328Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:43.207012Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:44.207781Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:45.208406Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:46.209127Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:47.209839Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:48.210603Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:49.211361Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:50.211997Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:51.212616Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:52.213332Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:53.214008Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:54.214658Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:55.215358Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:56.216122Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:57.216749Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:58.217457Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T21:59:59.218083Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:00.218763Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:01.219514Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:02.220268Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:03.220966Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:04.221658Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:05.222371Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:06.223023Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:07.223717Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:08.224374Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:09.225010Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:10.225650Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:11.226387Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:12.227059Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:13.227724Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:14.228495Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:15.229163Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:16.229853Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:17.230583Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:18.231332Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:19.232056Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:20.232799Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:21.233537Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:22.234192Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:23.234828Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:24.235536Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:25.236312Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:26.237092Z 0 [Warning] [MY-000000] [Galera] Member 1.0 (node2) requested state transfer from 'node', but it is impossible to select State Transfer donor: Resource temporarily unavailable +2023-03-12T22:00:28.090598Z 0 [Note] [MY-000000] [Galera] forgetting db344985-8b41 (ssl://172.17.0.3:4567) +2023-03-12T22:00:28.090678Z 0 [Note] [MY-000000] [Galera] Node 0509936f-8cc2 state primary +2023-03-12T22:00:28.090696Z 0 [Note] [MY-000000] [Galera] Current view of cluster as seen by this node +view (view_id(PRIM,0509936f-8cc2,15) +memb { + 0509936f-8cc2,0 + } +joined { + } +left { + } +partitioned { + db344985-8b41,0 + } +) +2023-03-12T22:00:28.090705Z 0 [Note] [MY-000000] [Galera] Save the discovered primary-component to disk +2023-03-12T22:00:28.094664Z 0 [Note] [MY-000000] [Galera] forgetting db344985-8b41 (ssl://172.17.0.3:4567) +2023-03-12T22:00:28.094708Z 0 [Note] [MY-000000] [Galera] New COMPONENT: primary = yes, bootstrap = no, my_idx = 0, memb_num = 1 +2023-03-12T22:00:28.094818Z 0 [Note] [MY-000000] [Galera] STATE_EXCHANGE: sent state UUID: 19055b64-dca2-11ed-929e-9fd64ca74617 +2023-03-12T22:00:28.094834Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: sent state msg: 19055b64-dca2-11ed-929e-9fd64ca74617 +2023-03-12T22:00:28.094847Z 0 [Note] [MY-000000] [Galera] STATE EXCHANGE: got state msg: 19055b64-dca2-11ed-929e-9fd64ca74617 from 0 (node3) +2023-03-12T22:00:28.094857Z 0 [Note] [MY-000000] [Galera] Quorum results: + version = 6, + component = PRIMARY, + conf_id = 14, + members = 1/1 (primary/total), + act_id = 178226798, + last_appl. = 178226713, + protocols = 2/10/4 (gcs/repl/appl), + vote policy= 0, + group UUID = 9db0bcdf-b31a-11ed-a398-2a4cfdd82049 +2023-03-12T22:00:28.094887Z 0 [Note] [MY-000000] [Galera] Flow-control interval: [100, 100] +2023-03-12T22:00:33.402233Z 0 [Note] [MY-000000] [Galera] cleaning up db344985-8b41 (ssl://172.17.0.3:4567)