Skip to content

Commit e9f6b3f

Browse files
renetapopovaLojjs
andcommitted
Add codes starting with 51 (#198)
Co-authored-by: Louise Berglund <[email protected]>
1 parent b17b28a commit e9f6b3f

File tree

1 file changed

+261
-1
lines changed

1 file changed

+261
-1
lines changed

modules/ROOT/pages/errors/gql-errors.adoc

Lines changed: 261 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,4 +471,264 @@ Status description:: error: general processing exception - unexpected error. Une
471471
====
472472
50N42 is the default GQLSTATUS code for exceptions without a GQL object.
473473
For more information, see link:https://neo4j.com/docs/operations-manual/current/monitoring/logging/#_use_json_format_for_the_query_log[Operations Manual -> Use JSON format for the query log].
474-
====
474+
====
475+
== System configuration or operation exception
476+
477+
System configuration or operation exception errors occur when there is an error in the system configuration or operation, such as procedure registration failure, a missing class field annotation, an unsupported injectable component type, duplicate field names, invalid map key type, etc.
478+
479+
=== 51N00
480+
481+
Status description:: error: system configuration or operation exception - procedure registration error. Failed to register procedure/function.
482+
483+
484+
=== 51N01
485+
486+
Status description:: error: system configuration or operation exception - class field annotation should be public, non-final, and non-static. The field `{ $procField }` in the class `{ $procClass }` is annotated as a '@Context' field, but it is declared as static. '@Context' fields must be public, non-final and non-static.
487+
488+
=== 51N02
489+
490+
Status description:: error: system configuration or operation exception - unsupported injectable component type. Unable to set up injection for procedure `{ $procClass }`. The field `{ $procField }` has type `{ $procFieldType }` which is not a supported injectable component.
491+
492+
493+
=== 51N03
494+
495+
Status description:: error: system configuration or operation exception - unable to access field. Unable to set up injection for `{ $procClass }`, failed to access field `{ $procField }`.
496+
497+
498+
=== 51N04
499+
500+
Status description:: error: system configuration or operation exception - missing class field annotation. The field `{ $procField }` on `{ $procClass }` must be annotated as a '@Context' field in order to store its state.
501+
502+
503+
=== 51N05
504+
505+
Status description:: error: system configuration or operation exception - class field should be public and non-final. The field `{ $procField }` on `{ $procClass }` must be declared non-final and public.
506+
507+
508+
=== 51N06
509+
510+
Status description:: error: system configuration or operation exception - missing argument name. The argument at position `{ $pos }` in `{ $procMethod }` requires a '@Name' annotation and a non-empty name.
511+
512+
513+
=== 51N07
514+
515+
Status description:: error: system configuration or operation exception - invalid ordering of default arguments. The `{ $procFun }` contains a non-default argument after a default argument. Non-default arguments are not allowed to be positioned after default arguments.
516+
517+
518+
=== 51N08
519+
520+
Status description:: error: system configuration or operation exception - exactly one @UserAggregationResult method and one @UserAggregationUpdate method required. The class `{ $procClass }` must contain exactly one '@UserAggregationResult' method and exactly one '@UserAggregationUpdate' method.
521+
522+
523+
=== 51N09
524+
525+
Status description:: error: system configuration or operation exception - @UserAggregationUpdate method must be public and void. The '@UserAggregationUpdate' method `{ $procMethod }` of `{ $procClass }` must be public and have the return type 'void'.
526+
527+
528+
=== 51N10
529+
530+
Status description:: error: system configuration or operation exception - aggregation method not public. The method `{ $procMethod }` of `{ $procClass }` must be public.
531+
532+
533+
=== 51N11
534+
535+
Status description:: error: system configuration or operation exception - class not public. The class `{ $procClass }` must be public.
536+
537+
538+
=== 51N12
539+
540+
Status description:: error: system configuration or operation exception - class not void. The procedure `{ $proc }` has zero output fields and must be defined as void.
541+
542+
543+
=== 51N13
544+
545+
Status description:: error: system configuration or operation exception - procedure or function name already in use. Unable to register the procedure or function `{ $procFun }` because the name is already in use.
546+
547+
548+
=== 51N14
549+
550+
Status description:: error: system configuration or operation exception - duplicate field name.
551+
The procedure `{ $proc }` has a duplicate `{ $procFieldType }` field, `{ $procField }`.
552+
553+
=== 51N15
554+
555+
Status description:: error: system configuration or operation exception - invalid map key type. Type mismatch for map key. Required 'STRING', but found `{ $valueType }`.
556+
557+
558+
=== 51N16
559+
560+
Status description:: error: system configuration or operation exception - invalid default value type. Type mismatch for the default value. Required `{ $valueType }`, but found `{ $input }`.
561+
562+
563+
=== 51N17
564+
565+
Status description:: error: system configuration or operation exception - invalid procedure or function name. Procedures and functions cannot be defined in the root namespace, or use a reserved namespace. Use the package name instead (e.g., org.example.com.`{ $procFun })`.
566+
567+
568+
=== 51N22
569+
570+
Status description:: error: system configuration or operation exception - exhaustive shortest path search disabled. Finding the shortest path for the given pattern requires an exhaustive search. To enable exhaustive searches, set 'cypher.forbid_exhaustive_shortestpath' to false.
571+
572+
573+
=== 51N23
574+
575+
Status description:: error: system configuration or operation exception - cyclic shortest path search disabled. Cannot find the shortest path when the start and end nodes are the same. To enable this behavior, set 'dbms.cypher.forbid_shortestpath_common_nodes' to false.
576+
577+
578+
=== 51N24
579+
580+
Status description:: error: system configuration or operation exception - insufficient resources for plan search. Could not find a query plan within given time and space limits.
581+
582+
583+
=== 51N27
584+
585+
Status description:: error: system configuration or operation exception - not supported in this edition. `{ $item }` is not supported in `{ $edition }`.
586+
587+
588+
=== 51N29
589+
590+
Status description:: error: system configuration or operation exception - not supported by this server. The command `{ $cmd }` must be executed on the current 'LEADER' server.
591+
592+
593+
=== 51N30
594+
595+
Status description:: error: system configuration or operation exception - not supported with this configuration. `{ $item }` is not supported in `{ $context }`.
596+
597+
598+
=== 51N32
599+
600+
Status description:: error: system configuration or operation exception - server panic. Server is in panic.
601+
602+
603+
=== 51N33
604+
605+
Status description:: error: system configuration or operation exception - replication error. This member failed to replicate transaction, try again.
606+
607+
608+
=== 51N34
609+
610+
Status description:: error: system configuration or operation exception - write transaction failed due to leader change. Failed to write to the database due to a cluster leader change. Retrying your request at a later time may succeed.
611+
612+
613+
=== 51N35
614+
615+
Status description:: error: system configuration or operation exception - database location changed. The location of `{ $db }` has changed while the transaction was running.
616+
617+
618+
=== 51N39
619+
620+
Status description:: error: system configuration or operation exception - raft log corrupted. Expected set of files not found on disk. Please restore from backup.
621+
622+
623+
=== 51N40
624+
625+
Status description:: error: system configuration or operation exception - unable to start database. Database `{ $db }` failed to start. Try restarting it.
626+
627+
628+
=== 51N41
629+
630+
Status description:: error: system configuration or operation exception - admin operation failed. Server or database admin operation not possible.
631+
632+
633+
=== 51N43
634+
635+
Status description:: error: system configuration or operation exception - cannot deallocate servers. Cannot deallocate server(s) `{ $serverList }`.
636+
637+
638+
=== 51N44
639+
640+
Status description:: error: system configuration or operation exception - cannot drop server. Cannot drop server `{ $server }`.
641+
642+
643+
=== 51N45
644+
645+
Status description:: error: system configuration or operation exception - cannot cordon server. Cannot cordon server `{ $server }`.
646+
647+
648+
=== 51N46
649+
650+
Status description:: error: system configuration or operation exception - cannot alter server. Cannot alter server `{ $server }`.
651+
652+
653+
=== 51N47
654+
655+
Status description:: error: system configuration or operation exception - cannot rename server. Cannot rename server `{ $server }`.
656+
657+
658+
=== 51N48
659+
660+
Status description:: error: system configuration or operation exception - cannot enable server. Cannot enable server `{ $server }`.
661+
662+
663+
=== 51N49
664+
665+
Status description:: error: system configuration or operation exception - cannot alter database. Cannot alter database `{ $db }`.
666+
667+
668+
=== 51N50
669+
670+
Status description:: error: system configuration or operation exception - cannot recreate database. Cannot recreate database `{ $db }`.
671+
672+
673+
=== 51N51
674+
675+
Status description:: error: system configuration or operation exception - cannot create database. Cannot create database `{ $db }`.
676+
677+
678+
=== 51N52
679+
680+
Status description:: error: system configuration or operation exception - number of primaries out of range. Cannot alter database topology. Number of primaries `{ $count }` needs to be at least 1 and may not exceed `{ $upper }`.
681+
682+
683+
=== 51N53
684+
685+
Status description:: error: system configuration or operation exception - number of secondaries out of range. Cannot alter database topology. Number of secondaries `{ $count }` needs to be at least 0 and may not exceed `{ $upper }`.
686+
687+
=== 51N54
688+
689+
Status description:: error: system configuration or operation exception - cannot reallocate. Failed to calculate reallocation for databases. { $msg }
690+
691+
692+
=== 51N55
693+
694+
Status description:: error: system configuration or operation exception - cannot create additional database. Failed to create the database `{ $db }`. The limit of databases is reached. Either increase the limit using the config setting `{ $cfgSetting }` or drop a database.
695+
696+
697+
=== 51N57
698+
699+
Status description:: error: system configuration or operation exception - generic topology modification error. Unexpected error while picking allocations. { $msg }
700+
701+
702+
=== 51N60
703+
704+
Status description:: error: system configuration or operation exception - unable to check enterprise license acceptance. The DBMS is unable to determine the enterprise license acceptance status.
705+
706+
707+
=== 51N63
708+
709+
Status description:: error: system configuration or operation exception - index is still populating. Index is not ready yet. Wait until it finishes populating and retry the transaction.
710+
711+
712+
=== 51N64
713+
714+
Status description:: error: system configuration or operation exception - index dropped while sampling. The index dropped while sampling.
715+
716+
717+
=== 51N65
718+
719+
Status description:: error: system configuration or operation exception - vector index dimensionality mismatch. Vector index `{ $idx }` has a dimensionality of `{ $dim1 }`, but indexed vectors have `{ $dim2 }`.
720+
721+
722+
=== 51N66
723+
724+
Status description:: error: system configuration or operation exception - resource exhaustion. Insufficient resources to complete the request.
725+
726+
727+
=== 51N69
728+
729+
Status description:: error: system configuration or operation exception - system database is immutable. It is not possible to perform `{ $operation }` on the system database.
730+
731+
=== 51N70
732+
733+
Status description:: error: system configuration or operation exception - bolt is not enabled. Cannot get routing table for `{ $db }` because Bolt is not enabled. Please update your configuration such that 'server.bolt.enabled' is set to true.
734+

0 commit comments

Comments
 (0)