🎓 Lesson 3
D2
Edge vs. Cloud vs. Hybrid Deployment Tradeoffs
Edge, cloud, and hybrid deployments are different ways to run software and process data—on local devices (edge), remote servers (cloud), or a smart mix of both (hybrid).
🎯 Learning Objectives
-
✓
Analyze latency, bandwidth, and reliability tradeoffs across edge, cloud, and hybrid architectures for DER aggregation use cases
-
✓
Design a hybrid deployment strategy that satisfies ISO/IEC 62443-3-3 SL2 cybersecurity requirements while meeting <100 ms closed-loop control timing constraints
-
✓
Apply failure mode impact analysis (FMEA) to compare single-point-of-failure risks in cloud-only versus edge-resilient topologies
-
✓
Explain how NIST SP 800-82 Rev. 3 and IEEE 1547-2018 inform architectural decisions for grid-connected DER control stacks
📖 Why This Matters
In mining and blasting operations, DER aggregation increasingly supports mobile equipment charging, ventilation fan optimization, and autonomous haul truck microgrids. A misconfigured deployment—like routing critical blast initiation logic through a public cloud with 200+ ms latency—can violate safety-critical timing bounds, cause misfires, or trigger cascading grid instability. Understanding where to place control logic, telemetry ingestion, and AI-based fragmentation prediction is foundational to building resilient, compliant, and responsive energy systems.
📘 Core Principles
Edge deployment prioritizes determinism and autonomy: control loops execute locally (e.g., PLCs or RTUs at substation level), minimizing dependency on network uptime. Cloud deployment enables scale, historical analytics, and federated learning across fleets—but introduces latency, egress costs, and regulatory data sovereignty concerns. Hybrid architecture applies the 'control plane vs. data plane' separation: time-critical functions (e.g., overcurrent tripping, blast timing synchronization) reside at the edge; non-real-time functions (e.g., fleet-level energy forecasting, compliance reporting, model retraining) run in the cloud. The partitioning follows the IEC 61850-7-420 logical node hierarchy and aligns with the NIST SP 500-330 Edge Computing Reference Architecture’s functional domains (Device, Edge, Cloud).
📐 Hybrid Resilience Index (HRI)
The Hybrid Resilience Index quantifies architectural robustness by weighting latency-critical workload coverage, offline operational duration, and cyber-isolation depth. It guides deployment selection when balancing ISO 50001 energy performance with IEC 62443-3-3 availability requirements.
Hybrid Resilience Index (HRI)
HRI = CCR × ODR × LCF
Quantitative score (0–1) evaluating architectural suitability for safety- and time-critical DER aggregation tasks.
Variables:
| Symbol | Name | Unit | Description |
| CCR |
Control Coverage Ratio |
dimensionless |
Fraction of time-critical control logic executed at edge (e.g., 0.85 = 85%) |
| ODR |
Offline Duration Ratio |
dimensionless |
Ratio of maximum required offline operation time to actual achieved offline duration |
| LCF |
Latency Compliance Factor |
dimensionless |
min(1.0, latency_budget / measured_edge_loop_time); capped at 1.0 |
Typical Ranges:
High-integrity blasting control: 0.80 – 1.00
Cloud-only telemetry dashboard: 0.00 – 0.30
💡 Worked Example
Problem: A mine’s DER aggregation system must support 500 kW battery dispatch for ventilation fans during 15-minute comms outages. Edge layer handles 85% of control logic (including voltage/frequency droop response), with 92% offline operation coverage. Cloud handles predictive maintenance (non-critical). Latency budget is 80 ms; measured edge loop = 12 ms, cloud round-trip = 210 ms. Calculate HRI.
1.
Step 1: Compute Control Coverage Ratio (CCR) = 0.85
2.
Step 2: Compute Offline Duration Ratio (ODR) = 15 min / 15 min = 1.0 (system sustains full function offline)
3.
Step 3: Compute Latency Compliance Factor (LCF) = min(1.0, 80 ms / 12 ms) = 1.0 (edge meets budget); exclude cloud path for critical loop
4.
Step 4: HRI = CCR × ODR × LCF = 0.85 × 1.0 × 1.0 = 0.85
Answer:
The result is 0.85, which falls within the high-resilience range of 0.8–1.0 per NIST IR 8259B Annex D scoring guidance.
🏗️ Real-World Application
At Newmont’s Boddington Mine (Western Australia), the DER aggregation stack uses a hybrid deployment: Schneider Electric EcoStruxure Microgrid Advisor runs on-premise edge servers (VMware vSAN cluster) for <30 ms closed-loop battery-inverter control and anti-islanding protection (per IEEE 1547-2018 Section 5.10.2), while cloud-hosted Azure Digital Twins models long-term load shifting across 120 haul trucks using historical GPS and power telemetry. During a 47-minute fiber cut in Q3 2023, edge-layer control maintained ventilation stability without degradation—validating the hybrid design’s resilience claim.