Get Running Jobs
GET/api/v2/rawmodel/jobs
Returns rapidmodels (until 1 week) that are still being processed or were not successfully optimized
Request
Responses
- 200
success
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object[]
id integer
name string
optimization_status string
job_status object
id integer
job_id string
type string
queue string
attempts integer
progress_now integer
progress_max integer
status string
input string
output string
created_at string
updated_at string
started_at string
finished_at string
key string
progress integer
processing_step string
external boolean
rawmodel object
id integer
name string
{
"data": [
{
"id": 5812,
"name": "TVBench",
"optimization_status": "failed",
"job_status": {
"id": 3601,
"job_id": "edab51b2-1c47-4a0f-b807-58e913dbabc9",
"type": "App\\Jobs\\ProcessRawModel",
"queue": "default",
"attempts": 1,
"progress_now": 100,
"progress_max": 100,
"status": "finished",
"input": null,
"output": "{\"exit_code\":1}",
"created_at": "2021-10-11 20:08:52",
"updated_at": "2021-10-11 20:08:53",
"started_at": "2021-10-11 20:08:52",
"finished_at": "2021-10-11 20:08:53",
"key": "rapid_model:5812"
},
"progress": 100,
"processing_step": "Done",
"external": false,
"rawmodel": {
"id": 2257,
"name": "TVBench"
}
}
]
}
Loading...