【发布时间】:2016-08-03 12:42:32
【问题描述】:
我在 gremlin 中找不到顶点,我可以在 Web GUI 中检索:
从 GUI 我过滤为: freebaseid == 68545795554948
从 gremlin 我查询(按属性 wo/key 搜索)为:
g.V.has('freebaseid', 68545795554948).next().id
引发异常:
javax.script.ScriptException: com.tinkerpop.pipes.util.FastNoSuchElementException
完整的堆栈跟踪:http://pastebin.com/61iPnkBW
相关点:
13:32:19.129 [main] DEBUG com.arangodb.http.HttpManager - [REQ]http-POST: url=http://arango:8529/_api/cursor, headers=null, body={"count":false,"batchSize":20,"options":{},"query":"for i in GRAPH_VERTICES(@graphName , @vertexExample, @options) FILTER i.`freebaseid` \u00
3d\u003d @property0 return i","bindVars":{"property0":68545795554948,"vertexExample":{},"graphName":"mysuperdb","options":{"direction":"any","includeData":true}}}
com.arangodb.blueprints.client.ArangoDBException: org.apache.http.NoHttpResponseException: The target server failed to respond
--- cut ---
Caused by: org.apache.http.NoHttpResponseException: The target server failed to respond
有人可以帮我弄清楚这里发生了什么吗?
版本:
- ArangoDB:2.7.7
- 小精灵:2.6.0
- 蓝图-arangodb-graph:1.0.14
github上的问题:https://github.com/arangodb/blueprints-arangodb-graph/issues/25
【问题讨论】: