What is the job's state machine #819
Answered
by
bgentry
chenyanchen
asked this question in
Q&A
-
What is the state of jobs?I try to visualize the state of jobs in a state diagram, but I am not sure if it is correct. And some questions:
stateDiagram-v2
[*] --> pending
pending --> scheduled
scheduled --> available
available --> running
retryable --> scheduled
pending --> cancelled: cancel
scheduled --> cancelled: cancel
available --> cancelled: cancel
running --> cancelled: cancel
running --> retryable
running --> completed
running --> discarded
cancelled --> [*]
completed --> [*]
discarded --> [*]
|
Beta Was this translation helpful? Give feedback.
Answered by
bgentry
Mar 25, 2025
Replies: 1 comment 1 reply
-
The states are documented in the Go code: https://pkg.go.dev/github.com/riverqueue/river/rivertype#JobState
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
chenyanchen
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The states are documented in the Go code: https://pkg.go.dev/github.com/riverqueue/river/rivertype#JobState