Question 160 of 1,711
DEA-C01 Data Ingestion and Transformation Practice Question
A data engineer needs to ingest JSON data from an on-premises relational database into Amazon S3 every hour. Which AWS service should be used to set up a scheduled, incremental data transfer?
⚠ Common exam trap
Watch out — candidates often confuse AWS Glue's ETL capabilities with DMS's managed database migration, assuming Glue's JDBC connections can handle incremental transfers, but Glue lacks built-in change data capture and requires custom logic for scheduled incremental loads.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
AWS Database Migration Service (DMS) with S3 as target.
AWS DMS is purpose-built for migrating databases to AWS targets, including Amazon S3. It supports ongoing replication (change data capture) and scheduled full-load tasks, making it ideal for hourly incremental transfers from an on-premises relational database to S3 without custom scripting.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Amazon S3 Transfer Acceleration with a cron job.
Why it's wrong here
Transfer Acceleration only accelerates uploads; it does not manage scheduling.
- ✓
AWS Database Migration Service (DMS) with S3 as target.
Why this is correct
DMS supports scheduled, incremental transfers from databases to S3.
- ✗
AWS Glue with a JDBC connection and a scheduled crawler.
Why it's wrong here
A scheduled AWS Glue crawler discovers schema and populates the Data Catalog, but it does not perform incremental data ingestion from a JDBC source; it lacks the change-data-capture mechanism required to transfer only new or updated rows each hour. This option is tempting because Glue with a JDBC connection can extract full table snapshots, which would be correct for a one-time or daily bulk load where schema evolution tracking is the primary need.
- ✗
Amazon Kinesis Data Firehose with a database source.
Why it's wrong here
Firehose does not natively connect to relational databases.
Quick reference
AWS S3 Storage Class Comparison
| Storage Class | Min Duration | Retrieval | Use Case |
|---|---|---|---|
| S3 Standard | None | Immediate | Frequently accessed data |
| S3 Standard-IA | 30 days | Immediate | Infrequent access, rapid retrieval |
| S3 One Zone-IA | 30 days | Immediate | Non-critical infrequent data |
| S3 Intelligent-Tiering | None | Immediate–hours | Unknown or changing access patterns |
| S3 Glacier Instant | 90 days | Milliseconds | Archive with instant retrieval |
| S3 Glacier Flexible | 90 days | Minutes–hours | Archive, flexible retrieval |
| S3 Glacier Deep Archive | 180 days | Hours | Long-term compliance archive |
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Same concept, more angles
1 more way this is tested on DEA-C01
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. A data engineer needs to ingest data from multiple on-premises relational databases into Amazon S3 for analytics. The data must be transformed and loaded daily. Which THREE AWS services should the engineer use together to build this pipeline? (Choose THREE.)
easy- ✓ A.AWS Glue
- ✓ B.AWS Glue Data Catalog
- C.Amazon Athena
- ✓ D.AWS Database Migration Service (DMS)
- E.Amazon Kinesis Data Streams
Why A: AWS Glue is correct because it provides a serverless ETL (Extract, Transform, Load) service that can read data from Amazon S3, apply transformations (e.g., using PySpark or Scala), and write the transformed data back to S3. In this pipeline, AWS Glue jobs can be scheduled to run daily to perform the required transformations on the ingested data.
Last reviewed: Jun 11, 2026
This DEA-C01 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the DEA-C01 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.