Skip to content

Commit f0ca7ea

Browse files
Correct inaccuracy about horizontal scaling in Neo4j (#2613)
To fix the issue #2237
1 parent d638f13 commit f0ca7ea

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

modules/ROOT/pages/kubernetes/operations/scaling.adoc

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ helm upgrade <release-name> neo4j/neo4j -f values.yaml
6262
[[horizontal-scaling]]
6363
== Horizontal scaling
6464

65-
You can add a new server to the Neo4j cluster to scale out write or read workloads.
65+
You can add a new server to the Neo4j cluster to scale out read workloads.
6666

67-
The following examples assume that you have a running Neo4j cluster with 3 servers and your Kubernetes cluster has a node available for the new server, `server4`.
67+
The following examples assume that you have a running Neo4j cluster with three servers and your Kubernetes cluster has a node available for the new server, `server4`.
6868

6969
Install `server4` using one of the following options:
7070

@@ -143,7 +143,7 @@ This feature is useful when you want to add a new server to the cluster and enab
143143
+
144144
[source, shell, subs="attributes"]
145145
----
146-
helm install server4 neo4j --set neo4j.edition=enterprise --set neo4j.acceptLicenseAgreement=yes --set volumes.data.mode=defaultStorageClass --set neo4j.password="password" --set neo4j.minimumClusterSize=3 --set neo4j.name=my-cluster --set neo4j.operations.enableServer=true --set image="neo4j/helm-charts-operations:5.26.0" --set protocol="neo4j"
146+
helm install server4 neo4j --set neo4j.edition=enterprise --set neo4j.acceptLicenseAgreement=yes --set volumes.data.mode=defaultStorageClass --set neo4j.password="password" --set neo4j.minimumClusterSize=3 --set neo4j.name=my-cluster --set neo4j.operations.enableServer=true --set image="neo4j/helm-charts-operations:2025.8.0" --set protocol="neo4j"
147147
----
148148

149149
* Use a _values.yaml_ file to set the values for the new server and the _neo4j/neo4j_ Helm chart to install the new server.
@@ -173,7 +173,7 @@ volumes:
173173
174174
operations:
175175
enableServer: true
176-
image: "neo4j/helm-charts-operations:5.26.0"
176+
image: "neo4j/helm-charts-operations:2025.8.0"
177177
# protocol can be "neo4j or "neo4j+ssc" or "neo4j+s". Default set to neo4j
178178
# Note: Do not specify bolt protocol here...it will FAIL.
179179
protocol: "neo4j"
@@ -256,4 +256,5 @@ SHOW DATABASES;
256256
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
257257
----
258258
+
259-
Note that `server4` now hosts the `neo4j` database with the `secondary` role.
259+
Note that `server4` now hosts the `neo4j` database with the `secondary` role.
260+

0 commit comments

Comments
 (0)