[Enhancement](alter inverted index) Improve alter inverted index performance with light weight add or drop inverted index (#19063)

This commit is contained in:
YueW
2023-05-28 11:23:07 +08:00
committed by GitHub
parent da17c45c0b
commit ae352997b4
53 changed files with 2726 additions and 1082 deletions

View File

@ -62,9 +62,11 @@ public final class FeMetaVersion {
public static final int VERSION_120 = 120;
// For BackendHbResponse node type
public static final int VERSION_121 = 121;
// For IndexChangeJob
public static final int VERSION_122 = 122;
// note: when increment meta version, should assign the latest version to VERSION_CURRENT
public static final int VERSION_CURRENT = VERSION_121;
public static final int VERSION_CURRENT = VERSION_122;
// all logs meta version should >= the minimum version, so that we could remove many if clause, for example
// if (FE_METAVERSION < VERSION_94) ...