I am running REXSTER/TITAN 0.4 over cassandra and uses gremlin for traversals. I ran below gremlin query in Rexster Doghouse Gremlin console.
Vertex 92 was deleted earlier, since it was a duplicate vertex with same key ("eddy.com")
But when I am querying, I am getting that vertex sometimes, and sometimes not . This is running in local dev machine, means no other threads or parallel task is running/updating this vertex in between. Am I missing any configuration/settings here? is this a bug? please help!
gremlin> g.V('domain','eddy.com')
==>v[88]
gremlin> g.V('domain','eddy.com')
==>v[88]
==>v[92]
gremlin> g.V('domain','eddy.com')
==>v[88]
gremlin> g.V('domain','eddy.com')
==>v[88]
gremlin> g.V('domain','eddy.com')
==>v[88]
==>v[92]