Children api
This commit is contained in:
parent
c9614a1405
commit
1acf7240d9
|
@ -1,9 +1,10 @@
|
||||||
## 0.5.3 (Unreleased)
|
## 0.5.3 (Unreleased)
|
||||||
|
|
||||||
IMPROVEMENTS:
|
IMPROVEMENTS:
|
||||||
* api: Added APIs for requesting GC of allocations [GH-2192]
|
* core: Introduce parameterized jobs and dispatch command/API [GH-2128]
|
||||||
* core: Introduce Parameterized Jobs and Dispatch command/API [GH-2128]
|
|
||||||
* core: Cancel blocked evals upon successful one for job [GH-2155]
|
* core: Cancel blocked evals upon successful one for job [GH-2155]
|
||||||
|
* api: Added APIs for requesting GC of allocations [GH-2192]
|
||||||
|
* api: Job summary endpoint includes summary status for child jobs [GH-2128]
|
||||||
* api/client: Plain text log streaming suitable for viewing logs in a browser
|
* api/client: Plain text log streaming suitable for viewing logs in a browser
|
||||||
[GH-2235]
|
[GH-2235]
|
||||||
* cli: Defaulting to showing allocations which belong to currently registered
|
* cli: Defaulting to showing allocations which belong to currently registered
|
||||||
|
|
|
@ -274,6 +274,11 @@ region is used; another region can be specified using the `?region=` query param
|
||||||
```javascript
|
```javascript
|
||||||
{
|
{
|
||||||
"JobID": "example",
|
"JobID": "example",
|
||||||
|
"Children": {
|
||||||
|
"Dead": 0,
|
||||||
|
"Running": 7,
|
||||||
|
"Pending": 2
|
||||||
|
},
|
||||||
"Summary": {
|
"Summary": {
|
||||||
"cache": {
|
"cache": {
|
||||||
"Queued": 0,
|
"Queued": 0,
|
||||||
|
|
Loading…
Reference in New Issue