https://github.com/lensesio/lenses-serde-kafka-consumer-offsets
A Lenses serde to deserialize the Apache Kafka __conusumer_offset topic
https://github.com/lensesio/lenses-serde-kafka-consumer-offsets
kafka lenses
Last synced: 4 months ago
JSON representation
A Lenses serde to deserialize the Apache Kafka __conusumer_offset topic
- Host: GitHub
- URL: https://github.com/lensesio/lenses-serde-kafka-consumer-offsets
- Owner: lensesio
- License: apache-2.0
- Created: 2023-11-14T19:55:42.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-16T11:50:41.000Z (almost 2 years ago)
- Last Synced: 2024-05-07T18:26:54.105Z (over 1 year ago)
- Topics: kafka, lenses
- Language: Java
- Homepage: http://www.lenses.io
- Size: 24.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lenses Serde for Kafka consumer offset topic
Kafka contains a topic called `__consumer_offsets` that stores the offsets for each consumer group. This topic
stores the offsets committed by the consumers. Alongside the offset information the topic also stores the
metadata of the consumer group, such as the topic partitions assigned to the group, the consumer group id,etc.The Lenses Serde for Kafka consumer offset topic is a tool that allows you to only read the topic content.
## Build
To build:
```bash
mvn clean package
```To format the code run:
```bash
mvn com.coveo:fmt-maven-plugin:format
```To add license header, run:
```bash
mvn license:format
```