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

gavinchou 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 5dd27802096 [change](index) change 
enable_create_bitmap_index_as_inverted_index default to true (#36692)
5dd27802096 is described below

commit 5dd2780209688b9bc52ca43bf780b6311903e84c
Author: Kang <kxiao.ti...@gmail.com>
AuthorDate: Fri Jul 12 14:54:17 2024 +0800

    [change](index) change enable_create_bitmap_index_as_inverted_index default 
to true (#36692)
    
    When an user create a new BITMAP INDEX, an INVERTED INDEX will be
    created instead, since INVERTED INDEX is ready to replace BITMAP INDEX.
    The transformation is transparent to user and nothing need to be done by
    user. Already existed BITMAP INDEX will NOT be changed and can be used
    as before.
---
 fe/fe-common/src/main/java/org/apache/doris/common/Config.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java 
b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
index dc8f296cf3e..0467a4931d2 100644
--- a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
+++ b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
@@ -2757,7 +2757,7 @@ public class Config extends ConfigBase {
     public static boolean enable_light_index_change = true;
 
     @ConfField(mutable = true, masterOnly = true)
-    public static boolean enable_create_bitmap_index_as_inverted_index = false;
+    public static boolean enable_create_bitmap_index_as_inverted_index = true;
 
     @ConfField(mutable = true)
     public static boolean enable_create_inverted_index_for_array = false;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to