Extractors throwing away column metadata? #680
NodeJSmith
started this conversation in
General
Replies: 1 comment
-
This is more a usage thing so I convert it to discussion. And to your question, the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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.
Beta Was this translation helpful? Give feedback.
All reactions