karp
Описание
KAfka gRPc bridge
Языки
- Go95,8%
- Lua2,8%
- Shell1,4%
10 месяцев назад
9 месяцев назад
5 месяцев назад
10 месяцев назад
10 месяцев назад
10 месяцев назад
8 месяцев назад
10 месяцев назад
10 месяцев назад
10 месяцев назад
10 месяцев назад
10 месяцев назад
9 месяцев назад
4 месяца назад
4 месяца назад
README.md
KAfka gRPc bridge
Motivation
- Publishing Kafka clusters over HTTP (in this case, HTTP/2 and gRPC)
- Synchronizing Kafka clusters across different data centers
- Simpler than Kafka REST API, thanks to bidirectional HTTP/2 streaming
- One connection = one Kafka client – disconnection gracefully and immediately terminates the Kafka client.
- Support multiple connections to a single topic with rebalancing
- Consistent repartition a topic on the fly using different methods
- Message filtering and mangling using Lua script
Components
1. karpserver
karpserver
A gRPC server that streams messages from requested topics in configured Kafka clusters. Supports multiple connections to the same topic within a single consumer group, with proper rebalancing handling.
2. karpclient
karpclient
A gRPC client that connects to the server and writes the message stream to configured Kafka clusters.
3. karp
karp
A public Go client library for connecting to Karp Server.
4. karp.proto
karp.proto
Protocol definition for other languages.