I met a disability while using galeracluser and I have a question.
I'm using MariaDB 10.5.13 version with Galera Cluster. The issue I'm facing is that all nodes are slowing down due to a query, resulting in connection timeouts.
Here's the scenario:
CREATE TABLE item_temp AS SELECT COUNT(*) FROM item WHERE item_status = 1;
UPDATE item SET item_status = 3 where id = (select id from item_temp);
4-1. killed maria db of 'A' node. and I tried restarting 'A' maria db but failed
c node 
My suspicion is that the update query caused the issue, but I'm unsure why all nodes slowed down. Here are my hypotheses:
The create query might still be in the process list, causing all write transactions to be blocked, which could have had an impact. Alternatively, the update query might have been applied immediately and replicated to other nodes simultaneously, resulting in many node updates and impacting the server. Any insights into why all nodes slowed down would be greatly appreciated.
I want to know why not only the node where the update query occurred slowed down, but also to other nodes
+++
Instance RAM usage is as follows.

The innodb buffer is.

The row size of the item table used in the ddl statement is as follows.
0.18 KB
I was analyzing node c and found the following log, after the create statement occurred.

2024-03-15 13:22:34 8 [ERROR] mysqld: Error writing file 'mariadb-bin' (errno: 1950 "Unknown error 1950") 2024-03-15 13:22:34 8 [ERROR] Slave SQL: Could not execute Write_rows_v1 event on table test.item_temp; An attempt was made to binlog GTID 0-1-117195197 which would create an out-of-order sequence number with existing GTID 0-1-117195197, and gtid strict mode is enabled, Error_code: 1950; Error writing file 'mariadb-bin' (errno: 1950 "Unknown error 1950"), Error_code: 1026; the event's master log FIRST, end_log_pos 319, Internal MariaDB error code: 1950 2024-03-15 13:22:34 8 [Warning] WSREP: Event 4 Write_rows_v1 apply failed: 1, seqno 117208461
It was not fully confirmed, but we observed that CTAS statements could cause crashes in earlier versions.
After upgrading to a newer version, the issue was resolved.
The previous version was MariaDB 10.5.13, and this issue appears to have been resolved starting from MariaDB 10.5.16.
We upgraded to MariaDB 10.5.27, and the problem has not reoccurred since then.
The following issues appear to be related.