https://github.com/j5ik2o/pekko-kinesis
pekko-kinesis supports Pekko commponets for AWS Kinesis.
https://github.com/j5ik2o/pekko-kinesis
kinesis pekko pekko-streams scala
Last synced: about 2 months ago
JSON representation
pekko-kinesis supports Pekko commponets for AWS Kinesis.
- Host: GitHub
- URL: https://github.com/j5ik2o/pekko-kinesis
- Owner: j5ik2o
- License: mit
- Created: 2023-07-21T02:28:22.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-17T09:15:56.000Z (2 months ago)
- Last Synced: 2025-03-22T10:13:45.101Z (2 months ago)
- Topics: kinesis, pekko, pekko-streams, scala
- Language: Scala
- Homepage:
- Size: 521 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# pekko-kinesis
[](https://github.com/j5ik2o/pekko-kinesis/actions?query=workflow%3ACI)
[](https://maven-badges.herokuapp.com/maven-central/com.github.j5ik2o/pekko-kinesis-kcl_2.13)
[](https://renovatebot.com)
[](https://opensource.org/licenses/MIT)
[](https://github.com/XAMPPRocky/tokei)pekko-kinesis supports Pekko commponets for AWS Kinesis.
Forked from [akka-kinesis](https://github.com/j5ik2o/akka-kinesis).
## Support features
- KPLFlow
- KCLSource
- KCLSourceOnDynamoDBStreams (for DynamoDB Streams)## Installation
Add the following to your sbt build (2.12.x, 2.13.x):
```scala
// 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
)
```