Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jinchengchenghh committed Nov 26, 2024
1 parent 51cebc5 commit 6471ecc
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions shims/common/src/main/scala/org/apache/gluten/GlutenConfig.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1590,6 +1590,20 @@ object GlutenConfig {
.bytesConf(ByteUnit.BYTE)
.createWithDefaultString("100G")

val COLUMNAR_VELOX_MAX_SPILL_READ_BUFFER_SIZE =
buildConf("spark.gluten.sql.columnar.backend.velox.spillReadBufferSize")
.internal()
.doc("The maximum read buffer size for one file")
.bytesConf(ByteUnit.BYTE)
.createWithDefaultString("1M")

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("1M")

val MAX_PARTITION_PER_WRITERS_SESSION =
buildConf("spark.gluten.sql.columnar.backend.velox.maxPartitionsPerWritersSession")
.internal()
Expand Down

0 comments on commit 6471ecc

Please sign in to comment.