I have a large graph on DataStax DSE.
I'm trying to run some analytics queries. I've started with simple ones and I've noticed something
Running without Analytics
gremlin> :remote config alias g test.g
==>g=test.g
gremlin> g.V().hasLabel("person").has("id",5903806).count()
==>1
gremlin>
Running with Analytics
gremlin> :remote config alias g test.a
==>g=test.a
gremlin> g.V().hasLabel("person").has("id",5903806).count()
==>0
gremlin>
This can be some configuration issue ?
Many Thanks
This issue was in regards to specifying a float when the "id" property was a Text type. Wrapping the id in quotes solved the issue.