FelixYBW opened a new pull request, #5088:
URL: https://github.com/apache/incubator-gluten/pull/5088
The 3 configs are missing in Gluten.
```
val COLUMNAR_VELOX_MAX_SPILL_RUN_ROWS =
buildConf("spark.gluten.sql.columnar.backend.velox.MaxSpillRunRows")
.internal()
.doc("The maximum row size of a single spill run")
.bytesConf(ByteUnit.BYTE)
.createWithDefaultString("12M")
val COLUMNAR_VELOX_MAX_SPILL_BYTES =
buildConf("spark.gluten.sql.columnar.backend.velox.MaxSpillBytes")
.internal()
.doc("The maximum file size of a query")
.bytesConf(ByteUnit.BYTE)
.createWithDefaultString("100G")
val COLUMNAR_VELOX_MAX_SPILL_WRITE_BUFFER_SIZE =
buildConf("spark.gluten.sql.columnar.backend.velox.spillWriteBufferSize")
.internal()
.doc("The maximum write buffer size")
.bytesConf(ByteUnit.BYTE)
.createWithDefaultString("4M")
```
--
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]