Page MenuHomePhabricator

Switchover es4 codfw master (es2021 -> es2020)
Closed, ResolvedPublic

Description

When: Anytime - no in use

Checklist:

NEW primary: es2020
OLD primary: es2021

  • Check configuration differences between new and old primary:
sudo pt-config-diff --defaults-file /root/.my.cnf h=es2021.codfw.wmnet h=es2020.codfw.wmnet

Failover prep:

  • Silence alerts on all hosts:
sudo cookbook sre.hosts.downtime --hours 1 -r "Primary switchover es4 T317507" '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 es2020 set-weight 0
sudo dbctl config commit -m "Set es2020 with weight 0 T317507"
  • Topology changes, move all replicas under NEW primary
sudo db-switchover --read-only-master --replicating-master --timeout=25 --only-slave-move es2021 es2020
  • Disable puppet on both nodes
sudo cumin 'es2021* or es2020*' 'disable-puppet "primary switchover T317507"'

Failover:

  • Log the failover:
!log Starting es4 codfw failover from es2021 to es2020 - T317507
  • Switch primaries:
sudo db-switchover --read-only-master --replicating-master  --skip-slave-move es2021 es2020
echo "===== es2021 (OLD)"; sudo db-mysql es2021 -e 'show slave status\G'
echo "===== es2020 (NEW)"; sudo db-mysql es2020 -e 'show slave status\G'
  • Promote NEW primary in dbctl, and remove read-only
sudo dbctl --scope codfw section es4 set-master es2020
sudo dbctl --scope codfw section es4 rw
sudo dbctl config commit -m "Promote es2020 to es4 primary and set section read-write T317507"
  • Restart puppet on both hosts:
sudo cumin 'es2021* or es2020*' 'run-puppet-agent -e "primary switchover T317507"'

Clean up tasks:

  • Clean up heartbeat table(s).
sudo db-mysql es2020 heartbeat -e "delete from heartbeat where file like 'es2021%';"
  • change events for query killer:
events_coredb_master.sql on the new primary es2020
events_coredb_slave.sql on the new slave es2021
  • Update candidate primary dbctl and orchestrator notes
sudo dbctl instance es2021 set-candidate-master --section es4 true
sudo dbctl instance es2020 set-candidate-master --section es4 false
(dborch1001): sudo orchestrator-client -c untag -i es2020 --tag name=candidate
(dborch1001): sudo orchestrator-client -c tag -i es2021 --tag name=candidate
sudo db-mysql db1115 zarcillo -e "select * from masters where section = 'es4';"
  • (If needed): Depool es2021 for maintenance.
sudo dbctl instance es2021 depool
sudo dbctl config commit -m "Depool es2021 T317507"
  • Change es2021 weight to mimic the previous weight es2020:
sudo dbctl instance es2021 edit
  • Update/resolve this ticket.

Event Timeline

Marostegui triaged this task as Medium priority.
Marostegui added a project: DBA.
Marostegui updated the task description. (Show Details)

Mentioned in SAL (#wikimedia-operations) [2022-09-12T05:19:06Z] <marostegui@cumin1001> dbctl commit (dc=all): 'Depool es2020 for upgrade T317507', diff saved to https://phabricator.wikimedia.org/P34431 and previous config saved to /var/cache/conftool/dbconfig/20220912-051906-root.json

Mentioned in SAL (#wikimedia-operations) [2022-09-12T05:21:21Z] <marostegui> dbmaint Reboot es2020 for kernel upgrade T317507

Mentioned in SAL (#wikimedia-operations) [2022-09-12T05:22:49Z] <marostegui@cumin1001> START - Cookbook sre.hosts.downtime for 1:00:00 on 6 hosts with reason: Primary switchover es4 T317507

Mentioned in SAL (#wikimedia-operations) [2022-09-12T05:23:05Z] <marostegui@cumin1001> END (PASS) - Cookbook sre.hosts.downtime (exit_code=0) for 1:00:00 on 6 hosts with reason: Primary switchover es4 T317507

Mentioned in SAL (#wikimedia-operations) [2022-09-12T07:33:17Z] <marostegui@cumin1001> START - Cookbook sre.hosts.downtime for 1:00:00 on 6 hosts with reason: Primary switchover es4 T317507

Mentioned in SAL (#wikimedia-operations) [2022-09-12T07:33:34Z] <marostegui@cumin1001> END (PASS) - Cookbook sre.hosts.downtime (exit_code=0) for 1:00:00 on 6 hosts with reason: Primary switchover es4 T317507

Mentioned in SAL (#wikimedia-operations) [2022-09-12T07:34:08Z] <marostegui@cumin1001> dbctl commit (dc=all): 'Set es2020 with weight 0 T317507', diff saved to https://phabricator.wikimedia.org/P34453 and previous config saved to /var/cache/conftool/dbconfig/20220912-073408-root.json

Change 831464 had a related patch set uploaded (by Marostegui; author: Marostegui):

[operations/puppet@production] mariadb: Promote es2020 to es4 master

https://gerrit.wikimedia.org/r/831464

Change 831464 merged by Marostegui:

[operations/puppet@production] mariadb: Promote es2020 to es4 master

https://gerrit.wikimedia.org/r/831464

Mentioned in SAL (#wikimedia-operations) [2022-09-12T07:39:21Z] <marostegui> Starting es4 codfw failover from es2021 to es2020 - T317507

Mentioned in SAL (#wikimedia-operations) [2022-09-12T07:41:01Z] <marostegui@cumin1001> dbctl commit (dc=all): 'Promote es2020 to es4 primary and set section read-write T317507', diff saved to https://phabricator.wikimedia.org/P34454 and previous config saved to /var/cache/conftool/dbconfig/20220912-074100-root.json

Mentioned in SAL (#wikimedia-operations) [2022-09-12T07:42:59Z] <marostegui@cumin1001> dbctl commit (dc=all): 'Depool es2021 T317507', diff saved to https://phabricator.wikimedia.org/P34455 and previous config saved to /var/cache/conftool/dbconfig/20220912-074258-root.json

es2021 (old master) got mysql and kernel upgraded