This is an automated email from the ASF dual-hosted git repository.

codope pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new 434e782b7d [HUDI-3867] Disable Data Skipping by default (#5306)
434e782b7d is described below

commit 434e782b7d0d631e2106375ffa46332b67fcac1d
Author: Alexey Kudinkin <[email protected]>
AuthorDate: Tue Apr 12 22:51:12 2022 -0700

    [HUDI-3867] Disable Data Skipping by default (#5306)
---
 .../src/main/scala/org/apache/hudi/DataSourceOptions.scala              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/hudi/DataSourceOptions.scala
 
b/hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/hudi/DataSourceOptions.scala
index 432988962d..30bbaeceb1 100644
--- 
a/hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/hudi/DataSourceOptions.scala
+++ 
b/hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/hudi/DataSourceOptions.scala
@@ -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")

Reply via email to