c

akka.cluster.metrics

AdaptiveLoadBalancingRoutingLogic

final case class AdaptiveLoadBalancingRoutingLogic(system: ActorSystem, metricsSelector: MetricsSelector = MixMetricsSelector) extends RoutingLogic with NoSerializationVerificationNeeded with Product with Serializable

Load balancing of messages to cluster nodes based on cluster metric data.

It uses random selection of routees based on probabilities derived from the remaining capacity of corresponding node.

system

the actor system hosting this router

metricsSelector

decides what probability to use for selecting a routee, based on remaining capacity as indicated by the node metrics

Source
ClusterMetricsRouting.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AdaptiveLoadBalancingRoutingLogic
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. RoutingLogic
  7. NoSerializationVerificationNeeded
  8. AnyRef
  9. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AdaptiveLoadBalancingRoutingLogic(system: ActorSystem, metricsSelector: MetricsSelector = MixMetricsSelector)

    system

    the actor system hosting this router

    metricsSelector

    decides what probability to use for selecting a routee, based on remaining capacity as indicated by the node metrics

Value Members

  1. final def metricsChanged(event: ClusterMetricsChanged): Unit
    Annotations
    @tailrec()
  2. val metricsSelector: MetricsSelector
  3. def select(message: Any, routees: IndexedSeq[Routee]): Routee

    Pick the destination for a given message.

    Pick the destination for a given message. Normally it picks one of the passed routees, but in the end it is up to the implementation to return whatever Routee to use for sending a specific message.

    When implemented from Java it can be good to know that routees.apply(index) can be used to get an element from the IndexedSeq.

    Definition Classes
    AdaptiveLoadBalancingRoutingLogicRoutingLogic
  4. val system: ActorSystem