diff --git a/akka-docs/src/main/paradox/typed/cluster.md b/akka-docs/src/main/paradox/typed/cluster.md index 134060300a..e8b9797eae 100644 --- a/akka-docs/src/main/paradox/typed/cluster.md +++ b/akka-docs/src/main/paradox/typed/cluster.md @@ -148,8 +148,8 @@ Please refer to its documentation for more details. #### Joining configured seed nodes -When a new node is started it sends a message to all seed nodes and then sends join command to the one that -answers first. If no one of the seed nodes replied (might not be started yet) +When a new node is started it sends a message to all seed nodes and then sends a join command to the one that +answers first. If none of the seed nodes replies (might not be started yet) it retries this procedure until success or shutdown. You can define the seed nodes in the @ref:[configuration](#configuration) file (application.conf): @@ -169,7 +169,7 @@ This can also be defined as Java system properties when starting the JVM using t When a new node is started it sends a message to all configured `seed-nodes` and then sends a join command to the -one that answers first. If none of the seed nodes replied (might not be started yet) it retries this procedure +one that answers first. If none of the seed nodes replies (might not be started yet) it retries this procedure until successful or shutdown. The seed nodes can be started in any order. It is not necessary to have all @@ -369,14 +369,14 @@ configuration descriptions, default values and options. A common use case is to start actors after the cluster has been initialized, members have joined, and the cluster has reached a certain size. -With a configuration option you can define required number of members +With a configuration option you can define the required number of members before the leader changes member status of 'Joining' members to 'Up'.: ``` akka.cluster.min-nr-of-members = 3 ``` -In a similar way you can define required number of members of a certain role +In a similar way you can define the required number of members of a certain role before the leader changes member status of 'Joining' members to 'Up'.: ```