summaryrefslogtreecommitdiffstats
path: root/health/guides/mysql/mysql_galera_cluster_state_crit.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 02:57:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 02:57:58 +0000
commitbe1c7e50e1e8809ea56f2c9d472eccd8ffd73a97 (patch)
tree9754ff1ca740f6346cf8483ec915d4054bc5da2d /health/guides/mysql/mysql_galera_cluster_state_crit.md
parentInitial commit. (diff)
downloadnetdata-be1c7e50e1e8809ea56f2c9d472eccd8ffd73a97.tar.xz
netdata-be1c7e50e1e8809ea56f2c9d472eccd8ffd73a97.zip
Adding upstream version 1.44.3.upstream/1.44.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'health/guides/mysql/mysql_galera_cluster_state_crit.md')
-rw-r--r--health/guides/mysql/mysql_galera_cluster_state_crit.md46
1 files changed, 46 insertions, 0 deletions
diff --git a/health/guides/mysql/mysql_galera_cluster_state_crit.md b/health/guides/mysql/mysql_galera_cluster_state_crit.md
new file mode 100644
index 00000000..c1ac649e
--- /dev/null
+++ b/health/guides/mysql/mysql_galera_cluster_state_crit.md
@@ -0,0 +1,46 @@
+### Understand the alert
+
+The `mysql_galera_cluster_state_crit` alert is triggered when the Galera node state is either `Undefined`, `Joining`, or `Error`. This indicates that there is an issue with a Galera node in your MySQL Galera Cluster.
+
+### What is a MySQL Galera Cluster?
+
+MySQL Galera Cluster is a synchronous, multi-master database cluster that provides high availability, no data loss, and scalability for your MySQL databases. It uses Galera replication library and MySQL server to achieve these goals.
+
+### Troubleshoot the alert
+
+To troubleshoot the MySQL Galera Cluster State Critical alert, follow these steps:
+
+1. Inspect the MariaDB error log
+
+ Check the MariaDB error log for any relevant error messages that can help identify the issue.
+
+ ```
+ sudo tail -f /var/log/mysql/error.log
+ ```
+
+2. Check the Galera node's status
+
+ Connect to the problematic MySQL node and check the Galera node status by running the following query:
+
+ ```
+ SHOW STATUS LIKE 'wsrep_%';
+ ```
+
+ Take note of the value of `wsrep_local_state` and `wsrep_local_state_comment`.
+
+3. Diagnose the issue
+
+ - If `wsrep_local_state` is 0 (`Undefined`), it means the node is not part of any cluster.
+ - If `wsrep_local_state` is 1 (`Joining`), it means the node is trying to connect or reconnect to the cluster.
+ - If `wsrep_local_state` is 5 (`Error`), it means the node has encountered a consistency error.
+
+4. Resolve the issue
+
+ - For an `Undefined` state, check and fix the wsrep configuration settings and restart the node.
+ - For a `Joining` state, ensure that the node can communicate with the other nodes in the cluster and make sure that the cluster's state is healthy. Then, retry joining the node to the cluster.
+ - For an `Error` state, the node may need to be resynchronized with the cluster. Restart the mysqld process on the affected node, or you may need to perform a full state transfer to recover.
+
+5. Monitor the cluster
+
+ After resolving the issue, monitor the cluster to ensure that all nodes are healthy and remain in-sync.
+