How can I remove a node from my galera cluster?

14,577

Solution 1

I just did this. Seems to have worked. On the node you want to evict

Try

>show global status like 'wsrep%';

Copy paste the wsrep_gcomm_uuid

Go to another node and evict from there assuming the UUID = 1de97dad-f609-11e5-8a50-ce2e621b0c42

SET GLOBAL wsrep_provider_options="evs.evict=1de97dad-f609-11e5-8a50-ce2e621b0c42";

If the node is already shut down or non-responsive you can get the UUID from any other node from wsrep_evs_delayed

Solution 2

I see two choices here:

http://www.severalnines.com/blog/online-schema-upgrade-mysql-galera-cluster-using-rsu-method

(You aren't doing RSU, but that involves "removing a node".)

Share:
14,577
Admin
Author by

Admin

Updated on June 16, 2022

Comments

  • Admin
    Admin almost 2 years

    Is there any better way of doing it,apart from setting 'wsrep_cluster_address='gcomm://' for each node that I want to remove?