Conversation
|
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #6834 +/- ##
==========================================
+ Coverage 47.18% 47.32% +0.14%
==========================================
Files 419 419
Lines 51964 52253 +289
Branches 7548 7605 +57
==========================================
+ Hits 24521 24731 +210
- Misses 25689 25754 +65
- Partials 1754 1768 +14
... and 1 file with indirect coverage changes Continue to review full report in Codecov by Harness.
🚀 New features to boost your workflow:
|
ntkathole
force-pushed
the
extended_openlineage
branch
3 times, most recently
from
September 15, 2026 07:41
9ade90e to
c25aac0
Compare
…lineage, ownership Signed-off-by: ntkathole <[email protected]>
ntkathole
force-pushed
the
extended_openlineage
branch
from
September 16, 2026 13:42
c25aac0 to
3ea5ee4
Compare
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.
What this PR does / why we need it:
Summary
Extends the Feast OpenLineage consumer with spec-compliant facet extraction,
adds dataset versioning, and enriches SavedDataset producer events.
Consumer improvements
openlineage_dataset_versionstable; a versionsnapshot is created for each output dataset on every COMPLETE RunEvent
ColumnLineageDatasetFacet, storesfield-to-field mappings in
openlineage_column_lineagetableOwnershipDatasetFacetinto queryableowner_name/owner_typecolumns and a dedicatedopenlineage_dataset_ownershiptable (supports multiple owners per dataset)
LifecycleStateChangeDatasetFacet(CREATE/ALTER/DROP) into
lifecycle_statecolumn on datasetsParentRunFacetto populateparent_run_idand
root_run_idon runs; adds run-tree query APINew REST API endpoints
GET /datasets/{ns}/{name}/versionsGET /datasets/{ns}/{name}/columnsGET /runs/{run_id}/treeOwnership, lifecycle, version, and owner fields are returned inline on
dataset nodes in the existing full-graph response — no separate endpoints
needed.
SavedDataset producer
emit_saved_dataset_lineage()now emits an additional DatasetEvent with:SymlinksDatasetFacetlinking logical name → physical storage URIOwnershipDatasetFacetfrom tags/owner fieldLifecycleStateChangeDatasetFacet(CREATE)UI
Added version, lifecycle, and owner badges to the OpenLineage graph
node detail panel (inline with existing producer/type badges).