This is an automated email from the ASF dual-hosted git repository. Cole-Greer pushed a commit to branch docs-3.7 in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit 14aa10976de4c54a609b7c3a9c0e82f5276d1022 Author: Cole Greer <[email protected]> AuthorDate: Tue May 26 14:43:52 2026 -0700 Increase statement timeout to 60s for Spark/Hadoop operations The Hadoop/Spark blocks use traversal().withEmbedded(graph) which takes ~23s for anonymous TraversalSource resolution, plus SparkGraphComputer first-execution overhead (~10s). With 30s timeout, these were right at the edge and intermittently failing. 60s provides comfortable headroom for all legitimate operations while still failing fast on genuinely broken blocks. --- .../src/main/java/org/apache/tinkerpop/gremlin/docs/GremlinConsole.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tinkerpop-docs/src/main/java/org/apache/tinkerpop/gremlin/docs/GremlinConsole.java b/tools/tinkerpop-docs/src/main/java/org/apache/tinkerpop/gremlin/docs/GremlinConsole.java index 3c8e2c0688..93799314a4 100644 --- a/tools/tinkerpop-docs/src/main/java/org/apache/tinkerpop/gremlin/docs/GremlinConsole.java +++ b/tools/tinkerpop-docs/src/main/java/org/apache/tinkerpop/gremlin/docs/GremlinConsole.java @@ -39,7 +39,7 @@ public class GremlinConsole implements Closeable { static final String PROMPT = "gremlin>"; static final String ERROR_PROMPT = "Display stack trace?"; - private static final long DEFAULT_TIMEOUT_MS = 30_000; + private static final long DEFAULT_TIMEOUT_MS = 60_000; private static final int EOF = -1; private final Process process;
