Skip to content

Commit

Permalink
[change](index) change enable_create_bitmap_index_as_inverted_index d…
Browse files Browse the repository at this point in the history
…efault to true (apache#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.
  • Loading branch information
xiaokang committed Jul 12, 2024
1 parent 0d2d935 commit 619ebcc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2757,7 +2757,7 @@ public static int metaServiceRpcRetryTimes() {
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;
Expand Down

0 comments on commit 619ebcc

Please sign in to comment.