climberger / flowing-retail

Sample application demonstrating an order fulfillment system decomposed into multiple independant components (e.g. microservices). Showing concrete implementation alternatives using e.g. Java, Spring Boot, Apache Kafka, Camunda, Zeebe, ...

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Flowing Retail

This sample application demonstrates a simple order fulfillment system decomposed into multiple independant components (e.g. microservices).

There is code for multiple implementation alternatives to allow a broad audience to undestand the code or to compare alternatives. The table below lists these alternatives.

The example respects learnings from Domain Driven Design (DDD), Event Driven Architecture (EDA) and Microservices (µS) and should give you a very hands-on access to certain topics.

Note: The code was written in order to be explained. Hence I favored simplified code or copy & paste over production-ready code with generic solutions. Don't consider the coding style best practice! It serves the purpose to have easily explainable code.

Flowing retail simulates a very easy order fulfillment system:

Events and Commands

Architecture and implemenation alternatives

The most fundamental choice is to select the communication mechanism:

  • Apache Kafka as event bus (could be easily changed to messaging, e.g. RabbitMQ):
  • REST communication between Services
    • This example also shows how to do stateful resilience patterns like stateful retries leveraging a workflow engine
  • Zeebe broker doing work distribution

Having chosen that your probably can choose the workflow engine:

  • Camunda BPM 7
  • Zeebe (if you are interessted why Zeebe is listed in the communication mechanism as well as workflow engine please look into the Zeebe example readme)

and the programming language:

  • Java
  • Go

Storyline

Flowing retail simulates a very easy order fulfillment system. The business logic is separated into the services shown above (shown as context map).

Long running services and orchestration

Some services are long running in nature, as e.g. the payment service ask customers to update expired credit cards. Hence a workflow engine is used to persist and control these long running interactions.

Workflows live within service boundaries

An important thought is, that this state machine (or workflow engine in this case) is a library used within one service. If different services need a workflow engine they potentally run multiple engines. This way it is an autonomous team decision if they want to use some framework and which one:

Events and Commands

Resilience patterns for synchronous communication

Depending on the means of communication (e.g. messaging vs. blocking synchronous REST calls) you also have to tackle quite basic communication problems, e.g. by stateful retries.

V1

Links and background reading

About

Sample application demonstrating an order fulfillment system decomposed into multiple independant components (e.g. microservices). Showing concrete implementation alternatives using e.g. Java, Spring Boot, Apache Kafka, Camunda, Zeebe, ...

License:Apache License 2.0


Languages

Language:Java 77.4%Language:C# 6.8%Language:Smarty 5.0%Language:Go 3.4%Language:HTML 2.7%Language:Batchfile 2.3%Language:JavaScript 1.6%Language:Dockerfile 0.7%