From 23e8c9d4d764a113c60de491e35aa831e208eabb Mon Sep 17 00:00:00 2001 From: Satia Herfert Date: Fri, 20 Dec 2024 13:55:29 +0100 Subject: [PATCH 1/2] Add status codes from neo4j PR 28647 --- modules/ROOT/pages/errors/gql-errors.adoc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index 47c7704..7c7bfa9 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -1403,6 +1403,18 @@ Status description:: error: system configuration or operation exception - bolt i Status description:: error: system configuration or operation exception - unsupported operation of a sharded database. Feature: `{ $feat }` is not available in a sharded database. +=== 51N72 + +Status description:: error: system configuration or operation exception - memory pool out of memory. Failed to allocate memory in a memory pool. See `{ $cfgSetting }` in the neo4j configuration. + +=== 51N73 + +Status description:: error: system configuration or operation exception - transaction memory limit reached. The transaction used more memory than was allowed. The maximum allowed size for a transaction can be configured with `{ $cfgSetting }` in the neo4j configuration. + +=== 51N74 + +Status description:: error: system configuration or operation exception -maximum number of transactions reached. Failed to start a new transaction. The limit of concurrent transactions is reached. Increase the number of concurrent transactions using `{ $cfgSetting }` in the neo4j configuration. + == Procedure exception Procedure exceptions occur when there is an error in executing a procedure, such as when the procedure execution fails due to a client error, when the procedure cannot be invoked on a primary, when the number of arguments to checkConnectivity is invalid, etc. From 5f86a5946d303798998d93be9f546b4c68691ec7 Mon Sep 17 00:00:00 2001 From: Satia Herfert Date: Mon, 30 Dec 2024 12:17:08 +0100 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: Reneta Popova --- modules/ROOT/pages/errors/gql-errors.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/ROOT/pages/errors/gql-errors.adoc b/modules/ROOT/pages/errors/gql-errors.adoc index 7c7bfa9..4dc7d61 100644 --- a/modules/ROOT/pages/errors/gql-errors.adoc +++ b/modules/ROOT/pages/errors/gql-errors.adoc @@ -1405,15 +1405,15 @@ Status description:: error: system configuration or operation exception - unsupp === 51N72 -Status description:: error: system configuration or operation exception - memory pool out of memory. Failed to allocate memory in a memory pool. See `{ $cfgSetting }` in the neo4j configuration. +Status description:: error: system configuration or operation exception - memory pool out of memory. Failed to allocate memory in a memory pool. See `{ $cfgSetting }` in the neo4j.conf file. === 51N73 -Status description:: error: system configuration or operation exception - transaction memory limit reached. The transaction used more memory than was allowed. The maximum allowed size for a transaction can be configured with `{ $cfgSetting }` in the neo4j configuration. +Status description:: error: system configuration or operation exception - transaction memory limit reached. The transaction uses more memory than it is allowed. The maximum allowed size for a transaction can be configured with `{ $cfgSetting }` in the neo4j.conf file. === 51N74 -Status description:: error: system configuration or operation exception -maximum number of transactions reached. Failed to start a new transaction. The limit of concurrent transactions is reached. Increase the number of concurrent transactions using `{ $cfgSetting }` in the neo4j configuration. +Status description:: error: system configuration or operation exception - maximum number of transactions reached. Failed to start a new transaction. The limit of concurrent transactions is reached. Increase the number of concurrent transactions using `{ $cfgSetting }` in the neo4j.conf file. == Procedure exception