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

Adding status codes to run doc #6586

Merged
merged 2 commits into from
Dec 4, 2024
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
13 changes: 12 additions & 1 deletion website/docs/reference/commands/run.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,15 @@

The `run` command supports the `--empty` flag for building schema-only dry runs. The `--empty` flag limits the refs and sources to zero rows. dbt will still execute the model SQL against the target data warehouse but will avoid expensive reads of input data. This validates dependencies and ensures your models will build properly.

</VersionBlock>
</VersionBlock>

## Status codes

When calling the [list_runs api](/dbt-cloud/api-v2#/operations/List%20Runs), you will get a status code for each run returned. The available run status codes are as follows:

Check warning on line 90 in website/docs/reference/commands/run.md

View workflow job for this annotation

GitHub Actions / vale

[vale] website/docs/reference/commands/run.md#L90

[custom.Typos] Oops there's a typo -- did you really mean 'list_runs'?
Raw output
{"message": "[custom.Typos] Oops there's a typo -- did you really mean 'list_runs'? ", "location": {"path": "website/docs/reference/commands/run.md", "range": {"start": {"line": 90, "column": 19}}}, "severity": "WARNING"}

- Starting = 1
- Running = 3
- Success = 10
- Error = 20
- Canceled = 30
- Skipped = 40
Loading