Packages

class ExternalShardAllocationStrategy extends StartableAllocationStrategy

Source
ExternalShardAllocationStrategy.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExternalShardAllocationStrategy
  2. StartableAllocationStrategy
  3. ShardAllocationStrategy
  4. NoSerializationVerificationNeeded
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ExternalShardAllocationStrategy(systemProvider: ClassicActorSystemProvider, typeName: String)(implicit timeout: Timeout = Timeout(5.seconds))

Value Members

  1. def allocateShard(requester: ExternalShardAllocationStrategy.ShardRegion, shardId: ShardId, currentShardAllocations: Map[ExternalShardAllocationStrategy.ShardRegion, IndexedSeq[ShardId]]): Future[ExternalShardAllocationStrategy.ShardRegion]

    Invoked when the location of a new shard is to be decided.

    Invoked when the location of a new shard is to be decided.

    requester

    actor reference to the ShardRegion that requested the location of the shard, can be returned if preference should be given to the node where the shard was first accessed

    shardId

    the id of the shard to allocate

    currentShardAllocations

    all actor refs to ShardRegion and their current allocated shards, in the order they were allocated

    returns

    a Future of the actor ref of the ShardRegion that is to be responsible for the shard, must be one of the references included in the currentShardAllocations parameter

    Definition Classes
    ExternalShardAllocationStrategyShardAllocationStrategy
  2. def rebalance(currentShardAllocations: Map[ActorRef, IndexedSeq[ShardId]], rebalanceInProgress: Set[ShardId]): Future[Set[ShardId]]

    Invoked periodically to decide which shards to rebalance to another location.

    Invoked periodically to decide which shards to rebalance to another location.

    currentShardAllocations

    all actor refs to ShardRegion and their current allocated shards, in the order they were allocated

    rebalanceInProgress

    set of shards that are currently being rebalanced, i.e. you should not include these in the returned set

    returns

    a Future of the shards to be migrated, may be empty to skip rebalance in this round

    Definition Classes
    ExternalShardAllocationStrategyShardAllocationStrategy
  3. def start(): Unit

    Called before any calls to allocate/rebalance.

    Called before any calls to allocate/rebalance. Do not block. If asynchronous actions are required they can be started here and delay the Futures returned by allocate/rebalance.

    Definition Classes
    ExternalShardAllocationStrategyStartableAllocationStrategy
  4. implicit val timeout: Timeout