Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnavBalyan committed Jan 7, 2025
1 parent 7aa3331 commit a152ba8
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ class GlutenConfig(conf: SQLConf) extends Logging {
def enableBroadcastBuildRelationInOffheap: Boolean =
getConf(VELOX_BROADCAST_BUILD_RELATION_USE_OFFHEAP)

def enableEncryptedParquetFallback: Boolean = conf.getConf(ENCRYPTED_PARQUET_FALLBACK_ENABLED)
def enableEncryptedParquetFallback: Boolean = getConf(ENCRYPTED_PARQUET_FALLBACK_ENABLED)

}

Expand Down Expand Up @@ -2279,6 +2279,8 @@ object GlutenConfig {
.internal()
.doc("Experimental: If enabled, broadcast build relation will use offheap memory. " +
"Otherwise, broadcast build relation will use onheap memory.")
.booleanConf
.createWithDefault(false)

val ENCRYPTED_PARQUET_FALLBACK_ENABLED =
buildStaticConf("spark.gluten.sql.fallbackEncryptedParquet")
Expand Down

0 comments on commit a152ba8

Please sign in to comment.