
The flamenco.io website moves to flamenco.blender.org! This commit updates the Makefile as follows: - Rename 'site' to 'project-website', so the new command to deploy is 'make project-website' - Move the website directory from 'flamenco-io-site' to 'project-website' - Update the rsync command do reflect the new deployment destination
20 lines
734 B
Markdown
20 lines
734 B
Markdown
---
|
|
title: Jobs, Tasks, and Commands
|
|
weight: 5
|
|
---
|
|
|
|
TODO: write about the pipeline from job submission to command execution.
|
|
|
|
|
|
## Task Statuses
|
|
|
|
The following table shows the meaning of the different task statuses:
|
|
|
|
| Status | Meaning | Possible next status |
|
|
| ------------- | ------- | ----------- |
|
|
| `queued` | Ready to be worked on by a Worker | `active`, `canceled` |
|
|
| `active` | Assigned to a worker for execution | `completed`, `canceled`, `failed`, `soft-failed` |
|
|
| `soft-failed` | Same as `queued`, but has been failed by a worker in an earlier execution | `completed`, `failed`, `canceled` |
|
|
| `completed` | Worker executed the task succesfully | `requeued` |
|
|
| `paused` | Not yet implemented | |
|