
Change the location where the Worker writes its local files so that it follows the XDG specification (instead of writing to the current working directory). - Linux: `$HOME/.local/share/flamenco` - Windows: `C:\Users\UserName\AppData\Local\Flamenco` - macOS: `$HOME/Library/Application Support/Flamenco` NOTE: The old files will not be loaded any more. This means that if nothing is done and the new worker is run as-is, it will reregister as a brand new worker. Move `flamenco-worker-credentials.yaml` and `flamenco-worker.sqlite` to the new location to avoid this.
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 | |
|