Skip to content

Latest commit

 

History

History
151 lines (97 loc) · 9.74 KB

disaster-recovery.md

File metadata and controls

151 lines (97 loc) · 9.74 KB

Disaster recovery

The systems are built with resiliency in mind, but they may fail in different ways and could cause an incident.

This document covers the most critical scenarios and should be used in case of an incident. They should be regularly tested by following the Disaster recovery testing document. Scenarios:

In this scenario, the Azure Postgres flexible server and the database it contains have been completely lost.

As the point-in-time and snapshot backups created by the Azure Postgres service may not be available if it's been deleted or if there is an Azure region issue, the Postgres server will have to be recreated and the database restored from the nightly github workflow scheduled database backups. These backups are stored in Azure storage accounts and kept for 7 days.

The objectives are:

  • Recreate the lost postgres database server
  • Restore data from nightly backup stored in Azure

Start the incident process (if not already in progress)

Follow the incident playbook and contact the relevant stakeholders as described in create-an-incident-slack-channel-and-inform-the-stakeholders-comms-lead.

Freeze pipeline

Alert developers that no one should merge to main.

  • In github setings, a user with repo admin privileges should update the Branch protection rules and set required PR approvers to 6

Enable maintenance mode

Run the Enable maintenance workflow for the service and environment affected.

The maintenance page message can be updated at any time during the incident.

e.g. https://claim-additional-payments-for-teaching-test-web.test.teacherservices.cloud will now display the maintenance page and

https://claim-additional-payments-for-teaching-temp.test.teacherservices.cloud will display the application.

Recreate the lost postgres database server

Run the deploy workflow to recreate the missing postgres database.

As the maintenance page has been enabled, you will need to:

Restore the data from previous backup in Azure storage

Run the Restore database from Azure storage workflow.

Validate app

Confirm the app is working and can see the restored data. The app is available on the temporary ingress URL.

e.g. https://claim-additional-payments-for-teaching-temp.test.teacherservices.cloud will display the application.

Disable maintenance mode

Run the Disable maintenance workflow for the service and environment affected.

Unfreeze pipeline

Alert developers that merge to main is allowed.

  • In github settings, update the Branch protection rules and set required PR approvers back to 1

Scenario 2: Loss of data

In the case of data loss or corruption, we need to recover the data as soon as possible in order to resume normal service.

The application database is an Azure flexible postgres server. This server has a point-in-time restore (PTR) ability with the resolution of 1 second, available between 5min and 7days. PTR allows you to restore the live server to a point-in-time on a new copy of the server. It does not update the live server itself in any way. Once the new server is available it can be accessed using konduit.sh to check previous data, and data can then be recovered to the original server.

The objectives are:

  • Create a separate new postgres database server
  • Restore data from the current live database to the new postgres database server from a particular point in time
  • Update data into the live database from the new PTR server

Stop the service as soon as possible

If the service is available, even in a degraded mode, there is a risk users may make edits and corrupt the data even more. Or they might access data they should not have access to. To prevent this, stop the web app and/or workers as soon as possible. This can be completed using the kubectl scale command

e.g. [update namespace and deployment names as required]

  • kubectl -n bat-staging get deployments
  • kubectl -n bat-staging scale deployment itt-mentor-services-staging --replicas 0
  • kubectl -n bat-staging scale deployment itt-mentor-services-staging-worker --replicas 0

Note: You can enable maintenance mode first, however it is still recommended to scale down the web and worker apps to prevent any side effects from occuring.

Start the incident process (if not already in progress)

Follow the incident playbook and contact the relevant stakeholders as described in create-an-incident-slack-channel-and-inform-the-stakeholders-comms-lead.

Freeze pipeline

Alert developers that no one should merge to main.

  • In github setings, a user with repo admin privileges should update the Branch protection rules and set required PR approvers to 6

Enable maintenance mode

Run the Enable maintenance workflow for the service and environment affected.

The maintenance page message can be updated at any time during the incident

Consider backing up the database

If users have entered data or new users have signed up, we may need to keep this data for reconciliation later on. Use the Backup database to Azure storage workflow to save a copy of the flawed database. Use a specific name to identify the backup file later on.

Restore postgres database

Run the Restore database from point in time to new database server workflow using a time before the data was deleted. If you need to rerun the workflow, it may fail if the new server was already created. Override the new server name to work around the issue.

Important: You should convert the time to UTC before actually using it. When you record the time, note what timezone you are using. Especially during BST (British Summer Time).

Upload restored database to Azure storage

Use the Backup database to Azure storage workflow and choose the restored server as input. Use a specific name to identify the backup file later on.

Validate data

It may be necessary to connect to the PTR postgres server for troubleshooting, before deciding on a full restore or otherwise. For instance, the PTR restore may have to be rerun with a different date/time.

To connect to the PTR postgres copy using psql via konduit:

  • Install konduit.sh locally using the make command
  • Run: bin/konduit.sh -x -n <namespace-of-deployment> -s <name-of-ptr-server> <name-of-deployment> -- psql

e.g. bin/konduit.sh -x -n tra-test -s s189t01-ittms-stg-pg-ptr itt-mentor-services-staging -- psql

To connect to the existing live postgres server for comparison:

  • Run: bin/konduit.sh -x name-of-deployment -- psql

e.g. bin/konduit.sh -x itt-mentor-services-staging -- psql

Restore data into the live server

To perform a complete restore of the live server from the PTR copy, use the Restore database from Azure storage workflow and choose the backup file created above to restore to the live postgres server.

Restart applications

e.g. [update namespace, deployment names and replicas as required]

  • kubectl -n bat-staging get deployments
  • kubectl -n bat-staging scale deployment itt-mentor-services-staging --replicas 2
  • kubectl -n bat-staging scale deployment itt-mentor-services-staging-worker --replicas 1

Validate app

Confirm the app is working and can see the restored data. If the maintenance page is enabled, the app is available on the temporary ingress URL.

Disable maintenance mode

Run the Disable maintenance workflow for the service and environment affected

Unfreeze pipeline

Alert developers that merge to main is allowed.

  • In github settings, update the Branch protection rules and set required PR approvers back to 1

Tidy up

If a PTR was run, the database copy server should be deleted.

If this document is being followed as part of a DR test, then complete DR test post scenario steps

Post DR review

  • Schedule an incident retro meeting with all the stakeholders
  • Review the incident and fill in the incident report
  • Raise trello cards for any process improvements