https://github.com/jorgermduarte/poc-csharp-kafka-project
https://github.com/jorgermduarte/poc-csharp-kafka-project
api broker cluster consumer csharp kafka kafka-broker kafka-cluster kafka-consumer kafka-producer kafka-ui message producer
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jorgermduarte/poc-csharp-kafka-project
- Owner: jorgermduarte
- License: mit
- Created: 2023-10-12T15:23:16.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-12T18:13:23.000Z (almost 2 years ago)
- Last Synced: 2025-07-20T00:59:50.691Z (3 months ago)
- Topics: api, broker, cluster, consumer, csharp, kafka, kafka-broker, kafka-cluster, kafka-consumer, kafka-producer, kafka-ui, message, producer
- Language: C#
- Homepage:
- Size: 230 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kafka Simple Example
This is a sample project created for demonstration and learning purposes. It serves as a case in point to illustrate concepts and showcase functionalities in a development environment. The project includes a range of typical components and configurations that can be helpful as a starting point or reference.
## Running the producer app
```
docker compose up kafka-producer-app --build -d
```
## Urls> Producer: http://localhost:30001
> Consumer http://localhost:30000
> Kafka UI: http://localhost:8080
## Registering a message with the producer
When the kafka-producer-app is up and running execute the **register_message.http** file to add a message to the topic desired.
The topic will be automatic created if it does not exist.## View the data on the kafka ui

## Execute the consumer and watch the message be processed
```
docker compose up kafka-consumer-app --build -d
```