final case class SequencerPruningConfig(maxPruningBatchSize: PositiveInt = PositiveInt.tryCreate(50000), pruningMetricUpdateInterval: Option[PositiveDurationSeconds] = PositiveDurationSeconds.ofHours(1L).some, unauthenticatedMemberRetention: NonNegativeFiniteDuration = NonNegativeFiniteDuration.ofHours(1)) extends Product with Serializable
Configuration for enterprise sequencer pruning
- maxPruningBatchSize
maximum number of events to prune from a sequencer at a time, used to break up batches internally
- pruningMetricUpdateInterval
How frequently to update the
max-event-age
pruning progress metric in the background. A setting of None disables background metric updating.- unauthenticatedMemberRetention
retention duration on how long to retain unauthenticated sequencer members that would otherwise block sequencer pruning. Unauthenticated members older than the specified retention will be automatically disabled.
- Alphabetic
- By Inheritance
- SequencerPruningConfig
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new SequencerPruningConfig(maxPruningBatchSize: PositiveInt = PositiveInt.tryCreate(50000), pruningMetricUpdateInterval: Option[PositiveDurationSeconds] = PositiveDurationSeconds.ofHours(1L).some, unauthenticatedMemberRetention: NonNegativeFiniteDuration = NonNegativeFiniteDuration.ofHours(1))
- maxPruningBatchSize
maximum number of events to prune from a sequencer at a time, used to break up batches internally
- pruningMetricUpdateInterval
How frequently to update the
max-event-age
pruning progress metric in the background. A setting of None disables background metric updating.- unauthenticatedMemberRetention
retention duration on how long to retain unauthenticated sequencer members that would otherwise block sequencer pruning. Unauthenticated members older than the specified retention will be automatically disabled.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val maxPruningBatchSize: PositiveInt
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val pruningMetricUpdateInterval: Option[PositiveDurationSeconds]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val unauthenticatedMemberRetention: NonNegativeFiniteDuration
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])