Page MenuHomePhabricator

Switchover s2 master (db1122 -> db1162)
Closed, ResolvedPublic

Description

When: During a pre-defined DBA maintenance windows

Affected wikis:: https://noc.wikimedia.org/conf/highlight.php?file=dblists/s2.dblist

Checklist:

NEW primary: db1162
OLD primary: db1122

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

Failover prep:

  • Silence alerts on all hosts:
sudo cookbook sre.hosts.downtime --hours 1 -r "Primary switchover s2 T334067" 'A:db-section-s2'
  • Set NEW primary with weight 0 (and depool it from API or vslow/dump groups if it is present).
sudo dbctl instance db1162 set-weight 0
sudo dbctl config commit -m "Set db1162 with weight 0 T334067"
  • Topology changes, move all replicas under NEW primary
sudo db-switchover --timeout=25 --replicating-master --read-only-master --only-slave-move db1122 db1162
  • Disable puppet on both nodes
sudo cumin 'db1122* or db1162*' 'disable-puppet "primary switchover T334067"'

Failover:

  • Log the failover:
!log Starting s2 eqiad failover from db1122 to db1162 - T334067
  • Switch primaries:
sudo db-switchover --replicating-master --read-only-master --skip-slave-move db1122 db1162
echo "===== db1122 (OLD)"; sudo db-mysql db1122 -e 'show slave status\G'
echo "===== db1162 (NEW)"; sudo db-mysql db1162 -e 'show slave status\G'
  • Promote NEW primary in dbctl
sudo dbctl --scope eqiad section s2 set-master db1162
sudo dbctl config commit -m "Promote db1162 to s2 primary T334067"
  • Restart puppet on both hosts:
sudo cumin 'db1122* or db1162*' 'run-puppet-agent -e "primary switchover T334067"'

Clean up tasks:

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

Event Timeline

Change 905553 had a related patch set uploaded (by Gerrit maintenance bot; author: Gerrit maintenance bot):

[operations/puppet@production] mariadb: Promote db1162 to s2 master

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

Mentioned in SAL (#wikimedia-operations) [2023-04-05T09:29:50Z] <marostegui@cumin1001> START - Cookbook sre.hosts.downtime for 1:00:00 on 26 hosts with reason: Primary switchover s2 T334067

Marostegui triaged this task as Medium priority.
Marostegui moved this task from Triage to In progress on the DBA board.

Mentioned in SAL (#wikimedia-operations) [2023-04-05T09:30:28Z] <marostegui@cumin1001> END (PASS) - Cookbook sre.hosts.downtime (exit_code=0) for 1:00:00 on 26 hosts with reason: Primary switchover s2 T334067

Mentioned in SAL (#wikimedia-operations) [2023-04-05T09:31:55Z] <marostegui@cumin1001> dbctl commit (dc=all): 'Set db1162 with weight 0 T334067', diff saved to https://phabricator.wikimedia.org/P46038 and previous config saved to /var/cache/conftool/dbconfig/20230405-093155-marostegui.json

Change 905553 merged by Marostegui:

[operations/puppet@production] mariadb: Promote db1162 to s2 master

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

Mentioned in SAL (#wikimedia-operations) [2023-04-05T09:55:38Z] <marostegui> Starting s2 eqiad failover from db1122 to db1162 - T334067

Mentioned in SAL (#wikimedia-operations) [2023-04-05T09:56:00Z] <marostegui@cumin1001> dbctl commit (dc=all): 'Promote db1162 to s2 primary T334067', diff saved to https://phabricator.wikimedia.org/P46039 and previous config saved to /var/cache/conftool/dbconfig/20230405-095600-root.json

Marostegui updated the task description. (Show Details)

All done