在DataStax DSE图上运行Analytics

时间:2016-12-16 09:04:04

标签: datastax datastax-enterprise datastax-startup datastax-enterprise-graph

我在DataStax DSE上有一个大图。

我试图运行一些分析查询。 我从简单的开始,我已经注意到了一些东西

不使用Google Analytics运行

gremlin> :remote config alias g test.g
==>g=test.g
gremlin> g.V().hasLabel("person").has("id",5903806).count()
==>1
gremlin>

使用Google Analytics

运行
gremlin> :remote config alias g test.a
==>g=test.a
gremlin> g.V().hasLabel("person").has("id",5903806).count()
==>0
gremlin>

这可能是一些配置问题?

非常感谢

2 个答案:

答案 0 :(得分:0)

CristiC,我们现在有一个计数和OLAP ComputeEngine的开放缺陷,很快就会解决。我不知道你所看到的是否与此有关,但可能是。您使用的是什么版本的DSE Graph?

答案 1 :(得分:0)

此问题涉及在“id”属性为Text类型时指定float。在引号中包含id解决了这个问题。