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
demandé il y a 8 mois336 vues
2 réponses
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
répondu il y a 8 mois
profile pictureAWS
EXPERT
vérifié il y a 8 mois
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
répondu il y a 8 mois

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions