Page MenuHomePhabricator

Switchover x2 master db2144 -> db2142)
Closed, ResolvedPublic

Description

db2144 needs to be rebooted.

Affected wikis:: x2

Checklist:

NEW primary: db2142
OLD primary: db2144

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

Failover prep:

  • Silence alerts on all hosts:
sudo cookbook sre.hosts.downtime --hours 1 -r "Primary switchover x2 T334821" 'A:db-section-x2'
  • Set NEW primary with weight 0 (and depool it from API or vslow/dump groups if it is present).
sudo dbctl instance db2142 set-weight 0
sudo dbctl config commit -m "Set db2142 with weight 0 T334821"
  • Topology changes, move all replicas under NEW primary
This didn't work and I had to use orchestrator: sudo db-switchover --replicating-master --timeout=25 --only-slave-move db2144 db2142
  • Disable puppet on both nodes
sudo cumin 'db2144* or db2142*' 'disable-puppet "primary switchover T334821"'

Failover:

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

Clean up tasks:

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

Event Timeline

Marostegui triaged this task as Medium priority.Apr 17 2023, 6:58 AM
Marostegui updated the task description. (Show Details)
Marostegui moved this task from Triage to In progress on the DBA board.
Marostegui updated the task description. (Show Details)

Mentioned in SAL (#wikimedia-operations) [2023-04-18T06:01:58Z] <marostegui@cumin1001> START - Cookbook sre.hosts.downtime for 1:00:00 on 6 hosts with reason: Primary switchover x2 T334821

Mentioned in SAL (#wikimedia-operations) [2023-04-18T06:02:20Z] <marostegui@cumin1001> END (PASS) - Cookbook sre.hosts.downtime (exit_code=0) for 1:00:00 on 6 hosts with reason: Primary switchover x2 T334821

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

[operations/puppet@production] mariadb: Promote db2144 to x2 master

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

Change 909482 merged by Marostegui:

[operations/puppet@production] mariadb: Promote db2144 to x2 master

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

Mentioned in SAL (#wikimedia-operations) [2023-04-18T06:06:10Z] <marostegui> Starting x2 codfw failover from db2144 to db2142 - T334821

Mentioned in SAL (#wikimedia-operations) [2023-04-18T06:11:02Z] <marostegui@cumin1001> dbctl commit (dc=all): 'Promote db2142 to x2 primary T334821', diff saved to https://phabricator.wikimedia.org/P47054 and previous config saved to /var/cache/conftool/dbconfig/20230418-061101-root.json

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

[operations/dns@master] wmnet: Update x2 CNAME

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

Change 909483 merged by Marostegui:

[operations/dns@master] wmnet: Update x2 CNAME

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

Marostegui updated the task description. (Show Details)

This is all done

All finished included the reboots