Skip to content

Commit 614600e

Browse files
committed
More cleanup
1 parent 6e6333c commit 614600e

File tree

5 files changed

+11
-14
lines changed

5 files changed

+11
-14
lines changed

modules/ROOT/pages/clustering/disaster-recovery.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Either:
9898
... Add completely new servers (see xref:clustering/servers.adoc#cluster-add-server[Add a server to the cluster]) or
9999
... Change the `system` database mode (`server.cluster.system_database_mode`) on the current `system` database's secondary servers to allow them to be primaries for the new `system` database.
100100
.. On each server, run `bin/neo4j-admin database load system --from-path=[path-to-dump] --overwrite-destination=true` to load the current `system` database dump.
101-
.. Ensure that `dbms.cluster.discovery.endpoints` are set correctly on all servers, see xref:clustering/setup/discovery.adoc[Cluster server discovery] for more information.
101+
.. Ensure that `dbms.cluster.endpoints` are set correctly on all servers, see xref:clustering/setup/discovery.adoc[Cluster server discovery] for more information.
102102
.. Return to step 1.
103103

104104

modules/ROOT/pages/configuration/configuration-settings.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -383,9 +383,9 @@ a|Configure the resolver type that the discovery service uses for determining wh
383383
Valid values are `LIST`, `SRV`, `DNS`, and `K8S`:
384384

385385
`LIST`::
386-
A static configuration where `dbms.cluster.discovery.endpoints` must contain a list of the addresses of the cluster members.
386+
A static configuration where `dbms.cluster.endpoints` must contain a list of the addresses of the cluster members.
387387
`SRV` and `DNS`::
388-
A dynamic configuration where `dbms.cluster.discovery.endpoints` must point to a DNS entry containing the cluster members' addresses.
388+
A dynamic configuration where `dbms.cluster.endpoints` must point to a DNS entry containing the cluster members' addresses.
389389
`K8S`::
390390
At least `dbms.kubernetes.service_port_name` must be set. The addresses of the cluster members are queried dynamically from Kubernetes.
391391
|Valid values
@@ -403,7 +403,7 @@ m|+++LIST+++
403403
|===
404404
|Description
405405
a|Minimum number of machines initially required to form a clustered DBMS. The cluster is considered formed when at least this many members have discovered each other, bound together, and bootstrapped a highly available system database. As a result, at least this many of the cluster's initial machines must have `<<config_server.cluster.system_database_mode,server.cluster.system_database_mode>>` set to `PRIMARY`. +
406-
NOTE: If `<<config_dbms.cluster.discovery.resolver_type,dbms.cluster.discovery.resolver_type>>` is set to `LIST` and `<<config_dbms.cluster.discovery.endpoints,dbms.cluster.discovery.endpoints>>` is empty, then the user is assumed to be deploying a standalone DBMS, and the value of this setting is ignored.
406+
NOTE: If `<<config_dbms.cluster.discovery.resolver_type,dbms.cluster.discovery.resolver_type>>` is set to `LIST` and `<<config_dbms.cluster.endpoints,dbms.cluster.endpoints>>` is empty, then the user is assumed to be deploying a standalone DBMS, and the value of this setting is ignored.
407407
|Valid values
408408
a|An integer that is minimum `1`.
409409
|Default value
@@ -486,7 +486,7 @@ m|++++++
486486
[frame="topbot", stripes=odd, grid="cols", cols="<1s,<4"]
487487
|===
488488
|Description
489-
a|The time allowed for a database on a Neo4j server to either join a cluster or form a new cluster with at least the quorum of the members available. The members are provided by `<<config_dbms.cluster.discovery.endpoints,dbms.cluster.discovery.endpoints>>` for the system database and by the topology graph for standard databases.
489+
a|The time allowed for a database on a Neo4j server to either join a cluster or form a new cluster with at least the quorum of the members available. The members are provided by `<<config_dbms.cluster.endpoints,dbms.cluster.endpoints>>` for the system database and by the topology graph for standard databases.
490490
|Valid values
491491
a|A duration (Valid units are: `ns`, `μs`, `ms`, `s`, `m`, `h` and `d`; default unit is `s`).
492492
|Default value

modules/ROOT/pages/docker/clustering.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ docker run --name=server1 --detach \
3232
--publish=7474:7474 --publish=7687:7687 \
3333
--publish=5000:5000 --publish=6000:6000 --publish=7000:7000 \
3434
--hostname=public-address \
35-
--env NEO4J_dbms_cluster_discovery_endpoints=server1-public-address:5000,server2-public-address:5000,server3-public-address:5000 \
35+
--env NEO4J_dbms_cluster_endpoints=server1-public-address:5000,server2-public-address:5000,server3-public-address:5000 \
3636
--env NEO4J_server_discovery_advertised_address=public-address:5000 \
3737
--env NEO4J_server_cluster_advertised_address=public-address:6000 \
3838
--env NEO4J_server_cluster.raft.advertised_address=public-address:7000 \

modules/ROOT/pages/docker/ref-settings.adoc

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -220,11 +220,8 @@ For more information on the configuration descriptions, valid values, and defaul
220220
| `dbms.cluster.catchup.client_inactivity_timeout`
221221
| `+NEO4J_dbms_cluster_catchup_client__inactivity__timeout+`
222222

223-
| `dbms.cluster.discovery.endpoints`
224-
| `+NEO4J_dbms_cluster_discovery_endpoints+`
225-
226-
| `dbms.cluster.discovery.log_level`
227-
| `+NEO4J_dbms_cluster_discovery_log__level+`
223+
| `dbms.cluster.endpoints`
224+
| `+NEO4J_dbms_cluster_endpoints+`
228225

229226
| `dbms.cluster.discovery.resolver_type`
230227
| `+NEO4J_dbms_cluster_discovery_resolver__type+`

modules/ROOT/pages/kubernetes/multi-dc-cluster/aks.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ services:
503503
multiCluster: true
504504
config:
505505
dbms.cluster.discovery.resolver_type: LIST
506-
dbms.cluster.discovery.endpoints: "10.30.1.101:5000, 10.30.2.101:5000, 10.30.3.101:5000"
506+
dbms.cluster.endpoints: "10.30.1.101:5000, 10.30.2.101:5000, 10.30.3.101:5000"
507507
server.discovery.advertised_address: "10.30.1.101:5000"
508508
server.cluster.advertised_address: "10.30.1.101:6000"
509509
server.cluster.raft.advertised_address: "10.30.1.101:7000"
@@ -531,7 +531,7 @@ services:
531531
multiCluster: true
532532
config:
533533
dbms.cluster.discovery.resolver_type: LIST
534-
dbms.cluster.discovery.endpoints: "10.30.1.101:5000, 10.30.2.101:5000, 10.30.3.101:5000"
534+
dbms.cluster.endpoints: "10.30.1.101:5000, 10.30.2.101:5000, 10.30.3.101:5000"
535535
server.discovery.advertised_address: "10.30.2.101:5000"
536536
server.cluster.advertised_address: "10.30.2.101:6000"
537537
server.cluster.raft.advertised_address: "10.30.2.101:7000"
@@ -559,7 +559,7 @@ services:
559559
multiCluster: true
560560
config:
561561
dbms.cluster.discovery.resolver_type: LIST
562-
dbms.cluster.discovery.endpoints: "10.30.1.101:5000, 10.30.2.101:5000, 10.30.3.101:5000"
562+
dbms.cluster.endpoints: "10.30.1.101:5000, 10.30.2.101:5000, 10.30.3.101:5000"
563563
server.discovery.advertised_address: "10.30.3.101:5000"
564564
server.cluster.advertised_address: "10.30.3.101:6000"
565565
server.cluster.raft.advertised_address: "10.30.3.101:7000"

0 commit comments

Comments
 (0)