You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/ROOT/pages/notifications/all-notifications.adoc
+304Lines changed: 304 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3939,6 +3939,310 @@ The requested topology matched the current topology. No allocations were changed
3939
3939
======
3940
3940
=====
3941
3941
3942
+
[role=label--new-2025.01 label--Cypher25]
3943
+
[#_neo_clientnotification_cluster_servercaughtup]
3944
+
=== Server has caught up during `WAIT` command
3945
+
3946
+
.Notification category details
3947
+
[cols="<1s,<4"]
3948
+
|===
3949
+
|Neo4j code
3950
+
m|Neo.ClientNotification.Cluster.ServerCaughtUp
3951
+
|Title
3952
+
a|Server has caught up.
3953
+
|Description
3954
+
a|Server `(%s)` at address `(%s)` has caught up.
3955
+
|Category
3956
+
m|TOPOLOGY
3957
+
|GQLSTATUS code
3958
+
m|03N85
3959
+
|Status description
3960
+
a|
3961
+
info: server has caught up. Server `${ name }` at address `${ address }` has caught up.
3962
+
|Classification
3963
+
m|TOPOLOGY
3964
+
|SeverityLevel
3965
+
m|INFORMATION
3966
+
|===
3967
+
3968
+
.Successful completion of a `WAIT` command with two servers
3969
+
[.tabbed-example]
3970
+
=====
3971
+
[.include-with-GQLSTATUS-code]
3972
+
======
3973
+
Query::
3974
+
+
3975
+
[source,cypher]
3976
+
----
3977
+
CREATE DATABASE foo TOPOLOGY 2 PRIMARIES WAIT
3978
+
----
3979
+
3980
+
One notification is returned for each server in the cluster:
3981
+
3982
+
Returned GQLSTATUS code::
3983
+
03N85
3984
+
3985
+
Returned status description::
3986
+
info: server has caught up. Server `ServerId\{0e010000}` at address `localhost:20025` has caught up.
3987
+
3988
+
Returned GQLSTATUS code::
3989
+
03N85
3990
+
3991
+
Returned status description::
3992
+
info: server has caught up. Server `ServerId\{0e020000}` at address `localhost:20026` has caught up.
3993
+
======
3994
+
[.include-with-neo4j--code]
3995
+
======
3996
+
Query::
3997
+
+
3998
+
[source,cypher]
3999
+
----
4000
+
CREATE DATABASE foo TOPOLOGY 2 PRIMARIES WAIT
4001
+
----
4002
+
One notification is returned for each server in the cluster:
4003
+
4004
+
Description of the returned code::
4005
+
Server `ServerId\{0e010000}` at address `localhost:20025` has caught up.
4006
+
4007
+
Description of the returned code::
4008
+
Server `ServerId\{0e020000}` at address `localhost:20026` has caught up.
4009
+
======
4010
+
=====
4011
+
4012
+
[role=label--new-2025.01 label--Cypher25]
4013
+
[#_neo_clientnotification_cluster_serverfailed]
4014
+
=== Server failed during `WAIT` command
4015
+
4016
+
.Notification category details
4017
+
[cols="<1s,<4"]
4018
+
|===
4019
+
|Neo4j code
4020
+
m|Neo.ClientNotification.Cluster.ServerFailed
4021
+
|Title
4022
+
a|Server failed.
4023
+
|Description
4024
+
a|Server `(%s)` at address `(%s)` failed: (%s)
4025
+
|Category
4026
+
m|TOPOLOGY
4027
+
|GQLSTATUS code
4028
+
m|01N80
4029
+
|Status description
4030
+
a|
4031
+
warn: server failed. Server `${ name }` at address `${ address }` failed: `${ message }`
4032
+
|Classification
4033
+
m|TOPOLOGY
4034
+
|SeverityLevel
4035
+
m|WARNING
4036
+
|===
4037
+
4038
+
4039
+
.One out of two servers failed during `WAIT` command
4040
+
[.tabbed-example]
4041
+
=====
4042
+
[.include-with-GQLSTATUS-code]
4043
+
======
4044
+
Query::
4045
+
+
4046
+
[source,cypher]
4047
+
----
4048
+
CREATE DATABASE foo TOPOLOGY 2 PRIMARIES WAIT
4049
+
----
4050
+
4051
+
One notification is returned for each server in the cluster:
4052
+
4053
+
Returned GQLSTATUS code::
4054
+
03N85
4055
+
4056
+
Returned status description::
4057
+
info: server has caught up. Server `ServerId\{0e010000}` at address `localhost:20025` has caught up.
4058
+
4059
+
Returned GQLSTATUS code::
4060
+
01N80
4061
+
4062
+
Returned status description::
4063
+
warn: server failed. Server `ServerId\{0e020000}` at address `localhost:20026` failed: Caught up but has failure for DatabaseId{0db00002[foo]} Failure: java.nio.file.FileAlreadyExistsException: <...>
4064
+
4065
+
Suggestions for improvement::
4066
+
Investigate the failing server using the provided message.
4067
+
======
4068
+
[.include-with-neo4j--code]
4069
+
======
4070
+
Query::
4071
+
+
4072
+
[source,cypher]
4073
+
----
4074
+
CREATE DATABASE foo TOPOLOGY 2 PRIMARIES WAIT
4075
+
----
4076
+
One notification is returned for each server in the cluster:
4077
+
4078
+
Description of the returned code::
4079
+
Server `ServerId\{0e010000}` at address `localhost:20025` has caught up.
4080
+
4081
+
Description of the returned code::
4082
+
Server `ServerId\{0e020000}` at address `localhost:20026` failed: Caught up but has failure for DatabaseId{0db00002[foo]} Failure: java.nio.file.FileAlreadyExistsException: <...>
4083
+
4084
+
Suggestions for improvement::
4085
+
Investigate the failing server using the provided message.
0 commit comments