You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-issues@hadoop.apache.org by "feiwang (Jira)" <ji...@apache.org> on 2020/03/26 15:23:00 UTC

[jira] [Commented] (MAPREDUCE-7185) Parallelize part files move in FileOutputCommitter

    [ https://issues.apache.org/jira/browse/MAPREDUCE-7185?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17067766#comment-17067766 ] 

feiwang commented on MAPREDUCE-7185:
------------------------------------

I will follow up this ticket and upload my patch recently, thanks.

> Parallelize part files move in FileOutputCommitter
> --------------------------------------------------
>
>                 Key: MAPREDUCE-7185
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7185
>             Project: Hadoop Map/Reduce
>          Issue Type: Improvement
>    Affects Versions: 3.2.0, 2.9.2
>            Reporter: Igor Dvorzhak
>            Assignee: Igor Dvorzhak
>            Priority: Major
>         Attachments: MAPREDUCE-7185.patch
>
>
> If map task outputs multiple files it could be slow to move them from temp directory to output directory in object stores (GCS, S3, etc).
> To improve performance we need to parallelize move of more than 1 file in FileOutputCommitter.
> Repro:
>  Start spark-shell:
> {code}
> spark-shell --num-executors 2 --executor-memory 10G --executor-cores 4 --conf spark.dynamicAllocation.maxExecutors=2
> {code}
> From spark-shell:
> {code}
> val df = (1 to 10000).toList.toDF("value").withColumn("p", $"value" % 10).repartition(50)
> df.write.partitionBy("p").mode("overwrite").format("parquet").options(Map("path" -> s"gs://some/path")).saveAsTable("parquet_partitioned_bench")
> {code}
> With the fix execution time reduces from 130 seconds to 50 seconds.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: mapreduce-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: mapreduce-issues-help@hadoop.apache.org