-
Notifications
You must be signed in to change notification settings - Fork 295
[Experimental] Add source freshness aware execution for ExecutionMode.WATCHER #2467
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
Merged
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
b9cfc2d
Add source freshness aware execution for ExecutionMode.WATCHER
tatiana 32c637b
Address review feedback on skip status handling
tatiana 4fc12de
Resolve graph nodes from DbtDag/DbtTaskGroup converter
tatiana b32cb01
Use EventStatus.SKIPPED constant for skipped trigger events
tatiana 8536e61
Sort model names in --exclude for deterministic command output
tatiana 806cb76
Document _check_source_freshness in producer docstring
tatiana 0895c55
Use == instead of is for enum comparison in graph.py
tatiana a0f745c
Fall through to error handling when sources.json is missing
tatiana 84fb166
Parse resource names correctly for versioned dbt models
tatiana bb288c0
Use full graph for source freshness dependency traversal
tatiana e47a8c8
Merge branch 'main' into feature/watcher-source-freshness
tatiana b2d7baa
Source tasks as consumer sensors, push freshness to XCom
tatiana 42a0635
Remove multibyte model from altered_jaffle_shop
tatiana 0f6a246
Add an example source DAG with watcher
tatiana 914a11a
Run example_source_rendering.py in AF3
tatiana 18083c2
Fix tests for warn status, source operator, and multibyte removal
tatiana f22d9f7
Reduce source freshness interval to help testing
tatiana 2668382
🎨 [pre-commit.ci] Auto format from pre-commit.com hooks
pre-commit-ci[bot] 4cabef4
Fix altered_jaffle_shop node count in dbt_ls test (40 to 39)
tatiana 77a1ae2
Run handle_exception before early return in source freshness
tatiana 19aad8a
Override _resource_label for DbtSourceWatcherOperator
tatiana 8e1a997
Override fallback for DbtSourceWatcherOperator
tatiana 9a1c720
Revert trigger poll log to DEBUG to reduce log noise
tatiana c547eef
Add ordered integration test for watcher source rendering DAG
tatiana 0d94ade
Clear dbt_cmd_flags for source freshness command
tatiana 1cc45c3
Update dev/dags/example_source_rendering.py
tatiana 270ad19
Fix _make_producer to test actual default for _check_source_freshness
tatiana File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,6 +25,7 @@ | |
| class EventStatus: | ||
| SUCCESS = "success" | ||
| FAILED = "failed" | ||
| SKIPPED = "skipped" | ||
|
|
||
|
|
||
| DAG_RUN = "dag_run" | ||
|
|
||
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.