Hi,
I'm assuming based on the use of snake_case that you are using Gremlin Python. When submitting bytecode via DriverRemoteConnection, settings such as 'evaluationTimeout' can be set by adding a
`with()` configuration to your traversal as in "g.with('evaluationTimeout',
5000)". The evaluationTimeout value represents a timeout in milliseconds. If you are directly using a Client, you may also pass request options to submit via a struct as shown
here.
Note that certain graph providers may choose to override a timeout requested by the client with some global timeout on the server. If you are still encountering timeouts, please check your graph providers documentation for details, or reply back with the specific database you are using and someone may be able to offer more specific guidance.
Thanks,
Cole