This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 547ff3c8bb7 [fix](parquet) disable parquet page index by default
(#38691)
547ff3c8bb7 is described below
commit 547ff3c8bb78f006d19801d782a11ad03ba70cac
Author: Mingyu Chen <[email protected]>
AuthorDate: Thu Aug 8 08:50:17 2024 +0800
[fix](parquet) disable parquet page index by default (#38691)
there are some issue with page index parsing.
disable it temporarily
---
be/src/common/config.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/be/src/common/config.cpp b/be/src/common/config.cpp
index a68b4c60c01..bc2f6d3e025 100644
--- a/be/src/common/config.cpp
+++ b/be/src/common/config.cpp
@@ -1338,7 +1338,7 @@ DEFINE_mInt64(compaction_batch_size, "-1");
// If set to false, the parquet reader will not use page index to filter data.
// This is only for debug purpose, in case sometimes the page index
// filter wrong data.
-DEFINE_mBool(enable_parquet_page_index, "true");
+DEFINE_mBool(enable_parquet_page_index, "false");
DEFINE_mBool(ignore_not_found_file_in_external_table, "true");
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]