final case class AdaptiveLoadBalancingPool(metricsSelector: MetricsSelector = MixMetricsSelector, nrOfInstances: Int = 0, supervisorStrategy: SupervisorStrategy = Pool.defaultSupervisorStrategy, routerDispatcher: String = Dispatchers.DefaultDispatcherId, usePoolDispatcher: Boolean = false) extends Pool with Product with Serializable
A router pool that performs 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 configuration parameter trumps the constructor arguments. This means that
if you provide nrOfInstances
during instantiation they will be ignored if
the router is defined in the configuration file for the actor being used.
Supervision Setup
Any routees that are created by a router will be created as the router's children. The router is therefore also the children's supervisor.
The supervision strategy of the router actor can be configured with #withSupervisorStrategy. If no strategy is provided, routers default to a strategy of “always escalate”. This means that errors are passed up to the router's supervisor for handling.
The router's supervisor will treat the error as an error with the router itself. Therefore a directive to stop or restart will cause the router itself to stop or restart. The router, in turn, will cause its children to stop and restart.
- metricsSelector
decides what probability to use for selecting a routee, based on remaining capacity as indicated by the node metrics
- nrOfInstances
initial number of routees in the pool
- supervisorStrategy
strategy for supervising the routees, see 'Supervision Setup'
- routerDispatcher
dispatcher to use for the router head actor, which handles supervision, death watch and router management messages
- Annotations
- @SerialVersionUID()
- Source
- ClusterMetricsRouting.scala
- Alphabetic
- By Inheritance
- AdaptiveLoadBalancingPool
- Product
- Equals
- Pool
- RouterConfig
- Serializable
- Serializable
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
AdaptiveLoadBalancingPool(metricsSelector: MetricsSelector, nr: Int)
Java API
Java API
- metricsSelector
decides what probability to use for selecting a routee, based on remaining capacity as indicated by the node metrics
- nr
initial number of routees in the pool
- new AdaptiveLoadBalancingPool(config: Config, dynamicAccess: DynamicAccess)
-
new
AdaptiveLoadBalancingPool(metricsSelector: MetricsSelector = MixMetricsSelector, nrOfInstances: Int = 0, supervisorStrategy: SupervisorStrategy = Pool.defaultSupervisorStrategy, routerDispatcher: String = Dispatchers.DefaultDispatcherId, usePoolDispatcher: Boolean = false)
- metricsSelector
decides what probability to use for selecting a routee, based on remaining capacity as indicated by the node metrics
- nrOfInstances
initial number of routees in the pool
- supervisorStrategy
strategy for supervising the routees, see 'Supervision Setup'
- routerDispatcher
dispatcher to use for the router head actor, which handles supervision, death watch and router management messages
Value Members
-
def
createRouter(system: ActorSystem): Router
Create the actual router, responsible for routing messages to routees.
Create the actual router, responsible for routing messages to routees.
- system
the ActorSystem this router belongs to
- Definition Classes
- AdaptiveLoadBalancingPool → RouterConfig
-
def
isManagementMessage(msg: Any): Boolean
Is the message handled by the router head actor or the #routingLogicController actor.
Is the message handled by the router head actor or the #routingLogicController actor.
- Definition Classes
- RouterConfig
- val metricsSelector: MetricsSelector
-
def
nrOfInstances(sys: ActorSystem): Int
- Definition Classes
- AdaptiveLoadBalancingPool → Pool
- val nrOfInstances: Int
-
def
props(routeeProps: Props): Props
akka.actor.Props for a pool router based on the settings defined by this instance and the supplied akka.actor.Props for the routees created by the router.
akka.actor.Props for a pool router based on the settings defined by this instance and the supplied akka.actor.Props for the routees created by the router.
- Definition Classes
- Pool
-
def
resizer: Option[Resizer]
Pool with dynamically resizable number of routees return the akka.routing.Resizer to use.
Pool with dynamically resizable number of routees return the akka.routing.Resizer to use. The resizer is invoked once when the router is created, before any messages can be sent to it. Resize is also triggered when messages are sent to the routees, and the resizer is invoked asynchronously, i.e. not necessarily before the message has been sent.
- Definition Classes
- AdaptiveLoadBalancingPool → Pool
-
val
routerDispatcher: String
Dispatcher ID to use for running the “head” actor, which handles supervision, death watch and router management messages
Dispatcher ID to use for running the “head” actor, which handles supervision, death watch and router management messages
- Definition Classes
- AdaptiveLoadBalancingPool → RouterConfig
-
def
routingLogicController(routingLogic: RoutingLogic): Option[Props]
Possibility to define an actor for controlling the routing logic from external stimuli (e.g.
Possibility to define an actor for controlling the routing logic from external stimuli (e.g. monitoring metrics). This actor will be a child of the router "head" actor. Management messages not handled by the "head" actor are delegated to this controller actor.
- Definition Classes
- AdaptiveLoadBalancingPool → RouterConfig
-
def
stopRouterWhenAllRouteesRemoved: Boolean
- Definition Classes
- Pool → RouterConfig
-
val
supervisorStrategy: SupervisorStrategy
SupervisorStrategy for the head actor, i.e.
SupervisorStrategy for the head actor, i.e. for supervising the routees of the pool.
- Definition Classes
- AdaptiveLoadBalancingPool → Pool
-
val
usePoolDispatcher: Boolean
Use a dedicated dispatcher for the routees of the pool.
Use a dedicated dispatcher for the routees of the pool. The dispatcher is defined in 'pool-dispatcher' configuration property in the deployment section of the router.
- Definition Classes
- AdaptiveLoadBalancingPool → Pool
-
def
verifyConfig(path: ActorPath): Unit
Check that everything is there which is needed.
Check that everything is there which is needed. Called in constructor of RoutedActorRef to fail early.
- Definition Classes
- RouterConfig
-
def
withDispatcher(dispatcherId: String): AdaptiveLoadBalancingPool
Setting the dispatcher to be used for the router head actor, which handles supervision, death watch and router management messages.
-
def
withFallback(other: RouterConfig): RouterConfig
Uses the supervisor strategy of the given RouterConfig if this RouterConfig doesn't have one
Uses the supervisor strategy of the given RouterConfig if this RouterConfig doesn't have one
- Definition Classes
- AdaptiveLoadBalancingPool → RouterConfig
-
def
withSupervisorStrategy(strategy: SupervisorStrategy): AdaptiveLoadBalancingPool
Setting the supervisor strategy to be used for the “head” Router actor.