From f35815329449970d2a665de767cc01562f981d3f Mon Sep 17 00:00:00 2001 From: wjchuee Date: Wed, 24 Apr 2024 19:39:39 +0800 Subject: [PATCH] Add data prepare time to cluster_trace_step_time --- profiler/cluster_analyse/common_func/tables_config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/profiler/cluster_analyse/common_func/tables_config.py b/profiler/cluster_analyse/common_func/tables_config.py index 75ee41c058..0fe7d07ed1 100644 --- a/profiler/cluster_analyse/common_func/tables_config.py +++ b/profiler/cluster_analyse/common_func/tables_config.py @@ -58,6 +58,7 @@ class TablesConfig: ("free", "NUMERIC, null"), ("stage", "NUMERIC, null"), ("bubble", "NUMERIC, null"), - ("communication_not_overlapped_and_exclude_receive", "NUMERIC, null") + ("communication_not_overlapped_and_exclude_receive", "NUMERIC, null"), + ("preparing", "NUMERIC, null") ] } -- Gitee