Cluster

§Cluster

Instances of the same service may run on multiple nodes, for scalability and redundancy. Nodes may be physical or virtual machines, grouped in a cluster.

The underlying clustering technology is Akka Cluster.

If instances of a service need to know about each other, they must join the same cluster. Within a cluster, services may use the Persistence and Publish-Subscribe modules of Lagom.

§Dependency

The clustering feature is already included if you are using either of the persistence or pubsub modules.

If you want to enable it without those modules, add the following dependency your project’s build.

In Maven:

<dependency>
    <groupId>com.lightbend.lagom</groupId>
    <artifactId>lagom-scaladsl-cluster_${scala.binary.version}</artifactId>
    <version>${lagom.version}</version>
</dependency>

In sbt:

libraryDependencies += lagomScaladslCluster

§Cluster composition

A cluster should only span nodes that are running the same service.

You could imagine using cluster features across different services, but we recommend against that, because it would couple the services too tightly. Different services should only interact with each other through each service’s API.

§Joining

A service instance joins a cluster when the service starts up.

  1. Joining during development: In development you are typically only running the service on one cluster node. No explicit joining is necessary; the Lagom Development Environment handles it automatically and creates a single-node cluster.

  2. Joining during production: There are several mechanisms available to create a cluster in production. This documentation covers two approaches supported out-of-the-box:

    1. Akka Cluster Bootstrap (recommended)
    2. Manual Cluster Formation (a.k.a. a static list of seed-nodes)

The sections below cover the two options for Cluster Joining during Production in more detail.

§Joining during production (Akka Cluster Bootstrap)

Starting from version 1.5.0, Lagom offers support for Akka Cluster Bootstrap. Akka Cluster Bootstrap is enabled by default in production mode and disabled in development and test mode.

Akka Cluster Bootstrap helps forming (or joining to) a cluster by using Akka Discovery to discover peer nodes. It is an alternative to configuring static seed-nodes in dynamic deployment environments such as on Kubernetes or AWS.

It builds on the flexibility of Akka Discovery, leveraging a range of discovery mechanisms depending on the environment you want to run your cluster in.

Akka Cluster Bootstrap, in Lagom, can be disabled through the property lagom.cluster.bootstrap.enabled = false. Note that this configuration flag has no effect if you declare seed-nodes explicitly in which case Akka Cluster Bootstrap won’t be used.

§Akka Discovery

In order to find the peer nodes and form a cluster, Akka Cluster Bootstrap needs to be configured to use one of the existing Akka Discovery methods:

  1. Start by choosing one of the methods from Akka Discovery or Akka Management as appropriate for your deployment environment. For example, if you are deploying to Kubernetes, the kubernetes-api method is recommended. Note that the Akka Discovery method used for Akka Cluster Bootstrap is different than the method used for service discovery between services.

  2. If you are using one of the Akka Discovery methods provided by Akka Management, you will need to add the library dependency to your project build. Using kubernetes-api as an example, in sbt:

    libraryDependencies += "com.lightbend.akka.discovery" %% "akka-discovery-kubernetes-api" % "1.0.3"
    
  3. Configure your service to select the chosen Akka Discovery method by setting the akka.management.cluster.bootstrap.contact-point-discovery.discovery-method property in application.conf. Note that these settings are only used in production, and ignored in development. If you use a different configuration file for production configuration, you should add these settings to that file.

    akka.management.cluster.bootstrap {
      # example using kubernetes-api
      contact-point-discovery {
        discovery-method = kubernetes-api
        service-name = "hello-lagom"
      }
    }
    

Other existing implementations are DNS, AWS, Consul, Marathon API, and Static Configuration. It’s also possible to provide your own Akka Discovery implementation if needed.

For more detailed and advanced configurations options, please consult the Akka Cluster Bootstrap documentation and its reference.conf file.

§Akka Management

Akka Cluster Bootstrap relies on Akka Management to form a cluster.

Akka Management is an extension that opens a dedicated HTTP interface. This management extension allows dedicated plugins to include their routes. Akka Cluster Bootstrap uses this mechanism to expose a route. Akka Management will be enabled when the cluster joining mechanism is Cluster Http Management and it will run on http port 8558. You can configure it to another port by setting property akka.management.http.port in your application.conf file.

§Health Checks

Akka Management supports two kinds of health checks:

  • Readiness checks: should the application receive external traffic, for example waiting for the cluster to form.
  • Liveness checks: should the application be left running

Readiness checks can be used to decide if a load balancer should route traffic where as liveness checks can be used in environments which can restart a hung process.

By default, Lagom enables the Cluster Health Check. This health check includes a readiness check that returns true when the node is either Up or WeaklyUp.

All readiness checks are hosted on /ready and liveness checks are hosted on /alive on the Akka Management endpoint (port 8558 by default). You can change the paths by configuring it your application.conf file:

akka.management.health-checks {
  readiness-path = "health/ready"
  liveness-path = "health/alive"
}

For further information on Akka Cluster Bootstrap and Health Checks, consult Akka Management documentation:

§Joining during production (Manual Cluster Formation)

If you prefer to not use Akka Cluster Bootstrap and handle the cluster formation yourself, you can configure the Akka Cluster seed nodes statically.

You can define some initial contact points of the cluster, so-called seed nodes in your application.conf:

akka.cluster.seed-nodes = [
  "akka://MyService@host1:25520",
  "akka://MyService@host2:25520"]

Alternatively, this can be defined as Java system properties when starting the JVM:

-Dlagom.cluster.bootstrap.enabled=false
-Dakka.cluster.seed-nodes.0=akka://MyService@host1:25520
-Dakka.cluster.seed-nodes.1=akka://MyService@host2:25520

The node that is configured first in the list of seed-nodes is special. Only that node that will join itself. It is used for bootstrapping the cluster.

The reason for the special first seed node is to avoid forming separated islands when starting from an empty cluster. If the first seed node is restarted and there is an existing cluster it will try to join the other seed nodes, i.e. it will join the existing cluster.

You can read more about cluster joining in the Akka documentation.

§Downing

When operating a Lagom service cluster you must consider how to handle network partitions (a.k.a. split brain scenarios) and machine crashes (including JVM and hardware failures). This is crucial for correct behavior when using Persistent Entities. Persistent entities must be single-writers, i.e. there must only be one active entity with a given entity identity. If the cluster is split in two halves and the wrong downing strategy is used there will be active entities with the same identifiers in both clusters, writing to the same database. That will result in corrupt data.

The naïve approach is to remove an unreachable node from the cluster membership after a timeout. This works great for crashes and short transient network partitions, but not for long network partitions. Both sides of the network partition will see the other side as unreachable and after a while remove it from its cluster membership. Since this happens on both sides the result is that two separate disconnected clusters have been created. This approach is provided by the opt-in (off by default) auto-down feature in the OSS version of Akka Cluster. Because of this auto-down should not be used in production systems.

Since Lagom 1.6.4, Lagom ships with an Akka version that supports the Open Source version of the Akka Split Brain Resolver. The keep-majority strategy is configured to be enabled by default if you use Lagom with the Split Brain Resolver. To enable the Split Brain Resolver, follow the instructions in the Akka documentation to add the necessary dependency and setup the downing-provider-class.

Make sure you read & understand the concepts behind Split Brain Resolver to ensure that your solution handles the concerns described there.

Found an error in this documentation? The source code for this page can be found here. Please feel free to edit and contribute a pull request.