This is an automated email from the ASF dual-hosted git repository.
richox pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/auron.git
The following commit(s) were added to refs/heads/master by this push:
new 99efa28b Revert "[AURON #1730] Fix data size calculation in Celeborn
shuffle writer" (#1736)
99efa28b is described below
commit 99efa28b565ad90b095f122468cafde97ac643ea
Author: Zhang Li <[email protected]>
AuthorDate: Thu Dec 11 17:21:34 2025 +0800
Revert "[AURON #1730] Fix data size calculation in Celeborn shuffle writer"
(#1736)
Reverts apache/auron#1731
---
.../celeborn/AuronCelebornShuffleWriter.scala | 20 --------------------
1 file changed, 20 deletions(-)
diff --git
a/thirdparty/auron-celeborn-0.6/src/main/scala/org/apache/spark/sql/execution/auron/shuffle/celeborn/AuronCelebornShuffleWriter.scala
b/thirdparty/auron-celeborn-0.6/src/main/scala/org/apache/spark/sql/execution/auron/shuffle/celeborn/AuronCelebornShuffleWriter.scala
index bdef9f4f..ba5841b1 100644
---
a/thirdparty/auron-celeborn-0.6/src/main/scala/org/apache/spark/sql/execution/auron/shuffle/celeborn/AuronCelebornShuffleWriter.scala
+++
b/thirdparty/auron-celeborn-0.6/src/main/scala/org/apache/spark/sql/execution/auron/shuffle/celeborn/AuronCelebornShuffleWriter.scala
@@ -76,24 +76,4 @@ class AuronCelebornShuffleWriter[K, V](
Shims.get
.getMapStatus(blockManagerId,
celebornPartitionWriter.getPartitionLengthMap, mapId))
}
-
- // Override stop to use partition length map directly instead of rssStop's
mapStatus
- // because celeborn writer doesn't populate partition sizes correctly when
using native writer
- override def stop(success: Boolean): Option[MapStatus] = {
- if (!success) {
- celebornShuffleWriter.stop(success)
- return None
- }
-
- celebornShuffleWriter.write(Iterator.empty)
- celebornShuffleWriter.stop(success)
-
- // Always use getPartitionLengthMap for Celeborn to get correct partition
sizes
- val blockManagerId = SparkEnv.get.blockManager.shuffleServerId
- Some(
- Shims.get.getMapStatus(
- blockManagerId,
- celebornPartitionWriter.getPartitionLengthMap,
- taskContext.partitionId()))
- }
}