This project has retired. For details please refer to its Attic page.
Falcon - GET api/metadata/lineage/entities?pipeline=:pipeline

GET api/metadata/lineage/entities?pipeline=:pipeline

Description

It returns the graph depicting the relationship between the various processes and feeds in a given pipeline.

Parameters

  • :pipeline is the name of the pipeline

Results

It returns a json graph

Examples

Rest Call

GET http://localhost:15000/api/metadata/lineage/entities?pipeline=my-pipeline

Result

{
    "vertices": ["my-minutely-process", "my-hourly-process"],
    "edges":
    [
        {
         "from"  : "my-minutely-process",
         "to"    : "my-hourly-process",
         "label" : "my-minutely-feed"
        },
        {
         "from"  : "my-hourly-process",
         "to"    : "my-minutely-process",
         "label" : "my-hourly-feedback"
        }
    ]
}