-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Traversals reference vertices after deletion #196
Comments
agreed, I doubt that it's a gremlin-scala issue :) |
Can close: 46ddfdd6 removes the dependency on gremlin-scala. NB: In the course of this, I discovered that |
thank you, will factor that in. |
mpollmeier
added a commit
that referenced
this issue
May 16, 2017
mpollmeier
added a commit
that referenced
this issue
May 16, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In a multiprocessor environment, a traversal will sometimes reference vertices which another thread/processor has already deleted. This causes the entire traversal to fail in an unrecoverable fashion and throw an uncaught exception.
MWE here. Gist of the output log of one run here.
To be entirely honest, I'm very doubtful that this is a
gremlin-scala
issue. It seems much more likely that the responsibility lies somewhere in the Java implementation (either inorg.neo4j.???
or one of the Apache/Tinkerpop impls). I'd welcome a PR from anyone to my MWE project which peels off thegremlin-scala
layer while preserving the observed error.The text was updated successfully, but these errors were encountered: