-
Notifications
You must be signed in to change notification settings - Fork 14.4k
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
AIP-65: Track the serialized DAG across DagRun & TaskInstance #42690
Closed
Commits on Oct 4, 2024
-
AIP-65: Add versioning to the SerializedDagModel
This commit adds versioning to the serializedDagModel. Changes: Added new columns, id, and version_number to the SDM and made id the primary key. Updated the write_dag method of the SDM to add the SDs correctly. Updated the queries so the scheduler/webserver runs with the latest SDM The version_number was added to help us track the evolution of a DAG. Suppose a DAG with dag_hash AB is changed, and the dag_hash becomes CD. If the change is reverted, we will have a dag_hash of AB again. In this case, the version_number would still increment, letting us know that the DAG was changed three times. I feel it's a meaningful way to track the changes, independent of the id column, which is database internals.
Configuration menu - View commit details
-
Copy full SHA for 69e600d - Browse repository at this point
Copy the full SHA 69e600dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 26747d2 - Browse repository at this point
Copy the full SHA 26747d2View commit details -
Configuration menu - View commit details
-
Copy full SHA for a9ec801 - Browse repository at this point
Copy the full SHA a9ec801View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2bebaa9 - Browse repository at this point
Copy the full SHA 2bebaa9View commit details -
Configuration menu - View commit details
-
Copy full SHA for fac8475 - Browse repository at this point
Copy the full SHA fac8475View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4b6bc79 - Browse repository at this point
Copy the full SHA 4b6bc79View commit details -
Configuration menu - View commit details
-
Copy full SHA for eb02bd0 - Browse repository at this point
Copy the full SHA eb02bd0View commit details -
Configuration menu - View commit details
-
Copy full SHA for b7968e8 - Browse repository at this point
Copy the full SHA b7968e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for bf37518 - Browse repository at this point
Copy the full SHA bf37518View commit details -
AIP-65: Track the serialized DAG across DagRun & TaskInstance
This helps to track the serialized DAG version the task instance ran with by establishing a relationship between the entities instead of using the dag_hash.
Configuration menu - View commit details
-
Copy full SHA for c587d3a - Browse repository at this point
Copy the full SHA c587d3aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 177aa86 - Browse repository at this point
Copy the full SHA 177aa86View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9c5ea0d - Browse repository at this point
Copy the full SHA 9c5ea0dView commit details
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.