AWS Neptune:查询超时值

AWS Neptune: Query Timeout Value

我 运行 一个很长的查询(可能长达两分钟)并且代码因超时错误而崩溃。

我不使用 Gremlin 服务器,我直接从我的 Python 代码连接到 Neptune 端点。

对于 NEO4J,我更改了位于 https://github.com/apache/tinkerpop/blob/master/gremlin-server/conf/gremlin-server-neo4j.yamlscriptEvaluationTimeout

我应该如何更改 Neptune 的类似内容(当我不使用 Gremlin 服务器时)

Traceback (most recent call last):
  File "test.py", line 18, in <module>
    print(execute_query(query))
  File "/home/ec2-user/app/ecodrone/ecodrone/base_gremlin.py", line 56, in execute_query
    results = future_results.result()
  File "/usr/lib64/python3.7/concurrent/futures/_base.py", line 432, in result
    return self.__get_result()
  File "/usr/lib64/python3.7/concurrent/futures/_base.py", line 384, in __get_result
    raise self._exception
  File "/usr/local/lib/python3.7/site-packages/gremlin_python/driver/resultset.py", line 81, in cb
    f.result()
  File "/usr/lib64/python3.7/concurrent/futures/_base.py", line 425, in result
    return self.__get_result()
  File "/usr/lib64/python3.7/concurrent/futures/_base.py", line 384, in __get_result
    raise self._exception
  File "/usr/lib64/python3.7/concurrent/futures/thread.py", line 57, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/usr/local/lib/python3.7/site-packages/gremlin_python/driver/connection.py", line 77, in _receive
    self._protocol.data_received(data, self._results)
  File "/usr/local/lib/python3.7/site-packages/gremlin_python/driver/protocol.py", line 98, in data_received
    "{0}: {1}".format(status_code, message["status"]["message"]))
gremlin_python.driver.protocol.GremlinServerError: 598: {"requestId":"2b5511fe-4930-4d84-b685-dc3c9943d991","code":"TimeLimitExceeededException","detailedMessage":"A timeout occurred within the script during evaluation of [RequestMessage{, requestId=2b5511fe-4930-4d84-b685-dc3c9943d991, op='eval', processor='', args={gremlin=g.withSack(0).V().hasLabel(\"People\").as(\"from\",\"to\").\n                repeat(both().as(\"to\").dedup(\"from\",\"to\").\n                sack(sum).by(constant(1))).\n                emit(hasLabel(\"Process\")).\n                sack().dedup().fold().\n                project(\"min\", \"max\").\n                by(choose(count(local).is(0), constant(0), min(local))).\n                by(choose(count(local).is(0), constant(0), max(local))), aliases={g=g}}}] - consider increasing the timeout"}

Neptune 文档描述了一个 neptune_query_timeout - 我认为这会对您有所帮助:

https://docs.aws.amazon.com/neptune/latest/userguide/parameters.html