@@ -19,6 +19,24 @@ received messages.
19
19
HTTP 200 will be returned in case the job execution id was valid and the state is
20
20
returned along with the response.
21
21
22
+ @RESTREPLYBODY {id,string,required,string}
23
+ An id of the Pregel job, as a string.
24
+
25
+ @RESTREPLYBODY {algorithm,string,required,string}
26
+ An algorithm used by the job.
27
+
28
+ @RESTREPLYBODY {created,string,required,string}
29
+ A date and time when the job was created.
30
+
31
+ @RESTREPLYBODY {expires,string,optional,string}
32
+ A date and time when the job results expire. The expiration date is only
33
+ meaningful for jobs that were completed, canceled or resulted in an error. Such jobs
34
+ are cleaned up by the garbage collection when they reach their expiration date/time.
35
+
36
+ @RESTREPLYBODY {ttl,number,required,float}
37
+ A TTL (time to live) value for the job results, specified in seconds.
38
+ The TTL is used to calculate the expiration date for the job's results.
39
+
22
40
@RESTREPLYBODY {state,string,required,string}
23
41
State of the execution. The following values can be returned:
24
42
- ` "running" ` : Algorithm is executing normally.
@@ -38,7 +56,7 @@ State of the execution. The following values can be returned:
38
56
- ` "recovering" ` (currently unused): The execution is actively recovering, will
39
57
switch back to ` running ` if the recovery was successful.
40
58
41
- @RESTREPLYBODY {gss,number,required,string }
59
+ @RESTREPLYBODY {gss,number,required,int64 }
42
60
The number of global supersteps executed.
43
61
44
62
@RESTREPLYBODY {totalRuntime,number,required,float}
0 commit comments