amitayh / event-sourcing-kafka-streams

Demo code from my talk @ Codemotion Milan 2018 - "Building event sourced systems with Kafka Streams"

Home Page:https://speakerdeck.com/amitayh/building-event-sourced-systems-with-kafka-streams

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Event Sourcing with Kafka Streams

This is a POC for using Kafka Streams as a backbone for an event sourced system.

Running the project locally

You can either run the project with Docker Compose, or run everything on your host.

Prerequisites

  1. Install sbt (help)

  2. Build the project:

    $ sbt assembly
    

Run with Docker Compose

  1. Update your host IP address in .env

  2. Build images

    $ docker-compose build
    
  3. Start the containers

    $ docker-compose up
    

Run on host

Setup

  1. Run Zookeeper / Kafka (help)

  2. Run MySQL (help)

  3. Install the schema

  4. Create the topics (edit config/local.properties as needed):

    $ bin/setup.sh config/local.properties
    

Running

  1. Run the command handler:

    $ bin/commandhandler.sh config/local.properties
    
  2. Run the invoices list projector:

    $ bin/projector.sh config/local.properties
    
  3. Run the web server:

    $ bin/web.sh config/local.properties
    

If everything worked, you should be able to see the app running at http://localhost:8080/index.html

License

Copyright © 2018 Amitay Horwitz

Distributed under the MIT License

About

Demo code from my talk @ Codemotion Milan 2018 - "Building event sourced systems with Kafka Streams"

https://speakerdeck.com/amitayh/building-event-sourced-systems-with-kafka-streams

License:MIT License


Languages

Language:Scala 66.5%Language:JavaScript 27.4%Language:HTML 3.7%Language:Shell 1.5%Language:Dockerfile 0.4%Language:CSS 0.4%