marquez icon indicating copy to clipboard operation
marquez copied to clipboard

The lineage api needs explicit display names and labels as well as groups to be used in the lineage graph representation

Open julienledem opened this issue 3 years ago • 2 comments

  • explicit definition of a display name
  • explicit description of the structure of the name
  • explicit definition of groups.

example/strawman:

Name: {db name}.public.{table name}

{
  structuredName: [
    { type: “group”, name: “db”, value:”{db name}”},
    { type: “separator”, value: “.”},
    { type: “group”, name: “Schema”, value:”public”},
    { type: “separator”, separator: “.”},
    { type: “name”, name: “table”, value:”{table name}”}
  ]
}

XML model:
<group name=db>{db name}</group>.<group name=Schema>public</group>.<name name=table>{table name}</name>

julienledem avatar Jul 13 '21 23:07 julienledem

@julienledem are explicit display names and labels a Marquez feature? Or, should we re-open this issue in OpenLineage?

wslulciuc avatar Nov 28 '23 21:11 wslulciuc