class CantonSyncService extends WriteService with WriteParticipantPruningService with ReadService with FlagCloseable with Spanning with NamedLogging

The Canton-based synchronization service.

A single Canton sync service can connect to multiple domains.

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CantonSyncService
  2. NamedLogging
  3. Spanning
  4. FlagCloseable
  5. AutoCloseable
  6. ReadService
  7. WriteService
  8. ReportsHealth
  9. WriteParticipantPruningService
  10. WriteConfigService
  11. WritePartyService
  12. WritePackagesService
  13. AnyRef
  14. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new CantonSyncService(participantId: ParticipantId, domainRegistry: DomainRegistry, domainConnectionConfigStore: DomainConnectionConfigStore, aliasManager: DomainAliasManager, participantNodePersistentState: ParticipantNodePersistentState, participantNodeEphemeralState: ParticipantNodeEphemeralState, syncDomainPersistentStateManager: SyncDomainPersistentStateManager, syncDomainPersistentStateFactory: SyncDomainPersistentStateFactory, packageService: PackageService, topologyStoreFactory: TopologyStoreFactory, domainCausalityStore: MultiDomainCausalityStore, topologyManager: ParticipantTopologyManager, identityPusher: ParticipantTopologyDispatcher, partyNotifier: LedgerServerPartyNotifier, syncCrypto: SyncCryptoApiProvider, pruningProcessor: PruningProcessor, ledgerId: LedgerId, engine: Engine, syncDomainStateFactory: SyncDomainEphemeralStateFactory, clock: Clock, resourceManagementService: ResourceManagementService, parameters: ParticipantNodeParameters, syncDomainFactory: Factory[SyncDomain], indexedStringStore: IndexedStringStore, metrics: ParticipantMetrics, isActive: () => Boolean, futureSupervisor: FutureSupervisor, loggerFactory: NamedLoggerFactory)(implicit ec: ExecutionContext, mat: Materializer, tracer: Tracer)

    participantId

    The participant node id hosting this sync service.

    domainRegistry

    Domain registry for connecting to domains.

    domainConnectionConfigStore

    Storage for domain connection configs

    packageService

    Underlying package management service.

    syncCrypto

    Synchronisation crypto utility combining IPS and Crypto operations.

    isActive

    Returns true of the node is the active replica

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. def addContractsRepair(domain: DomainAlias, contractsToAdd: Seq[SerializableContractWithWitnesses], ignoreAlreadyAdded: Boolean)(implicit traceContext: TraceContext): Either[String, Unit]

    Participant repair utility for manually adding contracts to a domain in an offline fashion.

    Participant repair utility for manually adding contracts to a domain in an offline fashion.

    domain

    alias of domain to add contracts to. The domain needs to be configured, but disconnected to prevent race conditions.

    contractsToAdd

    contracts to add. Relevant pieces of each contract: create-arguments (LfContractInst), template-id (LfContractInst), contractId, ledgerCreateTime, salt (to be added to SerializableContract), and witnesses, SerializableContract.metadata is only validated, but otherwise ignored as stakeholder and signatories can be recomputed from contracts.

    ignoreAlreadyAdded

    whether to ignore and skip over contracts already added/present in the domain. Setting this to true (at least on retries) enables writing idempotent repair scripts.

  5. def addDomain(config: DomainConnectionConfig)(implicit traceContext: TraceContext): EitherT[Future, SyncServiceError, Unit]

    Adds a new domain to the sync service's configuration.

    Adds a new domain to the sync service's configuration.

    NOTE: Does not automatically connect the sync service to the new domain.

    config

    The domain configuration.

    returns

    Error or unit.

  6. def allocateParty(hint: Option[LfPartyId], displayName: Option[String], rawSubmissionId: LedgerSubmissionId)(implicit _loggingContext: LoggingContext, telemetryContext: TelemetryContext): CompletionStage[SubmissionResult]
    Definition Classes
    CantonSyncService → WritePartyService
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def changeDomainRepair(contractIds: Seq[LfContractId], sourceDomain: DomainAlias, targetDomain: DomainAlias, skipInactive: Boolean)(implicit tranceContext: TraceContext): Either[String, Unit]

    Participant repair utility for manually moving contracts from a source domain to a target domain in an offline fashion.

    Participant repair utility for manually moving contracts from a source domain to a target domain in an offline fashion.

    contractIds

    ids of contracts to move that reside in the sourceDomain (or for idempotency already in the targetDomain)

    sourceDomain

    alias of source domain from which to move contracts

    targetDomain

    alias of target domain to which to move contracts

    skipInactive

    whether to only move contracts that are active in the source domain

  9. def checkOverloaded(telemetryContext: TelemetryContext): Option[SubmissionResult]
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  11. final def close(): Unit

    Blocks until all earlier tasks have completed and then prevents further tasks from being run.

    Blocks until all earlier tasks have completed and then prevents further tasks from being run.

    Definition Classes
    FlagCloseable → AutoCloseable
    Annotations
    @SuppressWarnings()
  12. def closingTimeout: FiniteDuration
    Attributes
    protected
    Definition Classes
    FlagCloseable
  13. def computeTotalLoad: Int
  14. def configuredDomains: Seq[DomainConnectionConfig]

    Returns the domains this sync service is configured with.

  15. def connectDomain(domainAlias: DomainAlias, keepRetrying: Boolean)(implicit traceContext: TraceContext): EitherT[Future, SyncServiceError, Boolean]

    Connect the sync service to the given domain.

    Connect the sync service to the given domain. This method makes sure there can only be one connection in progress at a time.

  16. def currentHealth(): HealthStatus
    Definition Classes
    CantonSyncService → ReportsHealth
  17. def currentWriteHealth(): HealthStatus
  18. def disconnectDomain(domain: DomainAlias)(implicit traceContext: TraceContext): EitherT[Future, SyncServiceError, Unit]

    Disconnect the given domain from the sync service.

  19. def disconnectDomains()(implicit traceContext: TraceContext): EitherT[Future, SyncServiceError, Unit]

    Disconnect from all connected domains.

  20. def domainConnectionConfigByAlias(domainAlias: DomainAlias): EitherT[Future, MissingConfigForAlias, DomainConnectionConfig]
  21. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  23. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. def ignoreEventsRepair(domain: DomainId, from: SequencerCounter, to: SequencerCounter, force: Boolean)(implicit traceContext: TraceContext): Either[String, Unit]
  26. def initializeState()(implicit traceContext: TraceContext): Unit
  27. def internalPerformUnlessClosingF[A](f: => Future[A])(implicit ec: ExecutionContext, traceContext: TraceContext): UnlessShutdown[Future[A]]
    Attributes
    protected
    Definition Classes
    FlagCloseable
  28. val isActive: () => Boolean
  29. def isClosing: Boolean

    Check whether we're closing.

    Check whether we're closing. Susceptible to race conditions; unless you're using using this as a flag to the retry lib or you really know what you're doing, prefer performUnlessClosing and friends.

    Definition Classes
    FlagCloseable
  30. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  31. def keepTrackOfOpenFutures: Boolean

    track running futures on shutdown

    track running futures on shutdown

    set to true to get detailed information about all futures that did not complete during shutdown. if set to false, we don't do anything.

    Attributes
    protected
    Definition Classes
    FlagCloseable
  32. def ledgerInitialConditions(): Source[LedgerInitialConditions, NotUsed]
    Definition Classes
    CantonSyncService → ReadService
  33. def logger: TracedLogger
    Attributes
    protected
    Definition Classes
    NamedLogging
  34. val loggerFactory: NamedLoggerFactory
    Attributes
    protected
    Definition Classes
    CantonSyncServiceNamedLogging
  35. implicit def loggingContext(implicit traceContext: TraceContext): ErrorLoggingContext
    Attributes
    protected
    Definition Classes
    NamedLogging
  36. def lookupDomainTimeTracker(domainId: DomainId): Option[DomainTimeTracker]

    Lookup a time tracker for the given domainId.

    Lookup a time tracker for the given domainId. A time tracker will only be returned if the domain is registered and connected.

  37. val maxDeduplicationDuration: NonNegativeFiniteDuration
  38. def modifyDomain(config: DomainConnectionConfig)(implicit traceContext: TraceContext): EitherT[Future, SyncServiceError, Unit]

    Modifies the settings of the sync-service's configuration

    Modifies the settings of the sync-service's configuration

    NOTE: This does not automatically reconnect the sync service.

  39. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  40. def noTracingLogger: Logger
    Attributes
    protected
    Definition Classes
    NamedLogging
  41. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  42. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  43. def onClosed(): Unit
    Definition Classes
    CantonSyncServiceFlagCloseable
  44. val participantId: ParticipantId
  45. def performUnlessClosing[A](f: => A)(implicit traceContext: TraceContext): UnlessShutdown[A]

    Performs the task given by f unless a shutdown has been initiated.

    Performs the task given by f unless a shutdown has been initiated. The shutdown will only begin after f completes, but other tasks may execute concurrently with f, if started using this function, or one of the other variants (performUnlessClosingF and performUnlessClosingEitherT). The tasks are assumed to take less than closingTimeout to complete.

    f

    The task to perform

    returns

    scala.None$ if a shutdown has been initiated. Otherwise the result of the task.

    Definition Classes
    FlagCloseable
  46. def performUnlessClosingEitherT[E, R](onClosing: => E)(etf: => EitherT[Future, E, R])(implicit ec: ExecutionContext, traceContext: TraceContext): EitherT[Future, E, R]

    Performs the EitherT[Future] given by etf unless a shutdown has been initiated, in which case the provided error is returned instead.

    Performs the EitherT[Future] given by etf unless a shutdown has been initiated, in which case the provided error is returned instead. Both etf and the error are lazy; etf is only evaluated if there is no shutdown, the error only if we're shutting down. The shutdown will only begin after etf completes, but other tasks may execute concurrently with etf, if started using this function, or one of the other variants (performUnlessClosing and performUnlessClosingF). The tasks are assumed to take less than closingTimeout to complete.

    etf

    The task to perform

    Definition Classes
    FlagCloseable
  47. def performUnlessClosingEitherTF[E, R](onClosing: => E)(etf: => EitherT[Future, E, Future[R]])(implicit ec: ExecutionContext, traceContext: TraceContext): EitherT[Future, E, Future[R]]
    Definition Classes
    FlagCloseable
  48. def performUnlessClosingF[A](f: => Future[A])(implicit ec: ExecutionContext, traceContext: TraceContext): FutureUnlessShutdown[A]

    Performs the Future given by f unless a shutdown has been initiated.

    Performs the Future given by f unless a shutdown has been initiated. The future is lazy and not evaluated during shutdown. The shutdown will only begin after f completes, but other tasks may execute concurrently with f, if started using this function, or one of the other variants (performUnlessClosing and performUnlessClosingEitherT). The tasks are assumed to take less than closingTimeout to complete.

    f

    The task to perform

    returns

    The future completes with com.digitalasset.canton.lifecycle.UnlessShutdown.AbortedDueToShutdown if a shutdown has been initiated. Otherwise the result of the task wrapped in com.digitalasset.canton.lifecycle.UnlessShutdown.Outcome.

    Definition Classes
    FlagCloseable
  49. def prune(pruneUpToInclusive: LedgerSyncOffset, submissionId: LedgerSubmissionId, _pruneAllDivulgedContracts: Boolean): CompletionStage[PruningResult]
    Definition Classes
    CantonSyncService → WriteParticipantPruningService
  50. def pruneInternally(pruneUpToInclusive: LedgerSyncOffset)(implicit traceContext: TraceContext): EitherT[Future, CantonError, Unit]
  51. def pureCryptoApi: CryptoPureApi

    Returns the pure crypto operations used for the sync protocol

  52. def purgeContractsRepair(domain: DomainAlias, contractIds: Seq[LfContractId], ignoreAlreadyPurged: Boolean)(implicit traceContext: TraceContext): Either[String, Unit]

    Participant repair utility for manually purging (archiving) contracts in an offline fashion.

    Participant repair utility for manually purging (archiving) contracts in an offline fashion.

    domain

    alias of domain to purge contracts from. The domain needs to be configured, but disconnected to prevent race conditions.

    contractIds

    lf contract ids of contracts to purge

    ignoreAlreadyPurged

    whether to ignore already purged contracts.

  53. def purgeDomain(domain: DomainAlias): Either[SyncServiceError, Unit]

    Removes a configured and disconnected domain.

    Removes a configured and disconnected domain.

    This is an unsafe operation as it changes the ledger offsets.

  54. def readyDomains: Map[DomainAlias, (DomainId, Boolean)]

    Returns the ready domains this sync service is connected to.

  55. def reconnectDomains(ignoreFailures: Boolean)(implicit traceContext: TraceContext): EitherT[Future, SyncServiceError, Seq[DomainAlias]]

    Reconnect to all configured domains that have autoStart = true

  56. def recoveringDomains: Map[DomainAlias, DomainId]

    Returns the recovering domains this sync service is connected to.

    Returns the recovering domains this sync service is connected to. "Recovering" means connected, but not yet ready to use.

  57. def refreshCaches()(implicit traceContext: TraceContext): Future[Unit]
  58. def runOnShutdown[T](task: RunOnShutdown)(implicit traceContext: TraceContext): Unit

    Register a task that will run onClose after all "performUnlessShutdown" tasks have finished

    Register a task that will run onClose after all "performUnlessShutdown" tasks have finished

    Definition Classes
    FlagCloseable
  59. def runStateChanged(waitingState: Boolean = false): Unit
    Attributes
    protected
    Definition Classes
    FlagCloseable
    Annotations
    @VisibleForTesting()
  60. def sleepMillis: Long
    Attributes
    protected
    Definition Classes
    FlagCloseable
  61. lazy val stateInspection: SyncStateInspection
  62. def stateUpdates(beginAfterOffset: Option[LedgerSyncOffset])(implicit loggingContext: LoggingContext): Source[(LedgerSyncOffset, LedgerSyncEvent), NotUsed]

    Build source for subscription (for ledger api server indexer).

    Build source for subscription (for ledger api server indexer).

    beginAfterOffset

    offset after which to emit events

    Definition Classes
    CantonSyncService → ReadService
  63. def submitConfiguration(_maxRecordTimeToBeRemovedUpstream: LedgerSyncRecordTime, submissionId: LedgerSubmissionId, config: Configuration)(implicit _loggingContext: LoggingContext, telemetryContext: TelemetryContext): CompletionStage[SubmissionResult]
    Definition Classes
    CantonSyncService → WriteConfigService
  64. def submitTransaction(submitterInfo: SubmitterInfo, transactionMeta: TransactionMeta, transaction: LfSubmittedTransaction, estimatedInterpretationCost: Long)(implicit _loggingContext: LoggingContext, telemetryContext: TelemetryContext): CompletionStage[SubmissionResult]
    Definition Classes
    CantonSyncService → WriteService
  65. val syncCrypto: SyncCryptoApiProvider
  66. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  67. def timeouts: ProcessingTimeout
    Attributes
    protected
    Definition Classes
    CantonSyncServiceFlagCloseable
  68. def toString(): String
    Definition Classes
    AnyRef → Any
  69. implicit val tracer: Tracer
  70. val transferService: TransferService
  71. def unignoreEventsRepair(domain: DomainId, from: SequencerCounter, to: SequencerCounter, force: Boolean)(implicit traceContext: TraceContext): Either[String, Unit]
  72. def uploadPackages(submissionId: LedgerSubmissionId, archives: List[Archive], sourceDescription: Option[String])(implicit _loggingContext: LoggingContext, telemetryContext: TelemetryContext): CompletionStage[SubmissionResult]
    Definition Classes
    CantonSyncService → WritePackagesService
  73. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  74. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  75. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  76. def withNewTrace[A](description: String)(f: (TraceContext) => (SpanWrapper) => A)(implicit tracer: Tracer): A
    Attributes
    protected
    Definition Classes
    Spanning
  77. def withSpan[A](description: String)(f: (TraceContext) => (SpanWrapper) => A)(implicit traceContext: TraceContext, tracer: Tracer): A
    Attributes
    protected
    Definition Classes
    Spanning
  78. def withSpanFromGrpcContext[A](description: String)(f: (TraceContext) => (SpanWrapper) => A)(implicit tracer: Tracer): A
    Attributes
    protected
    Definition Classes
    Spanning

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from NamedLogging

Inherited from Spanning

Inherited from FlagCloseable

Inherited from AutoCloseable

Inherited from ReadService

Inherited from WriteService

Inherited from ReportsHealth

Inherited from WriteConfigService

Inherited from WritePartyService

Inherited from WritePackagesService

Inherited from AnyRef

Inherited from Any

Ungrouped