Kafka Sample Applications
Introduction
This post is a place holder to list some of the Kafka applications that I building or have build and provide their git repo link.
Java Application
This is a java application used to produce and consume events from a Kafka Broker.
The application produce events using an Avro schema.
The data generated is related to Product Orders.
The content of the Order are generated using javaFaker.
The Order created is as follow:
{
"id": "09526c9e-4ea7-4f05-8384-e1f52f5a6906",
"customer": {
"id": "d494fe5a-7a8a-4b08-80ee-cbed8b88a923",
"name": {
"firstname": "Sammy",
"lastname": "Gaylord"
},
"phone": {
"type": "landline",
"number": "056 2575 3421"
}
},
"creditcard": {
"number": "4185-7702-6511-1762",
"expiry": "09/26"
},
"products": [
{
"id": "ea40678f-bb6f-4193-b139-413e38e2a50a",
"description": "Small Bronze Watch",
"cost": "8.03",
"quantity": "1"
},
{
"id": "b79c777f-d5a0-482c-b300-9af964678515",
"description": "Aerodynamic Aluminum Table",
"cost": "93.14",
"quantity": "1"
}
],
"ordertime": "2024-12-17 11:57:29.245"
}
REPO Link
Kafka-Java-GenApp
Leave a comment