Home › Certifications › AWS Data Engineer Associate › Data Store Management
44 multiple-choice questions and 19 flashcards on Data Store Management, about 29% of the AWS Data Engineer Associate bank. Every one carries a written rationale.
Data Store Management is one of 4 chapters in CoStudy's AWS Data Engineer Associate bank, and it holds 44 of the bank's 150 multiple-choice questions — roughly 29% of the total. That proportion is not arbitrary: chapters follow the certifying body's published exam outline, and the number of questions in each is set by that domain's published weight, so the share of your practice time this chapter takes matches the share of the real exam it accounts for.
Studying by chapter is worth doing once you have a diagnostic score. A single overall percentage tells you whether you are close; it does not tell you which domain is dragging. Working a weak chapter in isolation, and re-testing it in isolation, is the fastest way to move a score that has stalled — and it is why the mock exams in CoStudy report by domain rather than as one number.
10 questions drawn from this chapter, with the full rationale shown — the controlling principle behind the right answer, and why each wrong option tempts and fails.
Which is TRUE of Redshift concurrency scaling?
Answer: D — It adds transient read clusters billed per second when active
D) Concurrency Scaling adds transient read clusters billed per second (with a free-hour credit). B) The primary cluster is never replaced during scaling. C) Available on ra3 and Serverless too. A) Result caching is separate.
Which is the BEST layout for an Athena table storing 10 years of daily events?
Answer: A — Parquet files partitioned by year, month, and day with Snappy compression
A) Columnar + time-partitioned is the canonical Athena layout for pruning. B) CSV is row-based and huge files are hard to prune. C) Un-partitioned JSON forces full scans. D) Avro is row-based and un-partitioned is worst-case.
Which is TRUE about S3 Intelligent-Tiering charges?
Answer: B — It charges a small per-object monitoring fee but has no retrieval fees
B) A small per-object monitoring fee; no retrieval fees — this is Intelligent-Tiering's core value. A) Retrieval fees do not apply. C) Objects under 128 KB stay in Frequent Access but are not free. D) PUT/GET fees still apply.
Which BEST describes Amazon S3 Storage Lens?
Answer: A — A dashboard providing usage and activity trends across your S3 estate
A) Storage Lens gives account-wide S3 metrics on usage, activity, and cost. B) That is Athena or CloudSearch. C) That is lifecycle rules, not Storage Lens. D) That is not a Storage Lens function.
What does VACUUM REINDEX on a Redshift table do?
Answer: A — Re-analyzes interleaved sort keys and re-sorts the data
B) That is REFRESH MATERIALIZED VIEW. A) VACUUM REINDEX re-analyzes an interleaved sort key so the sort order stays optimal. C) Redshift does not enforce foreign keys. D) That is VACUUM DELETE ONLY — a different mode.
Which combination lets you query an Iceberg table on S3 with the LEAST operational overhead?
Answer: A — Amazon Athena using the Iceberg SerDe with the Glue Catalog
A) Athena has native Iceberg support via the Glue Catalog — no cluster to manage. B) EMR Serverless can query Iceberg but you still author Trino config. C) Loading defeats the point of Iceberg; also Redshift Spectrum supports Iceberg. D) DynamoDB has no relation to Iceberg querying.
For petabyte-scale ad-hoc Athena queries, which storage layout MOST reduces scan cost?
Answer: C — Parquet files partitioned by dt and compressed with Snappy
A) Row-based CSV forces full-column scans; costs balloon on Athena. C) Columnar Parquet with partitioning enables column pruning and partition pruning — the two largest scan-cost levers. B) JSON is still row-oriented even with partitions. D) Avro is row-based and un-partitioned defeats pruning.
Which S3 tool BEST performs a bulk copy of billions of objects into a new bucket?
Answer: A — S3 Batch Operations with a manifest listing objects to copy
A) Batch Operations copy billions of objects reliably with a manifest and CloudTrail audit. B) Laptop copies are fragile and slow. C) Console manual copy does not scale. D) Lifecycle rules do not copy across buckets.
Which is TRUE about Athena workgroups?
Answer: D — They isolate query results and enforce per-workgroup data-scanned limits
D) Workgroups isolate result locations and enforce per-workgroup scanned-byte and cost limits. B) Athena is serverless — no dedicated cluster. C) IAM still applies; workgroups add controls, not replace. A) No automatic conversion; use CTAS.
Which is TRUE about Iceberg schema evolution on S3?
Answer: A — Adding, dropping, or renaming columns is safe without rewriting Parquet data files
A) Iceberg's schema evolution is metadata-only for adds, drops, renames, and type promotion — no data rewrite. B) Metadata-only is the whole point. C) All types evolve. D) No format switch is needed.
4 cards from the 19 in this chapter.
Amazon Athena?
Serverless interactive SQL query on S3 data. Uses Glue catalog. Pay per TB scanned.
COPY command?
Fast bulk load into Redshift from S3/DynamoDB/Kinesis. Splits files across slices for parallelism.
Apache Iceberg vs Delta vs Hudi on AWS?
Open table formats over S3 with ACID, schema evolution, time travel. Iceberg has native support in Athena, Glue, EMR.
Compression for Parquet?
Snappy (default, fast) or zstd (better compression, slower). gzip works but slower decode.
These are a sample. The full Data Store Management chapter runs 63 items with per-chapter progress tracking, on the web and in the iOS app.
Open AWS Data Engineer Associate in CoStudy →