Packages

c

akka.cluster

NoDowning

final class NoDowning extends DowningProvider

Default downing provider used when no provider is configured and 'auto-down-unreachable-after' is not enabled.

Source
DowningProvider.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NoDowning
  2. DowningProvider
  3. AnyRef
  4. 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 NoDowning(system: ActorSystem)

Value Members

  1. def downRemovalMargin: FiniteDuration

    Time margin after which shards or singletons that belonged to a downed/removed partition are created in surviving partition.

    Time margin after which shards or singletons that belonged to a downed/removed partition are created in surviving partition. The purpose of this margin is that in case of a network partition the persistent actors in the non-surviving partitions must be stopped before corresponding persistent actors are started somewhere else. This is useful if you implement downing strategies that handle network partitions, e.g. by keeping the larger side of the partition and shutting down the smaller side.

    Definition Classes
    NoDowningDowningProvider
  2. val downingActorProps: Option[Props]

    If a props is returned it is created as a child of the core cluster daemon on cluster startup.

    If a props is returned it is created as a child of the core cluster daemon on cluster startup. It should then handle downing using the regular akka.cluster.Cluster APIs. The actor will run on the same dispatcher as the cluster actor if dispatcher not configured.

    May throw an exception which will then immediately lead to Cluster stopping, as the downing provider is vital to a working cluster.

    Definition Classes
    NoDowningDowningProvider