Skip to content
Snippets Groups Projects
Commit 5a663aec authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "mariadb: fix cluster recovery"

parents 756ec498 984cb0a7
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@
# WSREP: Recovered position: <UUID>:<seqno>.
- name: Get MariaDB wsrep recovery seqno
become: true
shell: tail -n 200 /tmp/mariadb_tmp.log | awk -F" " '$0~/Recovered position/{print $NF;exit;}' | awk -F":" '{print $2}'
shell: awk -F" " '/Recovered position/{seqno=$NF} END{split(seqno, a, ":"); print a[2]}' /tmp/mariadb_tmp.log
register: wsrep_recovery_seqno
- name: Removing MariaDB log file from /tmp
......
---
fixes:
- |
Fixed an issue where the MariaDB Cluster recovery process would fail if the
sequence number was not found in the logs. The recovery process now checks
the complete log file for the sequence number and recovers the cluster.
See `LP#1821173 <https://bugs.launchpad.net/kolla-ansible/+bug/1821173>`__
for details.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment