A data scientist is performing EDA on a dataset stored in Amazon S3 using Amazon Athena. The dataset is partitioned by date, and each partition contains CSV files. The data scientist notices that some queries return zero rows for partitions that should have data. Which THREE steps should the data scientist take to troubleshoot? (Choose 3.)
Trap 1: Convert the CSV files to Parquet format.
Format conversion is not a troubleshooting step for missing data.
Trap 2: Re-run the query with a LIMIT clause to force partition discovery.
LIMIT does not trigger partition discovery.
- A
Verify that the CSV files exist in the S3 bucket for the specific partition.
Files may have been moved or deleted.
- B
Run MSCK REPAIR TABLE to add new partitions to the Glue Data Catalog.
Partitions may not have been discovered by the crawler.
- C
Convert the CSV files to Parquet format.
Why wrong: Format conversion is not a troubleshooting step for missing data.
- D
Check the data types of the columns used in the query's WHERE clause.
Type mismatches can cause the filter to exclude all rows.
- E
Re-run the query with a LIMIT clause to force partition discovery.
Why wrong: LIMIT does not trigger partition discovery.