When: Anytime, writes will be disabled
- Prerequisites **: https://wikitech.wikimedia.org/wiki/MariaDB/Primary_switchover
Checklist:
NEW primary: es2021
OLD primary: es2020
- Check configuration differences between new and old primary:
sudo pt-config-diff --defaults-file /root/.my.cnf h=es2020.codfw.wmnet h=es2021.codfw.wmnet
- Disable writes in es4 by merging: https://gerrit.wikimedia.org/r/c/operations/mediawiki-config/+/993711
- Check es4 is indeed read-only
Failover prep:
- Silence alerts on all hosts:
sudo cookbook sre.hosts.downtime --hours 1 -r "Primary switchover es4 T356064" 'A:db-section-es4'
- Set NEW primary with weight 0 (and depool it from API or vslow/dump groups if it is present).
sudo dbctl instance es2021 set-weight 0 sudo dbctl config commit -m "Set es2021 with weight 0 T356064"
- Topology changes, move all replicas under NEW primary
sudo db-switchover --timeout=25 --only-slave-move es2020 es2021
- Disable puppet on both nodes
sudo cumin 'es2020* or es2021*' 'disable-puppet "primary switchover T356064"'
- Merge gerrit puppet change to promote NEW primary: https://gerrit.wikimedia.org/r/993835
Failover:
- Log the failover:
!log Starting es4 codfw failover from es2020 to es2021 - T356064
- Switch primaries:
sudo db-switchover --skip-slave-move es2020 es2021 echo "===== es1020 (OLD)"; sudo db-mysql es2020 -e 'show slave status\G' echo "===== es1021 (NEW)"; sudo db-mysql es2021 -e 'show slave status\G'
- Promote NEW primary in dbctl, and remove read-only
sudo dbctl --scope codfw section es4 set-master es2021 sudo dbctl config commit -m "Promote es2021 to es4 primary T356064"
- Restart puppet on both hosts:
sudo cumin 'es2020* or es2021*' 'run-puppet-agent -e "primary switchover T356064"'
Clean up tasks:
- Clean up heartbeat table(s).
sudo db-mysql es2021 heartbeat -e "delete from heartbeat where file like 'es2020%';"
- change events for query killer:
events_coredb_master.sql on the new primary es2021 events_coredb_slave.sql on the new slave es2020
- Update DNS: https://gerrit.wikimedia.org/r/993836
- Update candidate primary dbctl and orchestrator notes
sudo dbctl instance es2020 set-candidate-master --section es4 true sudo dbctl instance es2021 set-candidate-master --section es4 false (dborch1001): sudo orchestrator-client -c untag -i es2021 --tag name=candidate (dborch1001): sudo orchestrator-client -c tag -i es2020 --tag name=candidate
- Check zarcillo was updated
- db-switchover should do this. If it fails, do it manually: https://phabricator.wikimedia.org/P13956
sudo db-mysql db1215 zarcillo -e "select * from masters where section = 'es4';"
- (If needed): Depool es2020 for maintenance.
sudo dbctl instance es2020 depool sudo dbctl config commit -m "Depool es2020 T356064"
- Change es2020 weight to mimic the previous weight es2021:
sudo dbctl instance es2020 edit
- Enable writes in es4 by merging the revert patch: https://gerrit.wikimedia.org/r/c/operations/mediawiki-config/+/993775
- Update/resolve this ticket.