Improve documentation for manually joining a cluster
See original GitHub issuehttp://www.lagomframework.com/documentation/1.2.x/java/Cluster.html#Joining-without-ConductR
Here’s the current example:
akka.cluster.seed-nodes = [
"akka.tcp://MyService@host1:2552",
"akka.tcp://MyService@host2:2552"]
A few notes:
MyService
needs to be the name of the actor system “it should matchplay.akka.actor-system
, which defaults toapplication
”- As a shortcut for a single-node cluster, you can specify
lagom.cluster.join-self = on
- It would be more helpful to integrate this into the documentation for running in production: I didn’t think to look for it here
Issue Analytics
- State:
- Created 7 years ago
- Reactions:8
- Comments:10 (8 by maintainers)
Top Results From Across the Web
Create and Manage a Cluster Manually
Manual management of a cluster is only possible for clusters that have been manually created. To manually change the configuration of a cluster...
Read more >Joining Nodes to Clusters | Couchbase Docs
To ensure cluster-security, in Couchbase Server Version 7.1.1+, restrictions can be placed on joining, based on the establishment of node-naming conventions.
Read more >Install the new nodes and join them to the cluster
You must install the new nodes and join them to the cluster so that you can move volumes from the original nodes. About...
Read more >Cluster Usage • Akka Documentation
This document describes how to use Akka Cluster and the Cluster APIs. ... seed node functions, you need to join the cluster manually...
Read more >Add a cluster member - Splunk Documentation
The conf_deploy_fetch_url parameter specifies the URL and management port for the deployer instance. You must set it when adding a new member to ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks Tim, yes I was talking about Java. Should have been more explicit. I thought about the constructor too of the service with the
ActorSystem
injection, was curious if there was a better way. All good 👍Ok thanks. All sorted now ( #500 ).
If it helps with the doco fix… I was rereading the Persistent Entity documentation assuming I had missed some config option along the lines of ‘turn off sharding if using jdbc’. Might be worth putting a pointer in that section to the page on clusters as that is likely the point at which most people will strike this issue.