πŸ”’ Guided

Pre-launch preview. Authorised access only.

Incorrect code

Guided by A Guide to Cloud
Explore AB-900 AI-901 aws-aif-c01
Guided AZ-120 Domain 3
Domain 3 β€” Module 6 of 6 100%
21 of 28 overall

AZ-120 Study Guide

Domain 1: Migrate SAP Workloads to Azure

  • SAP on Azure: The Big Picture Free
  • Assessing SAP Workloads for Migration Free
  • Migration Strategies: The Decision Framework Free
  • RISE with SAP on Azure Free
  • Migration Execution: DMO, Classical, and Beyond Free
  • HANA System Replication for Migration Free
  • Post-Migration: Validation, Health, and HLI Migration Free

Domain 2: Design and Implement an Infrastructure to Support SAP Workloads

  • SAP-Certified Virtual Machines on Azure
  • Storage Architecture for SAP on Azure
  • Networking for SAP on Azure
  • HANA Architecture on Azure
  • SAP Application Tier on Azure
  • Proximity Placement and Availability Options
  • Azure Center for SAP Solutions (ACSS)
  • SAP Deployment Automation Framework (SDAF)

Domain 3: Design and Implement High Availability and Disaster Recovery

  • High Availability Concepts for SAP
  • High Availability for ASCS/SCS
  • HANA System Replication for HA
  • Shared Storage and Load Balancer Deep Dive
  • Disaster Recovery Strategy for SAP
  • Disaster Recovery Implementation

Domain 4: Maintain SAP Workloads on Azure

  • Azure Monitor for SAP Solutions
  • Backup for SAP HANA
  • Backup for SAP Application Servers
  • Security and Encryption for SAP
  • Microsoft Sentinel for SAP
  • Cost Optimization for SAP on Azure
  • SAP Operations and Lifecycle Management

AZ-120 Study Guide

Domain 1: Migrate SAP Workloads to Azure

  • SAP on Azure: The Big Picture Free
  • Assessing SAP Workloads for Migration Free
  • Migration Strategies: The Decision Framework Free
  • RISE with SAP on Azure Free
  • Migration Execution: DMO, Classical, and Beyond Free
  • HANA System Replication for Migration Free
  • Post-Migration: Validation, Health, and HLI Migration Free

Domain 2: Design and Implement an Infrastructure to Support SAP Workloads

  • SAP-Certified Virtual Machines on Azure
  • Storage Architecture for SAP on Azure
  • Networking for SAP on Azure
  • HANA Architecture on Azure
  • SAP Application Tier on Azure
  • Proximity Placement and Availability Options
  • Azure Center for SAP Solutions (ACSS)
  • SAP Deployment Automation Framework (SDAF)

Domain 3: Design and Implement High Availability and Disaster Recovery

  • High Availability Concepts for SAP
  • High Availability for ASCS/SCS
  • HANA System Replication for HA
  • Shared Storage and Load Balancer Deep Dive
  • Disaster Recovery Strategy for SAP
  • Disaster Recovery Implementation

Domain 4: Maintain SAP Workloads on Azure

  • Azure Monitor for SAP Solutions
  • Backup for SAP HANA
  • Backup for SAP Application Servers
  • Security and Encryption for SAP
  • Microsoft Sentinel for SAP
  • Cost Optimization for SAP on Azure
  • SAP Operations and Lifecycle Management
Domain 3: Design and Implement High Availability and Disaster Recovery Premium ⏱ ~14 min read

Disaster Recovery Implementation

Implement HANA multi-tier replication for HA plus DR, configure Azure Site Recovery with ordered recovery plans, set up backup-based DR with geo-redundant vaults, ANF cross-region replication, and DR testing procedures.

Putting the DR plan into action

πŸ›‘οΈ Lars spreads the DR architecture diagram across the table. β€œWe know the strategy: HSR async for HANA, ASR for the app tier, backup for non-prod. Now we need to build it. Dr. Schmidt wants a documented, tested DR solution β€” not just a plan on paper.”

☁️ Mei rolls up her sleeves. β€œLet me walk you through each implementation. The trickiest part is HANA multi-tier replication β€” combining HA and DR into a single replication chain.”

β˜• Simple explanation

Think of it like a chain of messengers.

The primary HANA database (Node 1) sends every message to the local backup (Node 2) instantly and waits for confirmation (synchronous β€” for HA). Node 2 then forwards the message to a distant backup (Node 3) without waiting for confirmation (asynchronous β€” for DR). If Node 1 fails, Node 2 takes over locally. If the entire city floods, Node 3 in another city has almost all the messages. Three nodes, two replication links, two different speeds.

HANA multi-tier replication (also called chained or 3-tier replication) combines HA and DR in a single topology. The primary replicates synchronously to a local secondary (HA, same region), and the secondary replicates asynchronously to a tertiary (DR, remote region). This provides RPO=0 for local failures and near-zero RPO for regional disasters. The tertiary can be a smaller VM that is scaled up during disaster declaration, and it can be configured with log replay (logreplay) or delta shipping for the async link.

HANA multi-tier replication (3-node topology)

The most robust HANA DR architecture uses three nodes:

Node 1 (Primary, Region A, Zone 1) β€” active production instance. Replicates synchronously to Node 2.

Node 2 (HA Secondary, Region A, Zone 2) β€” local HA standby. Receives synchronous replication from Node 1. If Node 1 fails, Node 2 becomes primary (automated via Pacemaker). Also replicates asynchronously to Node 3.

Node 3 (DR Tertiary, Region B) β€” remote DR standby. Receives asynchronous replication from Node 2. If Region A is lost entirely, Node 3 is manually promoted to primary.

HANA multi-tier replication topology
AspectNode 1 to Node 2 (HA)Node 2 to Node 3 (DR)
Replication modeSynchronous (SYNC/SYNCMEM)Asynchronous (ASYNC)
RPOZeroMinutes (depends on lag)
FailoverAutomatic (Pacemaker)Manual promotion
RegionSame region (different zone)Different region (paired)
VM sizingSame size as primaryCan be smaller (scale up for DR)
NetworkLow latency (intra-region)Higher latency tolerated (inter-region)
πŸ’‘ Exam tip: 3-node topology is the gold standard

When the exam describes a scenario needing both HA and DR for HANA, the answer is the 3-node multi-tier topology. Remember: sync for HA (local), async for DR (remote). The DR failover is always manual β€” you do not want automatic failover to a remote region based on a network blip.

After local failover

When Node 1 fails and Node 2 takes over locally:

  1. Node 2 becomes the new primary
  2. The async replication to Node 3 continues from Node 2
  3. When Node 1 is recovered, it re-registers as the secondary to Node 2
  4. No data loss, no DR impact

After regional failover

When Region A is completely lost:

  1. Confirm Region A is genuinely unavailable (not a transient issue)
  2. Promote Node 3 to primary in Region B
  3. Start application servers in Region B (via ASR or automation)
  4. Update DNS to point to Region B
  5. Node 3 is now the standalone primary until Region A recovers

ASR recovery plans for the application tier

Azure Site Recovery recovery plans define the failover sequence for the entire SAP landscape:

Group 1 β€” HANA database (manual step: confirm HSR failover or promote DR node)

Group 2 β€” ASCS/SCS (ASR failover: create ASCS VM from replicated disks)

Group 3 β€” Application servers (ASR failover: create app server VMs from replicated disks)

Group 4 β€” Web Dispatcher (ASR failover: create Web Dispatcher from replicated disks)

Each group waits for the previous group to complete before starting. Custom scripts can be added between groups (e.g., update DNS, configure load balancer, start SAP services).

πŸ›‘οΈ Lars nods. β€œSo the recovery plan ensures HANA is up before ASCS tries to connect, and ASCS is up before the application servers start looking for it.”

☁️ Mei confirms. β€œExactly. SAP has a strict startup order. Recovery plans enforce it automatically.”

Custom scripts in recovery plans

ASR recovery plans support pre-action and post-action scripts (PowerShell or Azure Automation runbooks). Common SAP scripts include: updating DNS records, configuring Azure Load Balancer in the DR region, starting SAP services after VM boot, and running post-failover health checks. These scripts are critical for a fully automated DR failover.

Backup-based DR

For non-production systems or as a last resort for production:

  • Azure Backup with GRS vaults β€” backups are replicated to the paired region automatically
  • Cross-Region Restore β€” restore VMs and databases in the DR region directly from the GRS vault
  • HANA backup via Backint can be restored to a new VM in the DR region
  • RPO equals the last backup interval (hours)
  • RTO is hours (restore time + system startup + configuration)

ANF cross-region replication

Azure NetApp Files supports cross-region replication for volumes:

  • Replicates ANF volumes to a paired region on a schedule (10-minute, hourly, or daily)
  • Useful for HANA shared volumes, transport directories, and backup staging
  • The destination volume is read-only until failover
  • During DR, break the replication and make the destination volume read-write
  • Complements HSR β€” use ANF replication for /hana/shared and HSR for database data

DR testing

πŸ›‘οΈ Lars insists. β€œAn untested DR plan is not a plan β€” it is a wish. How do we test without disrupting production?”

Testing approaches:

  • ASR test failover β€” creates VMs in an isolated VNet in the DR region without affecting production replication
  • HANA DR node test β€” temporarily promote the DR node, verify data consistency, then re-register as secondary
  • Tabletop exercise β€” walk through the runbook with all stakeholders without executing
  • Full DR drill β€” execute the complete failover procedure on a scheduled maintenance window

Document everything:

  • Failover time (actual RTO achieved)
  • Data consistency verification (actual RPO verified)
  • Client reconnection behavior
  • Issues encountered and resolutions
  • Update the runbook based on findings
Question

What is the HANA 3-node multi-tier topology for HA + DR?

Click or press Enter to reveal answer

Answer

Node 1 (primary) replicates synchronously to Node 2 (HA secondary, same region). Node 2 replicates asynchronously to Node 3 (DR tertiary, remote region). HA failover is automatic via Pacemaker. DR failover is manual. This provides RPO=0 for local failures and near-zero RPO for regional disasters.

Click to flip back

Question

What is the correct startup order in an ASR recovery plan for SAP?

Click or press Enter to reveal answer

Answer

Group 1: HANA database (manual HSR promotion). Group 2: ASCS/SCS. Group 3: Application servers. Group 4: Web Dispatcher. Each group completes before the next starts. SAP requires this order because each layer depends on the one below it.

Click to flip back

Question

How does ASR test failover work without disrupting production?

Click or press Enter to reveal answer

Answer

ASR test failover creates VMs from replicated disks in an isolated VNet in the DR region. Production replication continues unaffected. The test VMs are completely isolated from production and can be deleted after testing. This allows DR validation without any production impact.

Click to flip back

Knowledge check

Knowledge Check

GlobalPharma needs both HA (RPO=0) and DR (RPO less than 15 minutes) for HANA. What topology should Lars implement?

Knowledge Check

Mei is creating an ASR recovery plan for SAP. What should be the correct order of failover groups?

Knowledge Check

Lars wants to test DR without impacting production. Which method should he use?

Summary

You have now completed Domain 3. You can implement the full HA/DR stack: HANA 3-node multi-tier replication for combined HA and DR, ASR recovery plans with ordered startup for the application tier, backup-based DR for non-production, ANF cross-region replication for shared volumes, and DR testing procedures. Combined with the ASCS HA and HANA HSR from earlier modules, your SAP system is resilient against both component failures and regional disasters.

Next up is Domain 4: keeping the SAP system running day after day. We will cover monitoring, backup, security, cost optimization, and ongoing operations.

🎬 Video coming soon

← Previous

Disaster Recovery Strategy for SAP

Next β†’

Azure Monitor for SAP Solutions

Guided

I learn, I simplify, I share.

A Guide to Cloud YouTube Feedback

© 2026 Sutheesh. All rights reserved.

Guided is an independent study resource and is not affiliated with, endorsed by, or officially connected to Microsoft. Microsoft, Azure, and related trademarks are property of Microsoft Corporation. Always verify information against Microsoft Learn.