I need to configure tinkergraph-empty.properties
file in gremlin-server so the ids are generated with the "ANY" logic
gremlin.tinkergraph.vertexIdManager=ANY
gremlin.tinkergraph.edgeIdManager=ANY
gremlin.tinkergraph.vertexPropertyIdManager=ANY
I tested this configuration with an empty database: When I created some vertices I noticed that the ids are numbers represented in a string, the numbers are not sequential, does this mean there will be id collisions? What is the logic behind this?
I need this configuration because I need my local gremlin-server to be compatible with the data in Amazon Neptune, only ANY is compatible with the Neptune ids. I need to be able to load the database content of Neptune in localhost gremlin-server to do some operations with it and maybe then transfer that back to Neptune without issues.
I'm worried about collisions because that destroys data and when my data is destroyed is my project as well.