Skip to content

Commit 22003a8

Browse files
initial
1 parent d6235c9 commit 22003a8

File tree

2 files changed

+238
-49
lines changed

2 files changed

+238
-49
lines changed

modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,22 @@ RETURN count(p) AS count
205205
| Feature
206206
| Details
207207

208+
a|
209+
label:functionality[]
210+
label:new[]
211+
[source, cypher, role=noheader]
212+
----
213+
UNWIND range(1, 100) AS i
214+
CALL (i) {
215+
MERGE (u:User {id: i})
216+
ON CREATE SET u.created = timestamp()
217+
} IN TRANSACTIONS ON ERROR RETRY 1 SECOND THEN FAIL
218+
----
219+
220+
| New error handling option for `CALL { ... } IN TRANSACTIONS`: `ON ERROR RETRY`.
221+
This option applies an exponential delay between retries for transaction batches failing due to transient errors, with an optional maximum retry duration, and handles failure based on a specified fallback error mode if the transaction doesn't succeed within the given time.
222+
For more information, see xref:subqueries/subqueries-in-transactions#on-error-retry[`CALL` subqueries in transactions -> `ON ERROR RETRY`].
223+
208224
a|
209225
label:functionality[]
210226
label:new[]

0 commit comments

Comments
 (0)