Courseiva
Data Ingestion and TransformationmediumMultiple ChoiceObjective-mapped

DEA-C01 Data Ingestion and Transformation Practice Question

Network Topology
job-bookmark-option": "job-bookmark-enable","enable-metrics": "true"Refer to the exhibit."AWSTemplateFormatVersion": "2010-09-09","Resources": {"MyGlueJob": {"Type": "AWS::Glue::Job","Properties": {"Name": "transform-job","Role": "arn:aws:iam::123456789012:role/GlueServiceRole","Command": {"Name": "glueetl","ScriptLocation": "s3://bucket/scripts/transform.py","PythonVersion": "3"},"DefaultArguments": {"MaxRetries": 0

Refer to the exhibit. A data engineer creates an AWS Glue job using this CloudFormation template. The job processes new data files in S3 and uses job bookmarks to track processed files. After initial success, the job runs again but processes all files again instead of only new ones. What is the most likely cause?

⚠ Common exam trap

Candidates often assume job bookmarks automatically track any new files in S3, but they fail to realize that without a partitioning scheme or timestamp in the path, Glue cannot differentiate new files from existing ones, leading to full reprocessing.

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

The S3 input path does not have a partitioning scheme or timestamp to identify new files

AWS Glue job bookmarks rely on the structure of the input data to identify new files. Without a partitioning scheme or a timestamp-based naming convention in the S3 path, Glue cannot determine which files are new; it falls back to reprocessing all files. The job bookmark feature tracks processed files by examining the S3 path and file metadata, so a flat or non-partitioned structure prevents it from distinguishing new files from old ones.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • The job bookmark option is set to 'job-bookmark-disable'

    Why it's wrong here

    The template shows 'job-bookmark-enable', so it is enabled.

  • The enable-metrics parameter is set to true

    Why it's wrong here

    Metrics are for monitoring, not bookmarking.

  • The MaxRetries parameter is set to 0

    Why it's wrong here

    MaxRetries does not affect bookmark behavior.

  • The S3 input path does not have a partitioning scheme or timestamp to identify new files

    Why this is correct

    Job bookmarks rely on partition structure or file timestamps to track progress.

Quick reference

AWS S3 Storage Class Comparison

Storage ClassMin DurationRetrievalUse Case
S3 StandardNoneImmediateFrequently accessed data
S3 Standard-IA30 daysImmediateInfrequent access, rapid retrieval
S3 One Zone-IA30 daysImmediateNon-critical infrequent data
S3 Intelligent-TieringNoneImmediate–hoursUnknown or changing access patterns
S3 Glacier Instant90 daysMillisecondsArchive with instant retrieval
S3 Glacier Flexible90 daysMinutes–hoursArchive, flexible retrieval
S3 Glacier Deep Archive180 daysHoursLong-term compliance archive

About these practice questions

One of 1,711 original DEA-C01 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

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.