Packages

object NackAdmissionFilter

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NackAdmissionFilter
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. sealed trait Param extends AnyRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val DefaultNackRateThreshold: Double

    By default, the client will send all requests when the accept rate EMA is between 50% and 100%.

    By default, the client will send all requests when the accept rate EMA is between 50% and 100%. If the EMA drops below 50%, the filter will drop any given request with probability proportional to the EMA.

    E.g., if the EMA is 20%, the filter will drop any given request with 100 - (2 * 20) = 60% probability. If the EMA is 10%, the filter will drop any given request with 100 - (2 * 10) = 80% probability.

  5. val DefaultWindow: Duration

    By default, the EMA window is 2 minutes: any response that the filter receives over a 2 minute rolling window affects the EMA's value.

    By default, the EMA window is 2 minutes: any response that the filter receives over a 2 minute rolling window affects the EMA's value. In other words, the EMA "forgets" history older than 2 minutes.

    E.g., if the server nacks every request received for one minute, then two minutes pass without the server receiving any requests, and then the server receives a small number of non-nacks ("accepts"), the EMA will end up being very close to 1.

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. val role: Role
  18. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  23. object Param

Inherited from AnyRef

Inherited from Any

Ungrouped