You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am hoping to use this tool to get lineage from dbt models. What I really want is column lineage and it seems that this tool collects that..but then throws it away?
The extractors are initialized in the list comprehension and extractor.extract is called if they are able to extract data. At the end of this step the extractor's columns attribute has a list of column objects from the segments. But at the end of this the column data is thrown away with the extractor and when I later run lr.get_column_lineage() I get back an empty list.
Is this by design? I have been trying to read through the docs and issues over the last hour or so to determine what the goals/functionality of the column lineage are but I'm having a hard time figuring that out.
The text was updated successfully, but these errors were encountered:
I am hoping to use this tool to get lineage from dbt models. What I really want is column lineage and it seems that this tool collects that..but then throws it away?
I'm looking at the below from here
The extractors are initialized in the list comprehension and
extractor.extract
is called if they are able to extract data. At the end of this step the extractor'scolumns
attribute has a list of column objects from the segments. But at the end of this the column data is thrown away with the extractor and when I later runlr.get_column_lineage()
I get back an empty list.Is this by design? I have been trying to read through the docs and issues over the last hour or so to determine what the goals/functionality of the column lineage are but I'm having a hard time figuring that out.
The text was updated successfully, but these errors were encountered: