A multinational energy conglomerate is planning to decommission its on-premises data center and migrate its smart grid monitoring and billing platform to AWS. The platform consists of distinct components:
1. Web Dashboard: An application that runs on Apache HTTP Server on Red Hat Enterprise Linux (RHEL) . Corporate security policies require all cloud-deployed workloads to run on a hardened RHEL or RHEL image. The static HTML/JS assets and configuration can be deployed to the new OS version without code changes.
2. Telemetry Ingestion Worker: A Python daemon that processes incoming queue messages. It currently runs on a single virtual machine. The architecture team wants to run this daemon as a containerized task using Amazon ECS on AWS Fargate to eliminate server management.
3. Billing Database: An Oracle Database Enterprise Edition with extensive PL/SQL stored procedures and spatial indexes. The business wants to migrate this database to Amazon Aurora PostgreSQL to eliminate Oracle licensing costs. A dedicated migration team is allocated to convert the schema and rewrite the stored procedures.
4. Legacy Field Device Link: A proprietary C-based utility that communicates with legacy field RTUs via a physical dial-up serial modem connected to an on-premises PCI card. The proprietary protocol cannot be emulated or routed over IP networks, and the manufacturer has ceased support.
Which combination of migration strategies ( Rs) represents the most appropriate path for each component to meet the company's requirements?
- ARehost the Web Dashboard; Refactor the Telemetry Ingestion Worker; Refactor the Billing Database; Retain the Legacy Field Device Link.
- Replatform the Web Dashboard; Replatform the Telemetry Ingestion Worker; Refactor the Billing Database; Retain the Legacy Field Device Link.Answer
- CReplatform the Web Dashboard; Replatform the Telemetry Ingestion Worker; Replatform the Billing Database; Retire the Legacy Field Device Link.
- DRefactor the Web Dashboard; Replatform the Telemetry Ingestion Worker; Rehost the Billing Database; Rehost the Legacy Field Device Link.