Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -462,15 +462,11 @@ class CHSparkPlanExecApi extends SparkPlanExecApi with Logging {
clazz.getConstructor(classOf[SQLMetric], classOf[SQLMetric], classOf[SQLMetric])
constructor.newInstance(readBatchNumRows, numOutputRows, dataSize).asInstanceOf[Serializer]
case _ =>
if (GlutenConfig.get.isUseUniffleShuffleManager) {
throw new UnsupportedOperationException("temporarily uniffle not support ch ")
} else {
new CHColumnarBatchSerializer(
readBatchNumRows,
numOutputRows,
dataSize,
deserializationTime)
}
new CHColumnarBatchSerializer(
readBatchNumRows,
numOutputRows,
dataSize,
deserializationTime)
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class GlutenConfig(conf: SQLConf) extends GlutenCoreConfig(conf) {
.contains("celeborn")

// Whether to use UniffleShuffleManager.
// TODO: Deprecate the API: https://github.com/apache/incubator-gluten/issues/10107.
@deprecated
def isUseUniffleShuffleManager: Boolean =
conf
.getConfString("spark.shuffle.manager", "sort")
Expand Down