Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 987 Bytes

File metadata and controls

25 lines (17 loc) · 987 Bytes

Kafka Sample

This project demonstrates a practical example of Apache Kafka implementation. It showcases how to:

  • Produce Messages: Send data to Kafka topics
  • Consume Messages: Read and process data from Kafka topics
  • Topic Management: Create and configure Kafka topics
  • Error Handling: Implement robust error handling patterns

Purpose

This sample application serves as a learning resource and reference implementation for integrating Apache Kafka into your projects. It covers fundamental producer-consumer patterns and best practices for message streaming.

Getting Started

  1. Ensure Kafka is running locally or accessible via network
  2. Configure connection settings in the application
  3. Run the producer to send sample messages
  4. Run the consumer to receive and process messages

Project Structure

  • /producers - Message producer implementations
  • /consumers - Message consumer implementations
  • /config - Configuration files and settings