Python interface for splitting and/or merging Kafka topics
Project description
Kemux - Kafka Demultiplexer
Kemux is a Kafka demultiplexer that allows to route messages from one topic to another based on a set of rules.
How it works
Kemux is a Python library that uses Robinhood's Faust to process messages from one topic and route them to another topic based on a set of rules.
The rules are defined within a Stream object, that defines input and output topics, schema of their messages, as well as a set of filters and transformations that are applied to messages.
Installation
Kemux can be installed via pip
:
pip install kemux
Usage
Running as a standalone application
Kemux can be run as a standalone application, using the Manager
class:
from kemux.manager import Manager
kemux_manager = Manager(
...
)
kemux_manager.start()
Running as a Docker container
Kemux can be deployed as a standalone Docker container. The process is described in the Docker section of the documentation.
Further reading
For more information about Kemux, please refer to the documentation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.