org.eligosource.eventsourced.journal.dynamodb

DynamoDBJournalProps

case class DynamoDBJournalProps(journalTable: String, eventSourcedApp: String, key: String, secret: String, operationTimeout: Timeout = ..., replayOperationTimeout: Timeout = ..., counterShards: Int = 10000, factory: Option[ActorRefFactory] = scala.None, dynamoEndpoint: String = "dynamodb.us-east-1.amazonaws.com", name: Option[String] = scala.None, dispatcherName: Option[String] = scala.None, snapshotPath: Path = ..., snapshotSerializer: SnapshotSerializer = ..., snapshotLoadTimeout: FiniteDuration = ..., snapshotSaveTimeout: FiniteDuration = ..., snapshotFilesystem: FileSystem = ..., readOnly: Boolean = false) extends JournalProps with HadoopFilesystemSnapshottingProps[DynamoDBJournalProps] with Product with Serializable

CounterShards should be set to at least a 10x multiple of the expected throughput of the journal during the lifetime of a journal the counterShards can only be increased. Decreases in counterShards will be ignored. The larger the value of counterShards, the longer it takes to recover the storedCounter.

Linear Supertypes
Serializable, Serializable, Product, Equals, HadoopFilesystemSnapshottingProps[DynamoDBJournalProps], JournalProps, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DynamoDBJournalProps
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. HadoopFilesystemSnapshottingProps
  7. JournalProps
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DynamoDBJournalProps(journalTable: String, eventSourcedApp: String, key: String, secret: String, operationTimeout: Timeout = ..., replayOperationTimeout: Timeout = ..., counterShards: Int = 10000, factory: Option[ActorRefFactory] = scala.None, dynamoEndpoint: String = "dynamodb.us-east-1.amazonaws.com", name: Option[String] = scala.None, dispatcherName: Option[String] = scala.None, snapshotPath: Path = ..., snapshotSerializer: SnapshotSerializer = ..., snapshotLoadTimeout: FiniteDuration = ..., snapshotSaveTimeout: FiniteDuration = ..., snapshotFilesystem: FileSystem = ..., readOnly: Boolean = false)

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clientProps(system: ActorSystem): DynamoDBClientProps

  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. val counterShards: Int

  10. def createJournal(implicit actorRefFactory: ActorRefFactory): ActorRef

    Creates and starts a new journal using the settings of this configuration object.

    Creates and starts a new journal using the settings of this configuration object.

    Definition Classes
    JournalProps
  11. def createJournalActor: DynamoDBJournal

    Creates a journal actor instance.

    Creates a journal actor instance.

    Definition Classes
    DynamoDBJournalPropsJournalProps
  12. val dispatcherName: Option[String]

    Optional dispatcher name.

    Optional dispatcher name.

    Definition Classes
    DynamoDBJournalPropsJournalProps
  13. val dynamoEndpoint: String

  14. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. val eventSourcedApp: String

  16. val factory: Option[ActorRefFactory]

  17. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. val journalTable: String

  21. val key: String

  22. val name: Option[String]

    Optional journal name.

    Optional journal name.

    Definition Classes
    DynamoDBJournalPropsJournalProps
  23. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  26. val operationTimeout: Timeout

  27. val readOnly: Boolean

    Make journal read only (e.

    Make journal read only (e.g. offline snapshot)

    Definition Classes
    DynamoDBJournalPropsJournalProps
  28. val replayOperationTimeout: Timeout

  29. val secret: String

  30. val snapshotFilesystem: FileSystem

    Hadoop filesystem for storing snapshots.

    Hadoop filesystem for storing snapshots.

    Definition Classes
    DynamoDBJournalPropsHadoopFilesystemSnapshottingProps
  31. val snapshotLoadTimeout: FiniteDuration

    Timeout for loading a snapshot.

    Timeout for loading a snapshot.

    Definition Classes
    DynamoDBJournalPropsHadoopFilesystemSnapshottingProps
  32. val snapshotPath: Path

    Path where snapshots are stored on snapshotFilesystem.

    Path where snapshots are stored on snapshotFilesystem. A relative path is relative to snapshotFilesystem's working directory.

    Definition Classes
    DynamoDBJournalPropsHadoopFilesystemSnapshottingProps
  33. val snapshotSaveTimeout: FiniteDuration

    Timeout for saving a snapshot.

    Timeout for saving a snapshot.

    Definition Classes
    DynamoDBJournalPropsHadoopFilesystemSnapshottingProps
  34. val snapshotSerializer: SnapshotSerializer

    Serializer for writing and reading snapshots.

    Serializer for writing and reading snapshots.

    Definition Classes
    DynamoDBJournalPropsHadoopFilesystemSnapshottingProps
  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  36. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. def withDynamoEndpoint(dynamoEndpoint: String): DynamoDBJournalProps

    Java API.

  40. def withFactory(factory: ActorRefFactory): DynamoDBJournalProps

    Java API.

  41. def withOperationTimeout(operationTimeout: Timeout): DynamoDBJournalProps

    Java API.

  42. def withReadOnly(ro: Boolean): DynamoDBJournalProps

    Java API.

  43. def withReplayOperationTimeout(oeplayOperationTimeout: Timeout): DynamoDBJournalProps

    Java API.

  44. def withSnapshotFilesystem(snapshotFilesystem: FileSystem): DynamoDBJournalProps

    Java API.

  45. def withSnapshotLoadTimeout(snapshotLoadTimeout: FiniteDuration): DynamoDBJournalProps

    Java API.

  46. def withSnapshotPath(snapshotPath: Path): DynamoDBJournalProps

    Java API.

  47. def withSnapshotSaveTimeout(snapshotSaveTimeout: FiniteDuration): DynamoDBJournalProps

    Java API.

  48. def withSnapshotSerializer(snapshotSerializer: SnapshotSerializer): DynamoDBJournalProps

    Java API.

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from JournalProps

Inherited from AnyRef

Inherited from Any

Ungrouped