I have a glue job that is not working because the dynamic frame is not populating from a parquet in s3.
I have pointed it directly to an object that has data in it, but the dynamic frame is still blank.
Example below
input_dyf = glueContext.create_dynamic_frame.from_options("s3", {
"paths": ['s3://dev/.test/load_year=2023/load_month=2/load_day=22/.test.parquet'],
"recurse": False,
"groupFiles": "inPartition",
},
format = "parquet",
transformation_ctx = "DataSource0"
)
I have similar glue jobs with all the same configurations (and bookmarks off), and this is the only one failing.