**When:** FIXME
**Checklist:**
[] Create a task to communicate the chosen date and send an announcement to the community: FIXME
[] Create a calendar entry for the maintenance, invite sre-data-persistence@
[] Add to deployments calendar. E.g.:
```
{{Deployment calendar event card
|when=2021-08-24 23:00 SF
|length=0.5
|window=Database primary switchover for s7
|who={{ircnick|kormat|Stevie Beth Mhaol}}, {{ircnick|marostegui|Manuel 'Early Bird' Arostegui}}, {{ircnick|Amir1|Amir}}
|what=https://phabricator.wikimedia.org/T301850
}}
```
NEW primary: db1123
OLD primary: db1157
[] Check configuration differences between new and old primary:
```
sudo pt-config-diff --defaults-file /root/.my.cnf h=db1157.eqiad.wmnet h=db1123.eqiad.wmnet
```
**Failover prep:**
[] Silence alerts on all hosts:
```
sudo cookbook sre.hosts.downtime --hours 1 -r "Primary switchover s3 T301850" 'A:db-section-s3'
```
[] Set NEW primary with weight 0
```
sudo dbctl instance db1123 set-weight 0
sudo dbctl config commit -m "Set db1123 with weight 0 T301850"
```
[] Topology changes, move all replicas under NEW primary
```
sudo db-switchover --timeout=15 --only-slave-move db1157 db1123
```
[] Disable puppet on both nodes
```
sudo cumin 'db1157* or db1123*' 'disable-puppet "primary switchover T301850"'
```
[] Merge gerrit puppet change to promote NEW primary: FIXME
**Failover:**
[] Log the failover:
```
!log Starting s3 eqiad failover from db1157 to db1123 - T301850
```
[] Set section read-only:
```
sudo dbctl --scope eqiad section s3 ro "Maintenance until 05:15 UTC - T301850"
sudo dbctl config commit -m "Set s3 eqiad as read-only for maintenance - T301850"
```
[] Check s3 is indeed read-only
[] Switch primaries:
```
sudo db-switchover --skip-slave-move db1157 db1123
echo "===== db1157 (OLD)"; sudo db-mysql db1157 -e 'show slave status\G'
echo "===== db1123 (NEW)"; sudo db-mysql db1123 -e 'show slave status\G'
```
[] Promote NEW primary in dbctl, and remove read-only
```
sudo dbctl --scope eqiad section s3 set-master db1123
sudo dbctl --scope eqiad section s3 rw
sudo dbctl config commit -m "Promote db1123 to s3 primary and set section read-write T301850"
```
[] Restart puppet on both hosts:
```
sudo cumin 'db1157* or db1123*' 'run-puppet-agent -e "primary switchover T301850"'
```
**Clean up tasks:**
[] Clean up heartbeat table(s).
[] change events for query killer:
```
events_coredb_master.sql on the new primary db1123
events_coredb_slave.sql on the new slave db1157
```
[] Update DNS: FIXME
[] Update candidate primary dbctl notes
```
sudo dbctl instance db1157 set-candidate-master --section s3 true
sudo dbctl instance db1123 set-candidate-master --section s3 false
```
[] Check zarcillo was updated
** db-switchover should do this. If it fails, do it manually: https://phabricator.wikimedia.org/P13956
[] (If needed): Depool db1157 for maintenance.
```
sudo dbctl instance db1157 depool
sudo dbctl config commit -m "Depool db1157 T301850"
```
[] Apply outstanding schema changes to db1157: T300381 T300775 T298554
[] Update/resolve this ticket.