Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vert-x3/vertx-kafka-client

Reactive Kafka Client for Vert.x
https://github.com/vert-x3/vertx-kafka-client

Last synced: 17 days ago
JSON representation

Reactive Kafka Client for Vert.x

Awesome Lists containing this project

README

        

# Vert.x Kafka Client

[![Build Status (5.x)](https://github.com/vert-x3/vertx-kafka-client/actions/workflows/ci-5.x.yml/badge.svg)](https://github.com/vert-x3/vertx-kafka-client/actions/workflows/ci-5.x.yml)
[![Build Status (4.x)](https://github.com/vert-x3/vertx-kafka-client/actions/workflows/ci-4.x.yml/badge.svg)](https://github.com/vert-x3/vertx-kafka-client/actions/workflows/ci-4.x.yml)

This component provides a Kafka client for reading and sending messages from/to an [Apache Kafka](https://kafka.apache.org/) cluster.
From the consumer point of view, its API provides a bunch of methods for subscribing to a topic partition receiving
messages asynchronously or reading them as a stream (even with the possibility to pause the stream itself).
As producer, its API provides methods for sending message to a topic partition like writing on a stream.

See the online docs for more details:
- [Java](https://vertx.io/docs/vertx-kafka-client/java)
- [JavaScript](https://vertx.io/docs/vertx-kafka-client/js)
- [Ruby](https://vertx.io/docs/vertx-kafka-client/ruby)
- [Groovy](https://vertx.io/docs/vertx-kafka-client/groovy)
- [Kotlin](https://vertx.io/docs/vertx-kafka-client/kotlin)

Important aspects of Topic Management, such as creating a topic, deleting a topic, changing configuration of a topic, are also supported.
See the online docs for more details:
- [Java](https://vertx.io/docs/vertx-kafka-client/java/#_vert_x_kafka_adminutils)
- [JavaScript](https://vertx.io/docs/vertx-kafka-client/js/#_vert_x_kafka_adminutils)
- [Ruby](https://vertx.io/docs/vertx-kafka-client/ruby/#_vert_x_kafka_adminutils)
- [Groovy](https://vertx.io/docs/vertx-kafka-client/groovy/#_vert_x_kafka_adminutils)
- [Kotlin](https://vertx.io/docs/vertx-kafka-client/kotlin/#_vert_x_kafka_adminutils)

**Note: This module has Tech Preview status, this means the API can change between versions.**