We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Query timeout is usually set for each query
https://www.arangodb.com/docs/stable/http/aql-query-cursor-accessing-cursors.html#create-cursor
In the java driver this can be specified with the AqlQueryOptions ttl(Integer ttl) method.
At this time, the arangodb java driver does not allow setting it globally. If not set for each query, a server-defined value will be used, which can be modified with a different server side option.
Therefore, it would be necessary to add a configuration parameter to the tinkerpop driver which will then add the option to all queries.
See also #66 for more context
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Query timeout is usually set for each query
https://www.arangodb.com/docs/stable/http/aql-query-cursor-accessing-cursors.html#create-cursor
In the java driver this can be specified with the
AqlQueryOptions ttl(Integer ttl) method.
At this time, the arangodb java driver does not allow setting it globally.
If not set for each query, a server-defined value will be used, which can be modified with a different server side option.
Therefore, it would be necessary to add a configuration parameter to the tinkerpop driver which will then add the option to all queries.
See also #66 for more context
The text was updated successfully, but these errors were encountered: