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
Just an idea, in our current setup spline is not enabled everywhere (currently on purpose, initial phase).
It would be helpful if there was report in UI showing which datasources do not have their lineage - sorted by number of usages
So if i have 3 jobs which are using datasource "users" and i don't have lineage for "users" itself, report could show that this datasource with that URI is used by 3 jobs but lineage is not available
The text was updated successfully, but these errors were encountered:
Good idea We'll think about it in a scope of a new UI
Meantime you can use the following AQL query to achieve that:
FOR ds IN dataSource
LET lineage_cnt = LENGTH(FOR a IN affects FILTER a._to == ds._id RETURN ds)
LET impacts_cnt = LENGTH(FOR d IN depends FILTER d._to == ds._id RETURN ds)
FILTER lineage_cnt == 0
RETURN [impacts_cnt, ds.uri]
Just an idea, in our current setup spline is not enabled everywhere (currently on purpose, initial phase).
It would be helpful if there was report in UI showing which datasources do not have their lineage - sorted by number of usages
So if i have 3 jobs which are using datasource "users" and i don't have lineage for "users" itself, report could show that this datasource with that URI is used by 3 jobs but lineage is not available
The text was updated successfully, but these errors were encountered: