Creating new collections for appId to DataSource mapping #1265
vishalag001
started this conversation in
General
Replies: 1 comment 2 replies
-
Hi @wajda can you help with the above usecase ? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi @wajda,
We have a usecase where we want to track appId to dataSource uri mapping. In current design, dataSource Uri is available via 2 hops
progress -> progressOf -> executionPlan -> [affects, depends] -> dataSource
But if we creates a new edge collection which maps (appId, DataSource) we can directly get the relationship and the graph.
For this I created two new collections -
jobs
document to store appId andowns
edge collection to store the mapping between appId and datasource.I tweaked the progress inserts code to following
This works, but the problem is Arango is getting stuck due to QueueFull error.
Any idea/suggestions why is this happening ?
Beta Was this translation helpful? Give feedback.
All reactions