-
Notifications
You must be signed in to change notification settings - Fork 6
feat: Queues for Kafka tutorial #110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
🎉 All Contributor License Agreements have been signed. Ready to merge. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR introduces a Kafka tutorial demonstrating the "Queues for Kafka" feature (KIP-932) and comparing consumption throughput between regular Kafka consumers and share consumers. The tutorial includes a complete producer/consumer application with configuration for both Confluent Cloud and local Docker environments.
- Implements producer and consumer applications to demonstrate share consumer performance benefits
- Provides comprehensive documentation with setup instructions for both cloud and local environments
- Includes build configuration and Docker setup for local testing
Reviewed Changes
Copilot reviewed 15 out of 15 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| settings.gradle | Adds the new queues-for-kafka module to the project |
| queues-for-kafka/build.gradle | Gradle build configuration with Kafka 4.1.0 dependencies and shadow jar plugin |
| queues-for-kafka/src/main/java/io/confluent/developer/*.java | Producer and consumer applications with argument parsing and thread management |
| queues-for-kafka/src/main/resources/*.properties | Configuration files for local and cloud Kafka deployments |
| queues-for-kafka/docker-compose.yml | Docker configuration for local Kafka 4.1.0 broker with share consumer support |
| queues-for-kafka/README.md | Comprehensive tutorial documentation with step-by-step instructions |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
queues-for-kafka/src/main/java/io/confluent/developer/ProducerAppArgParser.java
Outdated
Show resolved
Hide resolved
queues-for-kafka/src/main/java/io/confluent/developer/ConsumerThread.java
Show resolved
Hide resolved
1479803 to
1a52831
Compare
sandonjacobs
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.