A company ingests JSON data from an S3 bucket into a Glue ETL job. The data contains nested structures and arrays. The team wants to flatten the data into a tabular format for analysis in Athena. Which Glue transformation is appropriate?
Relationalize transforms nested JSON into relational tables suitable for querying.
Why this answer
The Relationalize transformation is specifically designed to flatten nested JSON into relational tables. Option A (DropNullFields) removes nulls; Option C (Map) applies a function; Option D (Filter) selects rows.