[enhancement](k8s) Support fqdn mode for fe in k8s enviroment (#16315)

This commit is contained in:
yinzhijian
2023-03-01 10:54:39 +08:00
committed by GitHub
parent 774f66c6bc
commit 48afd77e37
28 changed files with 501 additions and 189 deletions

View File

@ -54,9 +54,11 @@ public final class FeMetaVersion {
public static final int VERSION_116 = 116;
// add user and comment to load job
public static final int VERSION_117 = 117;
// note: when increment meta version, should assign the latest version to VERSION_CURRENT
// change frontend meta to json, add hostname to MasterInfo
public static final int VERSION_118 = 118;
public static final int VERSION_CURRENT = VERSION_117;
// note: when increment meta version, should assign the latest version to VERSION_CURRENT
public static final int VERSION_CURRENT = VERSION_118;
// all logs meta version should >= the minimum version, so that we could remove many if clause, for example
// if (FE_METAVERSION < VERSION_94) ...