final case class AdaptiveLoadBalancingRoutingLogic(system: ActorSystem, metricsSelector: MetricsSelector = MixMetricsSelector) extends RoutingLogic with NoSerializationVerificationNeeded with Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- AdaptiveLoadBalancingRoutingLogic
- Serializable
- Product
- Equals
- RoutingLogic
- NoSerializationVerificationNeeded
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- 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
- final def metricsChanged(event: ClusterMetricsChanged): Unit
- Annotations
- @tailrec()
- val metricsSelector: MetricsSelector
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def select(message: Any, routees: [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 theIndexedSeq
.- Definition Classes
- → RoutingLogic
- val system: ActorSystem
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.
the actor system hosting this router
decides what probability to use for selecting a routee, based on remaining capacity as indicated by the node metrics