Add conditional logic for dataset triggering#37016
Merged
dstandish merged 23 commits intoapache:mainfrom Feb 21, 2024
Merged
Conversation
cd01fde to
859a0ac
Compare
1 task
0e1e5d8 to
ecccd6f
Compare
Contributor
Author
update: the performance concern appears to be invalid, due to randomness in task execution issues / unrelated scheduler restarts |
83087fc to
3cffcf4
Compare
7514d44 to
ab979da
Compare
Collaborator
Documentation changes are done here |
2 tasks
uranusjr
reviewed
Feb 20, 2024
uranusjr
reviewed
Feb 20, 2024
870452c to
9753973
Compare
This reverts commit 2a2a195244b4e40882cd0f758b356d21167a5299.
Co-authored-by: Jed Cunningham <66968678+jedcunningham@users.noreply.github.com>
Co-authored-by: Jed Cunningham <66968678+jedcunningham@users.noreply.github.com>
Co-authored-by: Jed Cunningham <66968678+jedcunningham@users.noreply.github.com>
0137de6 to
71f6eba
Compare
Co-authored-by: Wei Lee <weilee.rx@gmail.com> Co-authored-by: Jed Cunningham <66968678+jedcunningham@users.noreply.github.com>
Contributor
Author
Created issue on our board @bbovenzi |
jedcunningham
approved these changes
Feb 21, 2024
This was referenced Feb 22, 2024
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Add conditional logic for dataset-triggered dags.
This means we can schedule based on
dataset1 OR dataset1.This PR only implements the underlying classes,
DatasetAnyandDatasetAll. In a followup PR we will add more convenient syntax for this, specifically the|and&symbols, e.g.(dataset1 | dataset2) & dataset3.