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
Hi, Is it possible to list all the application names which are using given table/ hdfs location ? For example I have Hive table test.table and my goal is to show applications which using it.
There is no such feature in the UI yet, but you can do it by querying ArangoDB directly
For example:
FOR ds IN dataSource
FILTER LIKE(ds.uri, "%test.table%")
FOR execPlan IN 1..1 INBOUND ds depends // or `affects` or `depends, affects` if you want both
COLLECT appName=execPlan.extra['appName']
RETURN appName
Question
Hi, Is it possible to list all the application names which are using given table/ hdfs location ? For example I have Hive table test.table and my goal is to show applications which using it.
input
test.table
expected result
The text was updated successfully, but these errors were encountered: