Uh oh!
There was an error while loading. Please reload this page.
[SPARK-42252][CORE] Add spark.shuffle.localDisk.file.output.buffer and deprecate spark.shuffle.unsafe.file.output.buffer - #39819
Conversation
wayneguow
commented
Jan 31, 2023
cc @mccheah and @HyukjinKwon |
4696a36 to
bd0c1b6Compare
dongjoon-hyun
left a comment
There was a problem hiding this comment.
If you don't mind, let's target this proposal for Apache Spark 3.5.0.
wayneguow
commented
Feb 4, 2023
Ok, it's good. I will make some changes. |
wayneguow
commented
Feb 7, 2023
Gentle ping @dongjoon-hyun, the target version of this proposal has been updated. Could you go on reviewing it when you have time? Thanks. |
fc1b3bf to
fe8729dComparedongjoon-hyun
commented
May 5, 2023
Thank you for your patience. Could you rebase this PR? |
There was a problem hiding this comment.
This should be Since Spark 3.5.
There was a problem hiding this comment.
I'm here, updated it, and waiting for GA.
fe8729d to
6fafbc5Comparespark.shuffle.localDisk.file.output.buffer and deprecate spark.shuffle.unsafe.file.output.bufferThere was a problem hiding this comment.
Remove thought still works. deprecated means it still works.
HyukjinKwon
commented
May 15, 2023
@wayneguow which PR made this change:
? Would be easier for me to review if you can point it out. |
wayneguow
commented
May 15, 2023
@HyukjinKwon The PR is #25007 . |
dongjoon-hyun
left a comment
There was a problem hiding this comment.
+1, LGTM from my side.
cc @HyukjinKwon , @cloud-fan , @Ngone51 , @mridulm
We're closing this PR because it hasn't been updated in a while. This isn't a judgement on the merit of the PR in any way. It's just a way of keeping the PR queue manageable. |
dongjoon-hyun
commented
Aug 28, 2023
Too bad. Sorry but it seems that we forgot this PR, @wayneguow . |
dongjoon-hyun
commented
Aug 28, 2023
It seems too late because Apache Spark 3.5 is RC3 stage. If we want this still, we can do for Apache Spark 4.0.0. |
5f19b3d to
02843cfCompareUh oh!
There was an error while loading. Please reload this page.
wayneguow
commented
May 30, 2024
Gentle ping @dongjoon-hyun , a pr from some time ago. |
LuciferYang
commented
Jun 4, 2024
friendly ping @yaooqinn Do you have time to help take a look? |
yaooqinn
commented
Jun 14, 2024
Merged to master, thank you @dongjoon-hyun@LuciferYang@wayneguow |
What changes were proposed in this pull request?
Deprecate spark.shuffle.unsafe.file.output.buffer and add a new config spark.shuffle.localDisk.file.output.buffer instead.
Why are the changes needed?
The old config is desgined to be used in UnsafeShuffleWriter, but now it has been used in all local shuffle writers through LocalDiskShuffleMapOutputWriter, introduced by #25007.
Does this PR introduce any user-facing change?
Old still works, advised to use new.
How was this patch tested?
Passed existing tests.