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/incubator-doris.git
The following commit(s) were added to refs/heads/master by this push: new d9bbf67b9e [DefaultConfigChange]enable query vectorization and storage vectorization and storage low cardinality optimization by default (#9848) d9bbf67b9e is described below commit d9bbf67b9eefabe938209da362385b12b3637d42 Author: yiguolei <676222...@qq.com> AuthorDate: Wed Jun 8 15:29:43 2022 +0800 [DefaultConfigChange]enable query vectorization and storage vectorization and storage low cardinality optimization by default (#9848) Co-authored-by: yiguolei <yiguo...@gmail.com> --- be/src/common/config.h | 4 ++-- fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/be/src/common/config.h b/be/src/common/config.h index fe40be22a8..fd37ca0b48 100644 --- a/be/src/common/config.h +++ b/be/src/common/config.h @@ -235,9 +235,9 @@ CONF_Int32(index_page_cache_percentage, "10"); // whether to disable page cache feature in storage CONF_Bool(disable_storage_page_cache, "false"); -CONF_Bool(enable_storage_vectorization, "false"); +CONF_Bool(enable_storage_vectorization, "true"); -CONF_Bool(enable_low_cardinality_optimize, "false"); +CONF_Bool(enable_low_cardinality_optimize, "true"); // be policy // whether disable automatic compaction task diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java index 6d18557b98..53392e9901 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java +++ b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java @@ -410,7 +410,7 @@ public class SessionVariable implements Serializable, Writable { @VariableMgr.VarAttr(name = RUNTIME_FILTER_MAX_IN_NUM) private int runtimeFilterMaxInNum = 1024; @VariableMgr.VarAttr(name = ENABLE_VECTORIZED_ENGINE) - public boolean enableVectorizedEngine = false; + public boolean enableVectorizedEngine = true; @VariableMgr.VarAttr(name = ENABLE_PARALLEL_OUTFILE) public boolean enableParallelOutfile = false; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org