Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kairosdb/kairos-kafka
Kafka plugin for KairosDB
https://github.com/kairosdb/kairos-kafka
Last synced: about 1 month ago
JSON representation
Kafka plugin for KairosDB
- Host: GitHub
- URL: https://github.com/kairosdb/kairos-kafka
- Owner: kairosdb
- Created: 2014-04-23T22:35:22.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-02-28T03:49:33.000Z (almost 7 years ago)
- Last Synced: 2024-04-17T09:07:25.898Z (9 months ago)
- Language: Java
- Size: 11.7 KB
- Stars: 12
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
kairos-kafka
============Kafka plugin for KairosDB
Currently built against a staging repo for the upcoming KairosDB 0.9.4
Using the Kafka Plugin
----------------------Because kafka events are just binary blobs this plugin cannot handle all use
cases. You will need to write your own topic parser but, never fear I think
I've made the process pretty simple.Do the following:
1. Fork the plugin repo
2. Implement your own TopicParser class.
3. Bind your class in KafkaModule.java
4. Declare your parser in kairos-kafka.properties.I've implemented a StringTopicParser that assumes each kafka event is a UTF8 string.
Use StringTopicParser as an example of how to implement your own topic parser.Information about Kairos plugins
--------------------------------For information on how Kairos plugins work see the [project wiki page](https://code.google.com/p/kairosdb/wiki/Plugins)
Todo Items:
-----------
* Add pre and post install scripts to stop and restart Kairos.
* More unit tests.