Skip to content

Instantly share code, notes, and snippets.

@johanandren
Created October 4, 2018 17:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johanandren/78019fafaf0cc39aec1f42c721b74a9c to your computer and use it in GitHub Desktop.
Save johanandren/78019fafaf0cc39aec1f42c721b74a9c to your computer and use it in GitHub Desktop.
Three node Akka cluster in one JVM with minimal fuzz
import akka.actor.ActorSystem
import akka.cluster.Cluster
import com.typesafe.config.ConfigFactory
object ProgrammaticJoin extends App {
val commonConfig = ConfigFactory.parseString(
"""
akka {
actor.provider = cluster
remote.artery.enabled = true
remote.artery.canonical.hostname = 127.0.0.1
remote.artery.canonical.port = 0
cluster.jmx.multi-mbeans-in-same-jvm = on
}
""")
val node1 = ActorSystem("cluster", commonConfig)
val node2 = ActorSystem("cluster", commonConfig)
val node3 = ActorSystem("cluster", commonConfig)
// joins itself to form cluster
val node1Cluster = Cluster(node1)
node1Cluster.join(node1Cluster.selfAddress)
// joins the cluster through the one node in the cluster
val node2Cluster = Cluster(node2)
node2Cluster.join(node1Cluster.selfAddress)
// subsequent nodes can join through any node that is already in the cluster
val node3Cluster = Cluster(node3)
node3Cluster.join(node2Cluster.selfAddress)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment