Glue ETL generating too many files in S3

0

hi team, can I ask why Glue is generating so many parquet files from my ETL job? Enter image description here Enter image description here Enter image description here Enter image description here

profile pictureAWS
EXPERT
asked 7 months ago312 views
2 Answers
0

The number of output files correlates to the number of partitions spark is processing in your pipeline. You could look at settings like spark.sql.shuffle.partitions or you could repartition your data frame to reduced partitions.

That being said, you might not want to do this as it will slow your job down (less partitions to parallelize on) and whatever is consuming these files might also be slowed. For example, if you are loading these parquet files into redshift it will certainly be better to have multiple files to parallelize loading. Most consumers will prefer multiple files for the same reason.

tjtoll
answered 7 months ago
profile pictureAWS
EXPERT
reviewed 7 months ago
0

Since you are using a visual job, before you save add the component "Autobalance Processing", in the optional box you can enter the number of files but it's better if you leave it empty, the component will optimize the performance while having a reasonable number of files.

profile pictureAWS
EXPERT
answered 7 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions