1
0

[HUDI-3867] Disable Data Skipping by default (#5306)

This commit is contained in:
Alexey Kudinkin
2022-04-12 22:51:12 -07:00
committed by GitHub
parent 7b78dff45f
commit 434e782b7d

View File

@@ -119,7 +119,7 @@ object DataSourceReadOptions {
val ENABLE_DATA_SKIPPING: ConfigProperty[Boolean] = ConfigProperty
.key("hoodie.enable.data.skipping")
.defaultValue(true)
.defaultValue(false)
.sinceVersion("0.10.0")
.withDocumentation("Enables data-skipping allowing queries to leverage indexes to reduce the search space by " +
"skipping over files")