Example producer consumer(s) application that shows how Akka routing can be used to balance the load of the nodes in an Akka Cluster. In the example application below, an Akka Cluster with the single producer and multiple consumer nodes is created. The producer sends messages to consumers via routing strategy. If messages are routed well, the load can be balanced across all consumer nodes. Akka ha

