Browse Source

add status processing (#6609)

ildar-khisambeev 7 months ago
parent
commit
63c9b91350
1 changed files with 4 additions and 3 deletions
  1. 4 3
      ydb/core/protos/statistics.proto

+ 4 - 3
ydb/core/protos/statistics.proto

@@ -117,7 +117,7 @@ message TEvAnalyzeTable {
 
 // Shard -> SA
 message TEvAnalyzeTableResponse {
-    optional NKikimrProto.TPathID PathId = 1;   
+    optional NKikimrProto.TPathID PathId = 1;
 }
 
 
@@ -145,8 +145,9 @@ message TEvStatisticsResponse {
     enum EStatus {
         STATUS_UNSPECIFIED = 0;
         STATUS_SUCCESS = 1;
-        STATUS_ABORTED = 2;
-        STATUS_ERROR = 3;
+        STATUS_PROCESSING = 2;
+        STATUS_ABORTED = 3;
+        STATUS_ERROR = 4;
     }
     optional EStatus Status = 2;
     optional fixed64 ShardTabletId = 3;