object ConfigurationErrors extends ErrorGroup
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ConfigurationErrors
- ErrorGroup
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
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() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- implicit val errorClass: ErrorClass
- Definition Classes
- ErrorGroup
- val fullClassName: String
- Definition Classes
- ErrorGroup
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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])
- object AheadOfHead extends ErrorCode
- Annotations
- @Explanation("""This warning is logged on startup if the sequencer is configured to only start reading from a block
|that wasn't ordered yet by the blockchain (e.g. sequencer is supposed to start reading from block 500, but
|the latest block is only 100). This is likely due to a misconfiguration.
|""") @Resolution("""This issue frequently occurs when the blockchain is reset but the sequencer database configuration is
| not updated or the sequencer database (which persists the last block that was read by the sequencer) is not reset.
| Validate these settings and ensure that the sequencer is still reading from the same blockchain. """)
- object ManyBlocksBehindHead extends ErrorCode
- Annotations
- @Explanation("""This error is logged when the sequencer is currently processing blocks that are very far behind
|the head of the blockchain of the connected Fabric network. The Fabric sequencer won't observe new transactions
|in the blockchain until it has caught up to the head. This may take a long time depending on the blockchain length
|and number of Canton transaction in the blocks. Empirically, we have observed that the Canton sequencer
|processes roughly 500 empty blocks/second. This may vary strongly for non-empty blocks.
|""") @Resolution("""Change the configuration of `startBlockHeight` for the Fabric sequencer when working
|with an existing (not fresh) Fabric network. Alternatively, wait until the sequencer has caught up to the head
| of the blockchain. """)