Hello,
Atlas version = 0.8-incubating
I'm developing an application which creates a custom Process entity that has inputs and outputs for other DataSet entities that the process interact with.
It works fine for adding new relationships, however, I couldn't find a proper way to remove entries in inputs/outputs array of a Process entity once it has been created.
I tried to resend the entity after I removed entries in those arrays via Atlas REST API, but to no avail so far.
So I dug in Atlas source code and found EntityGraphMapper.removeUnusedArrayEntries delegates delete action to deleteHandler and if it returns false, it adds the unused edge back into the list.
The deleteHandler uses SoftDeleteHandlerV1 by default which always return false.
https://github.com/apache/incubator-atlas/blob/master/repository/src/main/java/org/apache/atlas/repo...
Any advice would be appreciated!