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

[docs] add note about alert behavior with RetryPolicy #26794

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 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
7 changes: 6 additions & 1 deletion docs/content/dagster-plus/managing-deployments/alerts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ Alert policies are configured on a **per-deployment basis**. This means, for exa
Triggers on:
<ul>
<li>
<strong>Asset materializations</strong> - Failure or success
<strong>Asset materializations</strong> - Failure or success.{" "}
<strong>Note:</strong> if using a{" "}
<a href="/concepts/assets/software-defined-assets#retrying-failed-assets">
RetryPolicy
</a>
, alert will only be sent after all retries complete.
garethbrickman marked this conversation as resolved.
Show resolved Hide resolved
</li>
<li>
<a href="/concepts/assets/asset-checks">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ By default, these alerts will target all assets in the deployment, but they can

If desired, select a **target** from the dropdown menu to scope this alert to a specific asset or group.

**Note:** If using a RetryPolicy, alert will only be sent after all retries complete.
garethbrickman marked this conversation as resolved.
Show resolved Hide resolved

</TabItem>
<TabItem value='cli' label='Using the CLI'>
Execute the following command to sync the configured alert policy to your Dagster+ deployment.
Expand Down
Loading