From 3ef0e667373486cd046063f0b701c74f143de9ec Mon Sep 17 00:00:00 2001 From: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> Date: Thu, 17 Apr 2025 10:31:44 +0200 Subject: [PATCH 1/2] Custom tx timeout can be set to any value --- .../ROOT/pages/database-internals/transaction-management.adoc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/ROOT/pages/database-internals/transaction-management.adoc b/modules/ROOT/pages/database-internals/transaction-management.adoc index 750b4cddd..e7d6938fe 100644 --- a/modules/ROOT/pages/database-internals/transaction-management.adoc +++ b/modules/ROOT/pages/database-internals/transaction-management.adoc @@ -54,7 +54,6 @@ db.transaction.timeout=10s ==== Configuring transaction timeout does not affect transactions executed with custom timeouts (e.g., via the Java API or Neo4j Drivers), as the custom timeout overrides the value set for `db.transaction.timeout`. -Note that the timeout value can only be overridden to a value smaller than that configured by `db.transaction.timeout`. You can set the transaction timeout to any value, even larger than configured by `db.transaction.timeout`. @@ -63,4 +62,4 @@ You can set the transaction timeout to any value, even larger than configured by Transactions can be managed using the Cypher commands `SHOW TRANSACTIONS` and `TERMINATE TRANSACTIONS`. The `TERMINATE TRANSACTIONS` command can be combined with multiple `SHOW TRANSACTIONS` and `TERMINATE TRANSACTIONS` commands in the same query. -For more information, see link:{neo4j-docs-base-uri}/cypher-manual/current/clauses/transaction-clauses/[Cypher manual -> Transaction commands]. \ No newline at end of file +For more information, see link:{neo4j-docs-base-uri}/cypher-manual/current/clauses/transaction-clauses/[Cypher manual -> Transaction commands]. From 2dfffc49b71be34badf989ab01d3e82584fd58d2 Mon Sep 17 00:00:00 2001 From: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> Date: Thu, 17 Apr 2025 11:51:14 +0200 Subject: [PATCH 2/2] Update modules/ROOT/pages/database-internals/transaction-management.adoc Co-authored-by: Robsdedude --- .../ROOT/pages/database-internals/transaction-management.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/database-internals/transaction-management.adoc b/modules/ROOT/pages/database-internals/transaction-management.adoc index e7d6938fe..6f39d9a4d 100644 --- a/modules/ROOT/pages/database-internals/transaction-management.adoc +++ b/modules/ROOT/pages/database-internals/transaction-management.adoc @@ -54,7 +54,7 @@ db.transaction.timeout=10s ==== Configuring transaction timeout does not affect transactions executed with custom timeouts (e.g., via the Java API or Neo4j Drivers), as the custom timeout overrides the value set for `db.transaction.timeout`. -You can set the transaction timeout to any value, even larger than configured by `db.transaction.timeout`. +Custom timeouts can be set to any value, even larger than configured by `db.transaction.timeout`. == Manage transactions