Skip to content
Merged
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
1 change: 1 addition & 0 deletions serverless/endpoints/job-states.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Understanding job states and metrics is essential for effectively managing your
Understanding job states helps you track the progress of individual <RequestsTooltip /> and identify where potential issues might occur in your workflow.

* `IN_QUEUE`: The job is waiting in the endpoint queue for an available worker to process it.
* `IN_PROGRESS`: The job has been picked up by a worker and is currently being processed. The request is no longer waiting in the queue.
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added IN_PROGRESS status based on Madiator2011's request explaining that this is a valid status indicating a job has been picked up by a worker and is currently being processed.

Source: https://Team.slack.com/archives/D0B4LTV9WUB/p1779200622852679

* `RUNNING`: A worker has picked up the job and is actively processing it.
* `COMPLETED`: The job has finished processing successfully and returned a result.
* `FAILED`: The job encountered an error during execution and did not complete successfully.
Expand Down
Loading