-
Notifications
You must be signed in to change notification settings - Fork 14.7k
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
openlineage: isolate metadata extraction by executing OL methods in separate, forked process #40078
Merged
Conversation
This file contains 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
2c96acb
to
44ba855
Compare
potiuk
reviewed
Jun 8, 2024
69865d6
to
7c13f5d
Compare
potiuk
reviewed
Jun 11, 2024
potiuk
reviewed
Jun 11, 2024
potiuk
reviewed
Jun 11, 2024
potiuk
reviewed
Jun 11, 2024
potiuk
reviewed
Jun 11, 2024
potiuk
reviewed
Jun 11, 2024
potiuk
reviewed
Jun 11, 2024
potiuk
reviewed
Jun 11, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
few nits about splitting the PR
Ah I missed those are two commits/PRs already :) |
d863e62
to
55e5792
Compare
55e5792
to
8cbb8bc
Compare
Signed-off-by: Maciej Obuchowski <[email protected]>
8cbb8bc
to
187d87e
Compare
potiuk
approved these changes
Jun 14, 2024
96 tasks
20 tasks
romsharon98
pushed a commit
to romsharon98/airflow
that referenced
this pull request
Jul 26, 2024
…ss (apache#40078) Signed-off-by: Maciej Obuchowski <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area:providers
area:Scheduler
including HA (high availability) scheduler
provider:google
Google (including GCP) related issues
provider:openlineage
AIP-53
provider:snowflake
Issues related to Snowflake provider
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.
This PR builds on #39890 (already merged).
After this change, OpenLineage will execute metadata extraction in separate, forked process.
It's a technique modeled to what interaction between
LocalTaskJobRunner
andStandardTaskRunner
looks like - a process, in this case process ofStandardTaskRunner
watches over OpenLineage listener process during metadata extraction.This adds a layer of isolation between task execution and OpenLineage, adding a level of assurance that OpenLineage execution does not interfere with task execution in a way other than taking time.
Additionally, this allows us to add configurable timeout for OL execute methods.
The reason for that is, beyond configurability, that sometimes metadata extraction code can hang - for example, when dealing with Snowflake connection issue snowflakedb/snowflake-connector-python#1898 - and we want to give as much guarantees that OL will not cause task to fail.