feat(jobs): improve retries#6703
Open
thomas-tacquet wants to merge 4 commits into
Open
Conversation
firdevs-a
reviewed
Jul 16, 2026
Co-authored-by: Firdevs Arslan <farslan@scaleway.com>
Loic-kd
reviewed
Jul 16, 2026
Loic-kd
reviewed
Jul 16, 2026
|
|
||
|
|
||
| The retry option allows you to define how many times a Serverless Job automatically retries on failure. When the maximum number of failed retries is reached, the job is permanently marked as failed. | ||
| The retry option lets you define how many times a Serverless Job automatically retries on failure. A retry triggers when the job run reaches the `failed` [Status](/serverless-jobs/concepts/#status), the configured retry count is greater than zero, and the job run exits with a non-zero exit code. Once the job reaches the maximum number of failed retries, it is permanently marked as failed. |
Collaborator
There was a problem hiding this comment.
I don't get what is the added value for the user to go this deep in technical explanations ?
There is only one setting in the console, and it is named "Max retry attempts". So I would like to write the explanations around this and not the technical magic behind:
- The user sets a maximum number of retry attempts.
- A job run that does not succeed retries until the max retries number is reached.
Co-authored-by: Loic-kd <lkhamdy@scaleway.com>
firdevs-a
approved these changes
Jul 17, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Your checklist for this pull request
Description
Please describe what you added or changed.