https://github.com/jw3/openshift-kinesalite
Kinesis on OpenShift with Kinesalite
https://github.com/jw3/openshift-kinesalite
aws-kinesis kinesis openshift openshift-origin
Last synced: 6 months ago
JSON representation
Kinesis on OpenShift with Kinesalite
- Host: GitHub
- URL: https://github.com/jw3/openshift-kinesalite
- Owner: jw3
- Created: 2017-08-10T16:10:00.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-10T16:18:07.000Z (about 8 years ago)
- Last Synced: 2025-02-13T07:43:29.003Z (8 months ago)
- Topics: aws-kinesis, kinesis, openshift, openshift-origin
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Kinesis on OpenShift
===[](https://gitorious.ctc.com/gitlab/openshift/kinesalite/commits/master)
Using [Kinesalite](https://github.com/mhart/kinesalite) which is an implementation of Amazon's Kinesis, focussed on correctness and performance, and built on LevelDB.
### Resources
- OpenShift Template: [template.yml](template.yml)
### Environment variables
- `SSL_ENABLED`: Enable SSL on the connection (default: false)
- `CREATE_STREAM_MS`: Amount of time in ms streams stay in CREATING state (default: 500)
- `DELETE_STREAM_MS`: Amount of time in ms streams stay in DELETING state (default: 500)
- `UPDATE_STREAM_MS`: Amount of time in ms streams stay in UPDATING state (default: 500)### Usage
```
Usage: kinesalite [--port ] [--path ] [--ssl] [options]A Kinesis http server, optionally backed by LevelDB
Options:
--help Display this help message and exit
--port The port to listen on (default: 4567)
--path The path to use for the LevelDB store (in-memory by default)
--ssl Enable SSL for the web server (default: false)
--createStreamMs Amount of time streams stay in CREATING state (default: 500)
--deleteStreamMs Amount of time streams stay in DELETING state (default: 500)
--updateStreamMs Amount of time streams stay in UPDATING state (default: 500)
--shardLimit Shard limit for error reporting (default: 10)
```