diff options
author | hcpp <hcpp@ydb.tech> | 2022-07-26 12:48:47 +0300 |
---|---|---|
committer | hcpp <hcpp@ydb.tech> | 2022-07-26 12:48:47 +0300 |
commit | eecc67f61b0315ade38ffc278169a2155e89544d (patch) | |
tree | fbb1f98328eb39ab1efb3b81e9e1debc3a551598 | |
parent | a46b789cd36f6026f5bf7cf30221e42c388dad2b (diff) | |
download | ydb-eecc67f61b0315ade38ffc278169a2155e89544d.tar.gz |
fq submitted at
-rw-r--r-- | ydb/public/api/protos/fq.proto | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ydb/public/api/protos/fq.proto b/ydb/public/api/protos/fq.proto index 2e08f76543..291d6f4c99 100644 --- a/ydb/public/api/protos/fq.proto +++ b/ydb/public/api/protos/fq.proto @@ -145,8 +145,13 @@ message QueryMeta { } CommonMeta common = 1; - google.protobuf.Timestamp started_at = 2; - google.protobuf.Timestamp finished_at = 3; + // Timeline (submitted_at <= started_at <= finished_at) + // sumbitted_at + // \ -> started_at + // \ -> finished_at + google.protobuf.Timestamp submitted_at = 14; // Time when the query was queued for execution + google.protobuf.Timestamp started_at = 2; // Start time of query execution + google.protobuf.Timestamp finished_at = 3; // Query completition time ExecuteMode execute_mode = 4; ComputeStatus status = 5; int64 last_job_query_revision = 6; |