Coder Social home page Coder Social logo

kafka-streams-course's Introduction

kafka streams course

Rock the jvm tutorial

To start the containers execute:

docker compose up -d

and then to go into the broker image cli we run:

docker exec -it broker bash

Produce discounts

kafka-console-producer
--topic discounts
--broker-list localhost:9092
--property parse.key=true
--property key.separator=, profile1,{"profile":"profile1","amount":0.5 } profile2,{"profile":"profile2","amount":0.25 } profile3,{"profile":"profile3","amount":0.15 }

Link discounts to users

kafka-console-producer
--topic discount-profiles-by-user
--broker-list localhost:9092
--property parse.key=true
--property key.separator=, Daniel,profile1 Riccardo,profile2

Produce orders

kafka-console-producer
--topic orders-by-user
--broker-list localhost:9092
--property parse.key=true
--property key.separator=, Daniel,{"orderId":"order1","user":"Daniel","products":[ "iPhone 13","MacBook Pro 15"],"amount":4000.0 } Riccardo,{"orderId":"order2","user":"Riccardo","products":["iPhone 11"],"amount":800.0}

Produce payments

kafka-console-producer
--topic payments
--broker-list localhost:9092
--property parse.key=true
--property key.separator=, order1,{"orderId":"order1","status":"PAID"} order2,{"orderId":"order2","status":"PENDING"}

Get results

kafka-console-consumer
--bootstrap-server localhost:9092
--topic paid-orders
--from-beginning

Expected: {"orderId":"order1","user":"Daniel","products":["iPhone 13","MacBook Pro 15"],"amount":2000.0}

kafka-streams-course's People

Contributors

adrianrafo avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.