Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/j5ik2o/akka-kinesis
https://github.com/j5ik2o/akka-kinesis
akka akka-streams kinesis scala
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/j5ik2o/akka-kinesis
- Owner: j5ik2o
- License: mit
- Created: 2017-12-15T06:45:22.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2024-10-28T12:32:08.000Z (3 months ago)
- Last Synced: 2024-10-28T16:15:58.085Z (3 months ago)
- Topics: akka, akka-streams, kinesis, scala
- Language: Scala
- Homepage:
- Size: 574 KB
- Stars: 8
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# akka-kinesis
[![CI](https://github.com/j5ik2o/akka-kinesis/workflows/CI/badge.svg)](https://github.com/j5ik2o/akka-kinesis/actions?query=workflow%3ACI)
[![Scala Steward badge](https://img.shields.io/badge/Scala_Steward-helping-blue.svg?style=flat&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAMAAAARSr4IAAAAVFBMVEUAAACHjojlOy5NWlrKzcYRKjGFjIbp293YycuLa3pYY2LSqql4f3pCUFTgSjNodYRmcXUsPD/NTTbjRS+2jomhgnzNc223cGvZS0HaSD0XLjbaSjElhIr+AAAAAXRSTlMAQObYZgAAAHlJREFUCNdNyosOwyAIhWHAQS1Vt7a77/3fcxxdmv0xwmckutAR1nkm4ggbyEcg/wWmlGLDAA3oL50xi6fk5ffZ3E2E3QfZDCcCN2YtbEWZt+Drc6u6rlqv7Uk0LdKqqr5rk2UCRXOk0vmQKGfc94nOJyQjouF9H/wCc9gECEYfONoAAAAASUVORK5CYII=)](https://scala-steward.org)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.j5ik2o/akka-kinesis-kcl_2.13/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.j5ik2o/akka-kinesis-kcl_2.13)
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)akka-kinesis supports Akka commponets for AWS 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" %% "akka-kinesis-kcl" % version, // for KCL
"com.github.j5ik2o" %% "akka-kinesis-kpl" % version, // for KPL
"com.github.j5ik2o" %% "akka-kinesis-kcl-dynamodb-streams" % version // for KCL with DynamoDB Streams
)
```