Development Notes
  • Introduction
  • Programming Langauges
    • Java
      • Cache
      • Java Fundamentals
      • Multithreading & Concurrency
      • Spring Boot
        • Spring Security
        • Development tips
      • ORM
        • Mybatis
      • Implementation & Testing
    • Node.js
      • Asynchronous Execution
      • Node.js Notes
    • Python
      • Memo
  • Data Structure & Algorithm
  • Database
  • Design Pattern
  • AWS Notes
    • Services
      • API Gateway
      • CloudHSM
      • Compute & Load Balancing
        • Auto Scaling Group
        • EC2
        • ECS
        • ELB
        • Lambda
      • Data Engineering
        • Athena
        • Batch
        • EMR
        • IoT
        • Kinesis
        • Video Streaming
        • Quicksight
      • Deployment
        • CloudFormation
        • Code Deploy
        • Elastic Beanstalk
        • OpsWorks
        • SAM
        • SSM
      • ElasticSearch
      • Identity & Federation
        • Directory Service
        • IAM
        • Organizations
        • Resource Access Manager (RAM)
        • SSO
        • STS
      • KMS
      • Management Tools
        • Catalog
        • CloudTrail
        • CloudWatch
        • Config
        • Cost Allocation Tags
        • GuardDuty
        • Savings Plans
        • Trusted Advisor
        • X-Ray
      • Migration
        • Cloud Migration: The 6R
        • Disaster Recovery
        • DMS
        • VM Migrations
      • Networking
        • ACM
        • CloudFront
        • Direct Connect
        • EIP & ENI
        • Network Security
        • PrivateLink
        • Route53
        • VPC
        • VPN
      • Service Commnucation
        • Amazon MQ
        • SNS
        • SQS
        • Step Functions
        • SWF
      • Storage
        • Aurora
        • DynamoDB
        • EBS
        • EFS
        • ElastiCache
        • RDS
        • Redshift
        • S3
        • Storage Gateway
      • Other Services
        • Alexa for Business, Lex, Connect
        • AppStream 2.0
        • CloudSearch
        • Comprehend
        • Data Tools
        • Elastic Transcoder
        • Mechanical Turk
        • Rekognition
        • WorkDocs
        • WorkSpaces
    • Well Architect Framework
      • Security
      • Reliability
      • Performance Effeciency
      • Cost Optimization
      • Operational Excellence
    • Labs
      • Webserver Implementation
      • ELB Implementation
      • Auto-scaling Implementation
      • A 3-tier Architecture In VPC
  • Architecture
    • Security
  • Spark
    • Memo
  • Conference Notes
    • Notes of JCConf 2017
  • AI Notes
Powered by GitBook
On this page

Was this helpful?

  1. AWS Notes
  2. Services
  3. Migration

Disaster Recovery

PreviousCloud Migration: The 6RNextDMS

Last updated 4 years ago

Was this helpful?

RTO & RPO

DR Strategies

  • Backup & Restore

    • High RPO & RTO but cheapest

  • Pilot Light

    • Critical part of the application is in the cloud (DB)

  • Warm Standby

    • Full system is up and running with a minimum scale

    • Upon disaster, scale up for production load

  • Hot Site / Multi Site

    • Lowest RTO but expensive

    • Full Production Sacle is running on AWS and on premise

Disaster Recovery Tips

  • Backup

    • EBS snapshot, RDS automated backups / snapshots, etc.

    • Regular pushes to S3 / S3 IA / Glacier with lifecycle policy, Cross Region Replication

    • From on-premise: Snowball / Storage Gateway

  • High Availability

    • Use Route53 to migrate DNS over from Region to Region

    • RDS Multi-AZ, ElastiCache Multi-AZ, EFS, S3

    • Site to site VPN as a recovery from Direct Connect

  • Replication

    • RDS Replication (cross region), AWS Aurora + Global Database

    • Database replication from on-premise to RDS

    • Storage Gateway

  • Automation

    • CloudFormation / Elastic Beanstalk to recreate a whole new environment

    • Recover / reboot EC2 instances with CloudWatch if alarms fail

    • AWS Lambda for customized automations

  • Chaos

    • Netlflix has a "simian-army" randomly terminating EC2

RTO & RPO
Backup & Restore DR
Pilot Light DR
Warm standby DR
On premise & on AWS DR
Multi Site DR