Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 2 days 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-28T11:37:02.000Z (11 days ago)
- Last Synced: 2024-10-28T15:00:35.002Z (11 days ago)
- Topics: kinesis, pekko, pekko-streams, scala
- Language: Scala
- Homepage:
- Size: 502 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
[![CI](https://github.com/j5ik2o/pekko-kinesis/workflows/CI/badge.svg)](https://github.com/j5ik2o/pekko-kinesis/actions?query=workflow%3ACI)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.j5ik2o/pekko-kinesis-kcl_2.13/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.j5ik2o/pekko-kinesis-kcl_2.13)
[![Renovate](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://renovatebot.com)
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![Tokei](https://tokei.rs/b1/github/j5ik2o/pekko-kinesis)](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
)
```