[feat](stats) delete data size stat and Made task timeout configurable (#20090)

1. Delete the stats for data size, since it would cost too much time but useless
2. Make task time out configurable since when it's common to analyze a quite huge table that the default 10 min is not suitable
This commit is contained in:
AKIRA
2023-05-29 17:40:59 +09:00
committed by GitHub
parent 55ccddb62c
commit cc47ee480c
5 changed files with 136 additions and 134 deletions

View File

@ -1993,4 +1993,8 @@ public class Config extends ConfigBase {
"是否启用binlog特性",
"Whether to enable binlog feature"})
public static boolean enable_feature_binlog = false;
@ConfField
public static int analyze_task_timeout_in_minutes = 120;
}