Click or drag to resize
Akka.NETPhiAccrualFailureDetector Class
Implementation of 'The Phi Accrual Failure Detector' by Hayashibara et al. as defined in their paper: [http://ddg.jaist.ac.jp/pub/HDY+04.pdf] The suspicion level of failure is given by a value called φ (phi). The basic idea of the φ failure detector is to express the value of φ on a scale that is dynamically adjusted to reflect current network conditions. A configurable threshold is used to decide if φ is considered to be a failure. The value of φ is calculated as:
φ = -log10(1 - F(timeSinceLastHeartbeat)
where F is the cumulative distribution function of a normal distribution with mean and standard deviation estimated from historical heartbeat inter-arrival times.
Inheritance Hierarchy

Namespace:  Akka.Remote
Assembly:  Akka.Remote (in Akka.Remote.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public class PhiAccrualFailureDetector : FailureDetector

The PhiAccrualFailureDetector type exposes the following members.

Constructors
  NameDescription
Protected methodPhiAccrualFailureDetector(Clock)
TBD
Public methodPhiAccrualFailureDetector(Config, EventStream)
Constructor that reads parameters from config. Expecting config properties named 'threshold', 'max-sample-size', 'min-std-deviation', 'acceptable-heartbeat-pause', and 'heartbeat-interval'.
Public methodPhiAccrualFailureDetector(Double, Int32, TimeSpan, TimeSpan, TimeSpan, Clock)
Procedural constructor for PhiAccrualDetector
Top
Properties
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodHeartBeat
TBD
(Overrides FailureDetectorHeartBeat.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
See Also