Sharded Daemon Process
Module info
To use Pekko Sharded Daemon Process, you must add the following dependency in your project:
- sbt
val PekkoVersion = "1.0.1" libraryDependencies += "org.apache.pekko" %% "pekko-cluster-sharding-typed" % PekkoVersion
- Maven
<properties> <scala.binary.version>2.13</scala.binary.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.pekko</groupId> <artifactId>pekko-bom_${scala.binary.version}</artifactId> <version>1.0.1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.apache.pekko</groupId> <artifactId>pekko-cluster-sharding-typed_${scala.binary.version}</artifactId> </dependency> </dependencies>
- Gradle
def versions = [ ScalaBinary: "2.13" ] dependencies { implementation platform("org.apache.pekko:pekko-bom_${versions.ScalaBinary}:1.0.1") implementation "org.apache.pekko:pekko-cluster-sharding-typed_${versions.ScalaBinary}" }
Project Info: Pekko Cluster Sharding (typed) | |
---|---|
Artifact | org.apache.pekko
pekko-cluster-sharding-typed
1.0.1
|
JDK versions | OpenJDK 8 OpenJDK 11 OpenJDK 17 |
Scala versions | 2.13.11, 2.12.18, 3.3.1 |
JPMS module name | pekko.cluster.sharding.typed |
License | |
Home page | https://pekko.apache.org/ |
API documentation | |
Forums | |
Release notes | Release Notes |
Issues | Github issues |
Sources | https://github.com/apache/incubator-pekko |
Introduction
Sharded Daemon Process provides a way to run N
actors, each given a numeric id starting from 0
that are then kept alive and balanced across the cluster. When a rebalance is needed the actor is stopped and, triggered by a keep alive running on all nodes, started on a new node (the keep alive should be seen as an implementation detail and may change in future versions).
The intended use case is for splitting data processing workloads across a set number of workers that each get to work on a subset of the data that needs to be processed. This is commonly needed to create projections based on the event streams available from all the EventSourcedBehaviors in a CQRS application. Events are tagged with one out of N
tags used to split the workload of consuming and updating a projection between N
workers.
For cases where a single actor needs to be kept alive see Cluster Singleton
Basic example
To set up a set of actors running with Sharded Daemon process each node in the cluster needs to run the same initialization when starting up:
- Scala
-
source
val tags = Vector("tag-1", "tag-2", "tag-3") ShardedDaemonProcess(system).init("TagProcessors", tags.size, id => TagProcessor(tags(id)))
- Java
-
source
List<String> tags = Arrays.asList("tag-1", "tag-2", "tag-3"); ShardedDaemonProcess.get(system) .init( TagProcessor.Command.class, "TagProcessors", tags.size(), id -> TagProcessor.create(tags.get(id)));
An additional factory method is provided for further configurability and providing a graceful stop message for the actor.
Addressing the actors
In use cases where you need to send messages to the daemon process actors it is recommended to use the system receptionist either with a single ServiceKey
which all daemon process actors register themeselves to for broadcasts or individual keys if more fine grained messaging is needed.
Scalability
This cluster tool is intended for small numbers of consumers and will not scale well to a large set. In large clusters it is recommended to limit the nodes the sharded daemon process will run on using a role.