Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1.36 KB

README.md

File metadata and controls

34 lines (24 loc) · 1.36 KB

pekko-kinesis

CI Maven Central Renovate License Tokei

pekko-kinesis supports Pekko commponets for AWS Kinesis.

Forked from akka-kinesis.

Support features

  • KPLFlow
  • KCLSource
  • KCLSourceOnDynamoDBStreams (for DynamoDB Streams)

Installation

Add the following to your sbt build (2.12.x, 2.13.x):

// if snapshot
resolvers += "Sonatype OSS Snapshot Repository" at "https://oss.sonatype.org/content/repositories/snapshots/"

val version = "..."

libraryDependencies += Seq(
  "com.github.j5ik2o" %% "pekko-kinesis-kcl" % version, // for KCL
  "com.github.j5ik2o" %% "pekko-kinesis-kpl" % version, // for KPL
  "com.github.j5ik2o" %% "pekko-kinesis-kcl-dynamodb-streams" % version // for KCL with DynamoDB Streams
)