Job
| FUNCTION | DESCRIPTION |
|---|---|
download_job_logs |
Download zipped job folder |
get_job_list |
Get job list for given project |
get_user_jobs |
Returns all the jobs from projects linked to the current user |
get_workflow_jobs |
Returns all the jobs related to a specific workflow |
read_job |
Return info on an existing job |
stop_job |
Stop execution of a workflow job. |
Classes¶
Functions:¶
download_job_logs(project_id, job_id, user=Depends(get_api_guest), db=Depends(get_async_db))
async
¶
Download zipped job folder
Source code in fractal_server/app/routes/api/v2/job.py
get_job_list(project_id, user=Depends(get_api_guest), log=True, db=Depends(get_async_db))
async
¶
Get job list for given project
Source code in fractal_server/app/routes/api/v2/job.py
get_user_jobs(user=Depends(get_api_guest), log=True, db=Depends(get_async_db))
async
¶
Returns all the jobs from projects linked to the current user
Source code in fractal_server/app/routes/api/v2/job.py
get_workflow_jobs(project_id, workflow_id, user=Depends(get_api_guest), db=Depends(get_async_db))
async
¶
Returns all the jobs related to a specific workflow
Source code in fractal_server/app/routes/api/v2/job.py
read_job(project_id, job_id, show_tmp_logs=False, user=Depends(get_api_guest), db=Depends(get_async_db))
async
¶
Return info on an existing job
Source code in fractal_server/app/routes/api/v2/job.py
stop_job(project_id, job_id, user=Depends(get_api_user), db=Depends(get_async_db))
async
¶
Stop execution of a workflow job.