DEA-C01 Exam QuestionsBrowse all questions from this exam

DEA-C01 Exam - Question 109


An ecommerce company wants to use AWS to migrate data pipelines from an on-premises environment into the AWS Cloud. The company currently uses a third-party tool in the on-premises environment to orchestrate data ingestion processes.

The company wants a migration solution that does not require the company to manage servers. The solution must be able to orchestrate Python and Bash scripts. The solution must not require the company to refactor any code.

Which solution will meet these requirements with the LEAST operational overhead?

Show Answer
Correct Answer: B

Amazon Managed Workflows for Apache Airflow (Amazon MWAA) is the most suitable solution for migrating data pipelines to the AWS Cloud with the least operational overhead. Amazon MWAA is a managed service that allows orchestration of Python and Bash scripts without needing to manage the underlying infrastructure. It provides a serverless architecture, as the Apache Airflow Scheduler and Workers run on AWS Fargate containers. This setup ensures that the company does not have to manage servers, and since it uses Apache Airflow, there is no need to refactor existing code.

Discussion

5 comments
Sign in to comment
Bmaster
Jun 29, 2024

My Choice is B

Ja13Option: B
Jul 3, 2024

An ecommerce company wants to use AWS to migrate data pipelines from an on-premises environment into the AWS Cloud. The company currently uses a third-party tool in the on-premises environment to orchestrate data ingestion processes. The company wants a migration solution that does not require the company to manage servers. The solution must be able to orchestrate Python and Bash scripts. The solution must not require the company to refactor any code. Which solution will meet these requirements with the LEAST operational overhead? A. AWS Lambda B. Amazon Managed Workflows for Apache Airflow (Amazon MVVAA) C. AWS Step Functions D. AWS Glue

HunkyBunkyOption: B
Jul 5, 2024

B - because company want to use same tool on premises and least operational overhead

HunkyBunkyOption: B
Jul 2, 2024

B - best fits in task requirements

didorinsOption: C
Jul 3, 2024

"The company wants a migration solution that does not require the company to manage servers.". How is it Amazon Managed Workflows for Apache Airflow and not Step Functions when Step Functions is the serverless of the two ?

didorins
Jul 4, 2024

"All of the components contained in the outer box (in the image below) appear as a single Amazon MWAA environment in your account. The Apache Airflow Scheduler and Workers are AWS Fargate (Fargate) containers that connect to the private subnets in the Amazon VPC for your environment. Each environment has its own Apache Airflow metadatabase managed by AWS that is accessible to the Scheduler and Workers Fargate containers via a privately-secured VPC endpoint." https://docs.aws.amazon.com/mwaa/latest/userguide/what-is-mwaa.html So MWAA is hosted on ECS Fargate - serverless. Supports Bash and Python. B is correct.