[improvement](nereids) add config for nereids trace dir (#27495)

Signed-off-by: nextdreamblue <zxw520blue1@163.com>
This commit is contained in:
xueweizhang
2023-11-25 10:37:23 +08:00
committed by GitHub
parent 3d2b194985
commit 7134da63ac
4 changed files with 18 additions and 1 deletions

View File

@ -2268,4 +2268,8 @@ public class Config extends ConfigBase {
+ "If it is less than this value, it will be diagnosed as balanced."
})
public static double diagnose_balance_max_tablet_num_ratio = 1.1;
@ConfField(description = {"nereids trace文件的存放路径。",
"The path of the nereids trace file."})
public static String nereids_trace_log_dir = System.getenv("DORIS_HOME") + "/log/nereids_trace";
}