Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds task queue priority #2350

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion src/pages/docs/tasks/prioritize-tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,14 @@ Ensure any other queued deployments to the same environment are cancelled when p

## Lifecycle phases

Octopus **2024.2** adds a feature to mark a phase within a lifecycle as a priority. See [lifecycle phases with priority](/docs/releases/lifecycles#phases-with-priority) for more information.
Octopus **2024.3** adds a feature to mark a phase within a lifecycle as a priority. See [lifecycle phases with priority](/docs/releases/lifecycles#phases-with-priority) for more information.

## Task queue priority
In Octopus **2024.3** we have redesigned the task system. Tasks are processed based on their priority, in this order:
* Queued tasks that are moved to the top
* Tasks created from a prioritized deployment or runbook
* Regular tasks

Within each category, tasks are handled on a first in, first out basis.

The **Move to Top** button prioritizes the selected task above all others. This ensures that urgent tasks, such as hotfixes, can be addressed immediately.
Loading