简体   繁体   中英

Running Analytics on DataStax DSE graph

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

CristiC, we have an open defect for counts and OLAP ComputeEngine right now that will be addressed very shortly. I can't tell if what you're seeing is related to this, but it likely is. What version of DSE Graph are you using?

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM