mysqltest: At line 178: query 'INSERT INTO t1(b) values (2)' failed with wrong errno 2013: 'Lost connection to MySQL server during query', instead of 0...
- "In Galera if you use CACHE you should set INCREMENT BY 0"
- " to behave correctly in a cluster");
+ "CACHE without INCREMENT BY 0 in Galera cluster");
return(true);
}
Currently it prints
ERROR 42000: This version of MariaDB doesn't yet support 'Galera cluster does support only InnoDB sequences'
which looks rather silly
Sergei Golubchik
added a comment - And, please, when fixing sequences, apply the following patch too (I cannot do it while the test is crashing):
--- a/sql/sql_table.cc
+++ b/sql/sql_table.cc
@@ -5324,7 +5324,7 @@ bool wsrep_check_sequence(THD* thd, const sequence_defini>
if (db_type != DB_TYPE_INNODB)
{
my_error(ER_NOT_SUPPORTED_YET, MYF(0),
- "Galera cluster does support only InnoDB sequences");
+ "non-InnoDB sequences in Galera cluster");
return(true);
}
@@ -5335,8 +5335,7 @@ bool wsrep_check_sequence(THD* thd, const sequence_defini>
seq->cache)
{
my_error(ER_NOT_SUPPORTED_YET, MYF(0),
- "In Galera if you use CACHE you should set INCREMENT BY 0"
- " to behave correctly in a cluster");
+ "CACHE without INCREMENT BY 0 in Galera cluster");
return(true);
}
Currently it prints
ERROR 42000: This version of MariaDB doesn't yet support 'Galera cluster does support only InnoDB sequences'
which looks rather silly
janlindstrom At the moment we have a server crash and lost connection, and not just a hang in the test:
CURRENT_TEST: galera.galera_sequences
mysqltest: At line 236: query 'INSERT INTO t1(b) values (1),(2),(3),(4),(5),(6),(7),(8),(9)' failed with wrong errno 2013: 'Lost connection to MySQL server during query', instead of 0...
The result from queries just before the failure was:
< snip >
@@auto_increment_offset
2
SET SESSION wsrep_sync_wait=0;
connection node_1;
connection node_2;
connection node_1;
DROP SEQUENCE t;
DROP TABLE t1;
CREATE SEQUENCE t INCREMENT BY 0 NOCACHE ENGINE=INNODB;
DROP SEQUENCE t;
CREATE SEQUENCE t INCREMENT BY 1 CACHE=20 ENGINE=INNODB;
ERROR 42000: This version of MariaDB doesn't yet support 'In Galera if you use CACHE you should set INCREMENT BY 0 to behave correctly in a cluster'
CREATE SEQUENCE t INCREMENT BY 0 CACHE=20 ENGINE=INNODB;
CREATE TABLE t1(a int not null primary key default nextval(t), b int) engine=innodb;
connection node_2;
# Wait DDL to replicate
connection node_1;
SET SESSION wsrep_sync_wait=0;
connection node_2;
SET SESSION wsrep_sync_wait=0;
More results from queries before failure can be found in /dev/shm/var/1/log/galera_sequences.log
and:
WSREP_SST: [INFO] rsync SST completed on donor (20230925 06:53:55.214)
2023-09-25 6:53:55 0 [Note] WSREP: Donor monitor thread ended with total time 2 sec
Some pointers may be invalid and cause the dump to abort.
Query (0x563c9ccdc020): INSERT INTO t1(b) values (1),(2),(3),(4),(5),(6),(7),(8),(9)
Connection ID (thread ID): 17
Status: KILL_QUERY
Julius Goryavsky
added a comment - janlindstrom At the moment we have a server crash and lost connection, and not just a hang in the test:
CURRENT_TEST: galera.galera_sequences
mysqltest: At line 236: query 'INSERT INTO t1(b) values (1),(2),(3),(4),(5),(6),(7),(8),(9)' failed with wrong errno 2013: 'Lost connection to MySQL server during query', instead of 0...
The result from queries just before the failure was:
< snip >
@@auto_increment_offset
2
SET SESSION wsrep_sync_wait=0;
connection node_1;
connection node_2;
connection node_1;
DROP SEQUENCE t;
DROP TABLE t1;
CREATE SEQUENCE t INCREMENT BY 0 NOCACHE ENGINE=INNODB;
DROP SEQUENCE t;
CREATE SEQUENCE t INCREMENT BY 1 CACHE=20 ENGINE=INNODB;
ERROR 42000: This version of MariaDB doesn't yet support 'In Galera if you use CACHE you should set INCREMENT BY 0 to behave correctly in a cluster'
CREATE SEQUENCE t INCREMENT BY 0 CACHE=20 ENGINE=INNODB;
CREATE TABLE t1(a int not null primary key default nextval(t), b int) engine=innodb;
connection node_2;
# Wait DDL to replicate
connection node_1;
SET SESSION wsrep_sync_wait=0;
connection node_2;
SET SESSION wsrep_sync_wait=0;
More results from queries before failure can be found in /dev/shm/var/1/log/galera_sequences.log
and:
WSREP_SST: [INFO] rsync SST completed on donor (20230925 06:53:55.214)
2023-09-25 6:53:55 0 [Note] WSREP: Donor monitor thread ended with total time 2 sec
2023-09-25 6:53:55 0 [Note] WSREP: (492dcd42-89d1, 'tcp://0.0.0.0:16002') turning message relay requesting off
2023-09-25 6:53:56 0 [Note] WSREP: async IST sender served
2023-09-25 6:53:56 0 [Note] WSREP: 1.0 (centos74-amd64): State transfer from 0.0 (centos74-amd64) complete.
2023-09-25 6:53:56 0 [Note] WSREP: Member 1.0 (centos74-amd64) synced with group.
2023-09-25 6:53:58 0 [Note] WSREP: Member 1.0 (centos74-amd64) desyncs itself from group
2023-09-25 6:53:58 0 [Note] WSREP: Member 1.0 (centos74-amd64) resyncs itself to group.
2023-09-25 6:53:58 0 [Note] WSREP: Member 1.0 (centos74-amd64) synced with group.
2023-09-25 6:53:58 0 [Note] WSREP: Member 1.0 (centos74-amd64) desyncs itself from group
2023-09-25 6:53:58 0 [Note] WSREP: Member 1.0 (centos74-amd64) resyncs itself to group.
2023-09-25 6:53:58 0 [Note] WSREP: Member 1.0 (centos74-amd64) synced with group.
2023-09-25 6:53:58 1 [ERROR] Slave SQL: Error 'Unknown table 'test.t1'' on query. Default database: 'test'. Query: 'DROP TABLE t1', Internal MariaDB error code: 1051
2023-09-25 6:53:58 1 [Warning] WSREP: Ignoring error 'Unknown table 'test.t1'' on query. Default database: 'test'. Query: 'DROP TABLE t1', Error_code: 1051
2023-09-25 6:53:58 1 [ERROR] Slave SQL: Error 'Unknown SEQUENCE: 'test.sq2'' on query. Default database: 'test'. Query: 'DROP SEQUENCE sq2', Internal MariaDB error code: 4091
2023-09-25 6:53:58 1 [Warning] WSREP: Ignoring error 'Unknown SEQUENCE: 'test.sq2'' on query. Default database: 'test'. Query: 'DROP SEQUENCE sq2', Error_code: 4091
2023-09-25 6:53:58 17 [ERROR] WSREP: FSM: no such a transition REPLICATING -> COMMITTED
230925 6:53:58 [ERROR] mysqld got signal 6 ;
This could be because you hit a bug. It is also possible that this binary
or one of the libraries it was linked against is corrupt, improperly built,
or misconfigured. This error can also be caused by malfunctioning hardware.
To report this bug, see https://mariadb.com/kb/en/reporting-bugs
We will try our best to scrape up some info that will hopefully help
diagnose the problem, but since we have already crashed,
something is definitely wrong and this may fail.
Server version: 10.4.32-MariaDB-log source revision: 3ac25b480055e7e99e46a958c04f9ffb7a6d68cf
key_buffer_size=1048576
read_buffer_size=131072
max_used_connections=2
max_threads=153
thread_count=10
It is possible that mysqld could use up to
key_buffer_size + (read_buffer_size + sort_buffer_size)*max_threads = 63557 K bytes of memory
Hope that's ok; if not, decrease some variables in the equation.
Thread pointer: 0x563c9cbbc808
Attempting backtrace. You can use the following information to find out
where mysqld died. If you see no messages after this, something went
terribly wrong...
stack_bottom = 0x7f6d85e8dc40 thread_stack 0x49000
mysys/stacktrace.c:175(my_print_stacktrace)[0x563c9301d4de]
sql/signal_handler.cc:238(handle_fatal_signal)[0x563c92a6d687]
sigaction.c:0(__restore_rt)[0x7f6d8d4165e0]
/lib64/libc.so.6(gsignal+0x37)[0x7f6d8c86b1f7]
/lib64/libc.so.6(abort+0x148)[0x7f6d8c86c8e8]
src/fsm.hpp:56(galera::FSM<galera::TrxHandle::State, galera::TrxHandle::Transition>::shift_to(galera::TrxHandle::State, int))[0x7f6d892e4cda]
src/replicator_smm.cpp:1423(galera::ReplicatorSMM::commit_order_leave(galera::TrxHandleSlave&, wsrep_buf const*))[0x7f6d892f44bb]
detail/shared_count.hpp:371(galera_commit_order_leave)[0x7f6d892e0468]
/usr/sbin/mysqld(_ZN5wsrep18wsrep_provider_v2618commit_order_leaveERKNS_9ws_handleERKNS_7ws_metaERKNS_14mutable_bufferE+0x91)[0x563c930ab001]
src/wsrep_provider_v26.cpp:969(wsrep::wsrep_provider_v26::commit_order_leave(wsrep::ws_handle const&, wsrep::ws_meta const&, wsrep::mutable_buffer const&))[0x563c930a4ee0]
src/transaction.cpp:579(wsrep::transaction::ordered_commit())[0x563c92b5aae9]
sql/log.cc:7822(MYSQL_BIN_LOG::queue_for_group_commit(MYSQL_BIN_LOG::group_commit_entry*))[0x563c92b6001c]
sql/log.cc:7480(MYSQL_BIN_LOG::write_transaction_to_binlog(THD*, binlog_cache_mngr*, Log_event*, bool, bool, bool))[0x563c92b604b0]
sql/log.cc:516(binlog_cache_mngr::reset(bool, bool))[0x563c92b6066d]
sql/log.cc:1814(binlog_commit_flush_stmt_cache(THD*, bool, binlog_cache_mngr*))[0x563c92b60894]
sql/log.cc:2091(binlog_rollback(handlerton*, THD*, bool))[0x563c92b60a7f]
sql/handler.cc:1956(ha_rollback_trans(THD*, bool))[0x563c92a70f6b]
sql/handler.cc:1747(ha_commit_trans(THD*, bool))[0x563c92a71c94]
sql/transaction.cc:438(trans_commit_stmt(THD*))[0x563c9297121f]
sql/sql_class.h:4028(THD::get_stmt_da())[0x563c92871242]
sql/sql_parse.cc:8013(mysql_parse(THD*, char*, unsigned int, Parser_state*, bool, bool))[0x563c9287903b]
sql/sql_class.h:4028(THD::get_stmt_da())[0x563c928798a6]
sql/sql_parse.cc:1843(dispatch_command(enum_server_command, THD*, char*, unsigned int, bool, bool))[0x563c9287c77e]
sql/sql_parse.cc:1379(do_command(THD*))[0x563c9287ce22]
sql/sql_connect.cc:1420(do_handle_one_connection(CONNECT*))[0x563c92962512]
sql/sql_connect.cc:1326(handle_one_connection)[0x563c929625fd]
perfschema/pfs.cc:1872(pfs_spawn_thread)[0x563c92cef3ed]
pthread_create.c:0(start_thread)[0x7f6d8d40ee25]
/lib64/libc.so.6(clone+0x6d)[0x7f6d8c92e34d]
Trying to get some variables.
Some pointers may be invalid and cause the dump to abort.
Query (0x563c9ccdc020): INSERT INTO t1(b) values (1),(2),(3),(4),(5),(6),(7),(8),(9)
Connection ID (thread ID): 17
Status: KILL_QUERY
Julius Goryavsky
added a comment - - edited Fix merged with head revision: https://github.com/MariaDB/server/commit/e913f4e11e1e519196f276d7c5689f653e724547
Remaining part moved to separate task: https://jira.mariadb.org/browse/MDEV-32561
People
Julius Goryavsky
Elena Stepanova
Votes:
1Vote for this issue
Watchers:
9Start watching this issue
Dates
Created:
Updated:
Resolved:
Git Integration
Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.
{"report":{"fcp":1013.5999999046326,"ttfb":217.79999995231628,"pageVisibility":"visible","entityId":124640,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"0ac2bf89-a9ad-4ed0-8fca-439178aa41f6","navigationType":0,"readyForUser":1159.0999999046326,"redirectCount":0,"resourceLoadedEnd":1428.5999999046326,"resourceLoadedStart":255.70000004768372,"resourceTiming":[{"duration":236.89999985694885,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":255.70000004768372,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":255.70000004768372,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":492.59999990463257,"responseStart":0,"secureConnectionStart":0},{"duration":236.70000004768372,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/css/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":256.09999990463257,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":256.09999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":492.7999999523163,"responseStart":0,"secureConnectionStart":0},{"duration":250.79999995231628,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":256.2999999523163,"connectEnd":256.2999999523163,"connectStart":256.2999999523163,"domainLookupEnd":256.2999999523163,"domainLookupStart":256.2999999523163,"fetchStart":256.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":256.2999999523163,"responseEnd":507.09999990463257,"responseStart":507.09999990463257,"secureConnectionStart":256.2999999523163},{"duration":287.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/2d8175ec2fa4c816e8023260bd8c1786-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/js/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":256.39999985694885,"connectEnd":256.39999985694885,"connectStart":256.39999985694885,"domainLookupEnd":256.39999985694885,"domainLookupStart":256.39999985694885,"fetchStart":256.39999985694885,"redirectEnd":0,"redirectStart":0,"requestStart":256.39999985694885,"responseEnd":543.8999998569489,"responseStart":543.8999998569489,"secureConnectionStart":256.39999985694885},{"duration":291.39999985694885,"initiatorType":"script","name":"https://jira.mariadb.org/s/a9324d6758d385eb45c462685ad88f1d-CDN/lu2cib/820016/12ta74/c92c0caa9a024ae85b0ebdbed7fb4bd7/_/download/contextbatch/js/atl.global,-_super/batch.js?locale=en","startTime":256.7000000476837,"connectEnd":256.7000000476837,"connectStart":256.7000000476837,"domainLookupEnd":256.7000000476837,"domainLookupStart":256.7000000476837,"fetchStart":256.7000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":256.7000000476837,"responseEnd":548.0999999046326,"responseStart":548,"secureConnectionStart":256.7000000476837},{"duration":291.59999990463257,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-en/jira.webresources:calendar-en.js","startTime":257,"connectEnd":257,"connectStart":257,"domainLookupEnd":257,"domainLookupStart":257,"fetchStart":257,"redirectEnd":0,"redirectStart":0,"requestStart":257,"responseEnd":548.5999999046326,"responseStart":548.5999999046326,"secureConnectionStart":257},{"duration":291.90000009536743,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-localisation-moment/jira.webresources:calendar-localisation-moment.js","startTime":257.09999990463257,"connectEnd":257.09999990463257,"connectStart":257.09999990463257,"domainLookupEnd":257.09999990463257,"domainLookupStart":257.09999990463257,"fetchStart":257.09999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":257.09999990463257,"responseEnd":549,"responseStart":549,"secureConnectionStart":257.09999990463257},{"duration":400.7000000476837,"initiatorType":"link","name":"https://jira.mariadb.org/s/b04b06a02d1959df322d9cded3aeecc1-CDN/lu2cib/820016/12ta74/a2ff6aa845ffc9a1d22fe23d9ee791fc/_/download/contextbatch/css/jira.global.look-and-feel,-_super/batch.css","startTime":257.2999999523163,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":257.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":658,"responseStart":0,"secureConnectionStart":0},{"duration":292,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":257.5,"connectEnd":257.5,"connectStart":257.5,"domainLookupEnd":257.5,"domainLookupStart":257.5,"fetchStart":257.5,"redirectEnd":0,"redirectStart":0,"requestStart":257.5,"responseEnd":549.5,"responseStart":549.5,"secureConnectionStart":257.5},{"duration":400.60000014305115,"initiatorType":"link","name":"https://jira.mariadb.org/s/3ac36323ba5e4eb0af2aa7ac7211b4bb-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/css/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.css?jira.create.linked.issue=true","startTime":257.59999990463257,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":257.59999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":658.2000000476837,"responseStart":0,"secureConnectionStart":0},{"duration":292.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/5d5e8fe91fbc506585e83ea3b62ccc4b-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/js/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.js?jira.create.linked.issue=true&locale=en","startTime":257.7000000476837,"connectEnd":257.7000000476837,"connectStart":257.7000000476837,"domainLookupEnd":257.7000000476837,"domainLookupStart":257.7000000476837,"fetchStart":257.7000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":257.7000000476837,"responseEnd":550.2000000476837,"responseStart":550.2000000476837,"secureConnectionStart":257.7000000476837},{"duration":691.2999999523163,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-js/jira.webresources:bigpipe-js.js","startTime":259,"connectEnd":259,"connectStart":259,"domainLookupEnd":259,"domainLookupStart":259,"fetchStart":259,"redirectEnd":0,"redirectStart":0,"requestStart":259,"responseEnd":950.2999999523163,"responseStart":950.2999999523163,"secureConnectionStart":259},{"duration":1169.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-init/jira.webresources:bigpipe-init.js","startTime":259.09999990463257,"connectEnd":259.09999990463257,"connectStart":259.09999990463257,"domainLookupEnd":259.09999990463257,"domainLookupStart":259.09999990463257,"fetchStart":259.09999990463257,"redirectEnd":0,"redirectStart":0,"requestStart":259.09999990463257,"responseEnd":1428.5999999046326,"responseStart":1428.5999999046326,"secureConnectionStart":259.09999990463257},{"duration":294.59999990463257,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":670.5,"connectEnd":670.5,"connectStart":670.5,"domainLookupEnd":670.5,"domainLookupStart":670.5,"fetchStart":670.5,"redirectEnd":0,"redirectStart":0,"requestStart":670.5,"responseEnd":965.0999999046326,"responseStart":965.0999999046326,"secureConnectionStart":670.5},{"duration":541.0999999046326,"initiatorType":"script","name":"https://www.google-analytics.com/analytics.js","startTime":1000.2000000476837,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1000.2000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1541.2999999523163,"responseStart":0,"secureConnectionStart":0},{"duration":510.2000000476837,"initiatorType":"link","name":"https://jira.mariadb.org/s/d5715adaadd168a9002b108b2b039b50-CDN/lu2cib/820016/12ta74/be4b45e9cec53099498fa61c8b7acba4/_/download/contextbatch/css/jira.project.sidebar,-_super,-project.issue.navigator,-jira.general,-jira.browse.project,-jira.view.issue,-jira.global,-atl.general,-com.atlassian.jira.projects.sidebar.init/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":1026,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":1026,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1536.2000000476837,"responseStart":0,"secureConnectionStart":0},{"duration":461.2999999523163,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/e65b778d185daf5aee24936755b43da6/_/download/contextbatch/js/browser-metrics-plugin.contrib,-_super,-project.issue.navigator,-jira.view.issue,-atl.general/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":1027.2000000476837,"connectEnd":1027.2000000476837,"connectStart":1027.2000000476837,"domainLookupEnd":1027.2000000476837,"domainLookupStart":1027.2000000476837,"fetchStart":1027.2000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":1027.2000000476837,"responseEnd":1488.5,"responseStart":1488.5,"secureConnectionStart":1027.2000000476837},{"duration":469.90000009536743,"initiatorType":"script","name":"https://jira.mariadb.org/s/097ae97cb8fbec7d6ea4bbb1f26955b9-CDN/lu2cib/820016/12ta74/be4b45e9cec53099498fa61c8b7acba4/_/download/contextbatch/js/jira.project.sidebar,-_super,-project.issue.navigator,-jira.general,-jira.browse.project,-jira.view.issue,-jira.global,-atl.general,-com.atlassian.jira.projects.sidebar.init/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":1027.7999999523163,"connectEnd":1027.7999999523163,"connectStart":1027.7999999523163,"domainLookupEnd":1027.7999999523163,"domainLookupStart":1027.7999999523163,"fetchStart":1027.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":1027.7999999523163,"responseEnd":1497.7000000476837,"responseStart":1497.7000000476837,"secureConnectionStart":1027.7999999523163}],"fetchStart":0,"domainLookupStart":0,"domainLookupEnd":0,"connectStart":0,"connectEnd":0,"requestStart":3,"responseStart":218,"responseEnd":230,"domLoading":252,"domInteractive":1472,"domContentLoadedEventStart":1472,"domContentLoadedEventEnd":1536,"domComplete":2349,"loadEventStart":2350,"loadEventEnd":2350,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1430.5},{"name":"bigPipe.sidebar-id.end","time":1431.5},{"name":"bigPipe.activity-panel-pipe-id.start","time":1431.7000000476837},{"name":"bigPipe.activity-panel-pipe-id.end","time":1436.5999999046326},{"name":"activityTabFullyLoaded","time":1596.0999999046326}],"measures":[],"correlationId":"5b847898ad4251","effectiveType":"4g","downlink":9.3,"rtt":0,"serverDuration":146,"dbReadsTimeInMs":15,"dbConnsTimeInMs":25,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
FYI, I've fixed galera.galera_as_slave_gtid_myisam in 10.10 and wsrep.wsrep_provider_plugin_defaults in 11.0