liuneng1994 commented on code in PR #6939:
URL: https://github.com/apache/incubator-gluten/pull/6939#discussion_r1724421935
##########
backends-clickhouse/src/main/scala/org/apache/gluten/backendsapi/clickhouse/CHSparkPlanExecApi.scala:
##########
@@ -539,10 +541,16 @@ class CHSparkPlanExecApi extends SparkPlanExecApi {
CHExecUtil.buildSideRDD(dataSize, newChild).collect
val batches = countsAndBytes.map(_._2)
+ val totalBatchesSize = batches.map(_.length).sum
val rawSize = dataSize.value
- if (rawSize >= BroadcastExchangeExec.MAX_BROADCAST_TABLE_BYTES) {
- throw new SparkException(
- s"Cannot broadcast the table that is larger than 8GB: ${rawSize >> 30}
GB")
+ if (rawSize >= BroadcastExchangeExec.MAX_BROADCAST_TABLE_BYTES ||) {
Review Comment:
compile error
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]