All Projects → stackus → ftgogo

stackus / ftgogo

Licence: other
FTGOGO - event-driven architecture demonstration application using edat

Programming Languages

go
31211 projects - #10 most used programming language
Gherkin
971 projects

Projects that are alternatives of or similar to ftgogo

Eventflow.example
DDD+CQRS+Event-sourcing examples using EventFlow following CQRS-ES architecture. It is configured with RabbitMQ, MongoDB(Snapshot store), PostgreSQL(Read store), EventStore(GES). It's targeted to .Net Core 2.2 and include docker compose file.
Stars: ✭ 131 (+59.76%)
Mutual labels:  cqrs, sagas, ddd, event-sourcing, event-driven
Akkatecture
a cqrs and event sourcing framework for dotnet core using akka.net
Stars: ✭ 414 (+404.88%)
Mutual labels:  cqrs, ddd, event-sourcing, event-driven
Pitstop
This repo contains a sample application based on a Garage Management System for Pitstop - a fictitious garage. The primary goal of this sample is to demonstrate several software-architecture concepts like: Microservices, CQRS, Event Sourcing, Domain Driven Design (DDD), Eventual Consistency.
Stars: ✭ 708 (+763.41%)
Mutual labels:  cqrs, ddd, event-sourcing, event-driven
awesome-talks
Awesome talks about event sourcing, cqrs, microservices, funcional programming ...
Stars: ✭ 23 (-71.95%)
Mutual labels:  cqrs, ddd, event-sourcing, event-driven
DDD
Domain-Driven Design example
Stars: ✭ 116 (+41.46%)
Mutual labels:  cqrs, ddd, hexagonal-architecture, ports-and-adapters
kingdom-python-server
Modular, cohesive, transparent and fast web server template
Stars: ✭ 20 (-75.61%)
Mutual labels:  ddd, event-driven, hexagonal-architecture, ports-and-adapters
Rails event store
A Ruby implementation of an Event Store based on Active Record
Stars: ✭ 947 (+1054.88%)
Mutual labels:  cqrs, ddd, event-sourcing, event-driven
Event Sourcing Castanha
An Event Sourcing service template with DDD, TDD and SOLID. It has High Cohesion and Loose Coupling, it's a good start for your next Microservice application.
Stars: ✭ 68 (-17.07%)
Mutual labels:  cqrs, ddd, event-sourcing, event-driven
Goes
Go Event Sourcing made easy
Stars: ✭ 144 (+75.61%)
Mutual labels:  cqrs, ddd, event-sourcing, event-driven
Php Ddd Example
🐘🎯 Hexagonal Architecture + DDD + CQRS in PHP using Symfony 5
Stars: ✭ 1,960 (+2290.24%)
Mutual labels:  cqrs, ddd, monorepo, hexagonal-architecture
Dotnet New Caju
Learn Clean Architecture with .NET Core 3.0 🔥
Stars: ✭ 228 (+178.05%)
Mutual labels:  cqrs, ddd, event-sourcing, event-driven
Event Sourcing Jambo
An Hexagonal Architecture with DDD + Aggregates + Event Sourcing using .NET Core, Kafka e MongoDB (Blog Engine)
Stars: ✭ 159 (+93.9%)
Mutual labels:  cqrs, ddd, event-sourcing, event-driven
Watermill
Building event-driven applications the easy way in Go.
Stars: ✭ 3,504 (+4173.17%)
Mutual labels:  cqrs, sagas, event-sourcing, event-driven
e-shop
Sample Spring Cloud microservices e-shop.
Stars: ✭ 48 (-41.46%)
Mutual labels:  cqrs, ddd, event-sourcing
node-cqrs-saga
Node-cqrs-saga is a node.js module that helps to implement the sagas in cqrs. It can be very useful as domain component if you work with (d)ddd, cqrs, eventdenormalizer, host, etc.
Stars: ✭ 59 (-28.05%)
Mutual labels:  cqrs, sagas, event-sourcing
incubator-eventmesh
EventMesh is a dynamic event-driven application runtime used to decouple the application and backend middleware layer, which supports a wide range of use cases that encompass complex multi-cloud, widely distributed topologies using diverse technology stacks.
Stars: ✭ 939 (+1045.12%)
Mutual labels:  cqrs, event-sourcing, event-driven
financial
POC de uma aplicação de domínio financeiro.
Stars: ✭ 62 (-24.39%)
Mutual labels:  cqrs, event-sourcing, hexagonal-architecture
educational-platform
Modular Monolith Java application with DDD
Stars: ✭ 124 (+51.22%)
Mutual labels:  cqrs, ddd, hexagonal-architecture
commander
Build event-driven and event streaming applications with ease
Stars: ✭ 60 (-26.83%)
Mutual labels:  cqrs, event-sourcing, event-driven
es-emergency-call
Struggling with CQRS, A+ES, DDD? We can help you!
Stars: ✭ 26 (-68.29%)
Mutual labels:  cqrs, ddd, event-sourcing

ftgogo - event-driven architecture demonstration application

Introduction

ftgogo (food-to-gogo) is a Golang implementation of the FTGO application described in the book "Microservice Patterns" by Chris Richardson. A library edat was developed to provide for Golang many of the solutions that Eventuate, the framework used by FTGO, provides for Java.

Purpose

This repository exists to demonstrate the patterns and processes involved when constructing a distributed application using event-driven architecture.

This repository started as a Golang clone of the FTGO demonstration application but as time goes on it will grow to demonstrate additional microservice patterns and techniques.

What you'll find in this demonstration

  1. Architecture
    1. Clean Architecture
    2. Code Layout
    3. Services
  2. Design
    1. Event-Driven Architecture
      1. Sagas
      2. Outbox Pattern
      3. Message Deduplication
    2. CQRS
    3. Event Sourcing
    4. Backend-For-Frontend
    5. GRPC and Protocol Buffers
    6. Testing
      1. Specifications / Acceptance Tests
      2. Integration Tests
      3. Unit Tests
  3. Other
    1. Tracing
    2. Metrics/Instrumentation
    3. Mono-repository
    4. Shared code
    5. Monolith
    6. Type Registration
  4. Changes from FTGO

Prerequisites

Docker - Everything is built and run from a docker compose environment.

Execution

Open a command prompt and then execute the following docker command

NOTE: The first time you bring everything up the init script for Postgres will run automatically. The services will crash-loop for a bit because of that. Eventually things will stabilize.

Mac, Linux, and Windows Users

docker-compose up

Use Ctrl-C to stop all services.

Running individual services

Not recommended but each service can be run using go run .. You'll need to use an .env file or set some environment variables to properly run the service.

Use go run . --help to see all the flags and environment variables that can be set.

Architecture

Clean Architecture

Hexagonal Architecture Diagram

The colors used for each component in the above diagram align with the ring colors used in clean architecture diagram.

In this implementation of clean architecture I am working mainly with Hexagonal Architecture or Ports & Adapters terms from those methodologies.

  • Primary Adapters (Driver Adapters)
    • Adapter implementations are in /internal/handlers
    • Port interfaces are in /internal/application/service.go
    • Primary Adapters USE the interface the application IMPLEMENTS
  • Secondary Adapters (Driven Adapters)
    • Adapter implementations are in /internal/adapters
    • Port interfaces are in /internal/application/ports
    • Secondary Adapters IMPLEMENT the interface the application USES

Bringing the interfaces and implementations together looks about the same for all services. Below is an example from the Consumer Service.

package main

import (
    "github.com/stackus/ftgogo/consumer/internal/adapters"
    "github.com/stackus/ftgogo/consumer/internal/application"
    "github.com/stackus/ftgogo/consumer/internal/domain"
    "github.com/stackus/ftgogo/consumer/internal/handlers"
    "github.com/stackus/ftgogo/serviceapis"
    "shared-go/applications"
)

func main() {
    svc := applications.NewService(initService)
    if err := svc.Execute(); err != nil {
        panic(err)
    }
}

func initService(svc *applications.Service) error {
    serviceapis.RegisterTypes()
    domain.RegisterTypes()

    // Driven
    consumerRepo := adapters.NewConsumerRepositoryPublisherMiddleware(
        adapters.NewConsumerAggregateRepository(svc.AggregateStore),
        adapters.NewConsumerEntityEventPublisher(svc.Publisher),
    )

    app := application.NewServiceApplication(consumerRepo)

    // Drivers
    handlers.NewCommandHandlers(app).Mount(svc.Subscriber, svc.Publisher)
    handlers.NewRpcHandlers(app).Mount(svc.RpcServer)

    return nil
}

Code Layout

  • Services exist within a capability or domain folder. Within that folder you'll find the following layout.
    /"domain"        - A capability or domain that is a subdomain in the larger application domain
    |-/cmd           - Parent for servers, cli, and tools that are built using the code in this domain
    | |-/cdc         - CDC (Change Data Capture) server. If the service publishes messages it will also have this
    | |-/service     - Primary service for this capability
    |-/internal      - Use the special treatment of "internal" to sequester our code from the other services
      |-/adapters    - Driven Adapter implementations.
      |-/application - Application core folder. Processes under this will implement business rules and logic
      | |-/commands  - CQRS commands. Processes that apply some change to the subdomain
      | |-/ports     - Application interfaces that the Driven Adapters implement.
      | |-/queries   - CQRS queries. Processes that request information from the subdomain
      | |-service.go - Application interface and implementation that is used by the handlers, the Driver Adapters.
      |-/domain      - The definitions and the domain rules and logic
      |-/handlers    - Driver Adapter implementations
    

Regarding the layout

This layout is an example of organizing code to achieve clean architecture. You do not need to use this layout to have implemented clean architecture with Go. I've made and am likely to make more minor adjustments to this layout and do not consider it perfect or the "one".

Services

FTGOGO Architecture

Downstream Services

CDC Services

Backend-For-Frontend Services

Design

Event-Driven Architecture

Asynchronous messaging handles all inter-service communication. The exception is the communication from the BFF/UI layer to the downstream services.

Sagas

The same three sagas found in FTGO have been implemented here in the order-service.

  • CreateOrderSaga
    • saga responsible for the creation of a new order
      Steps
  • CancelOrderSaga
    • saga responsible for the cancelling and releasing of order resources like tickets and accounting reserves
      Steps
  • ReviseOrderSaga
    • saga responsible for the processing the changes made to an open order
      Steps

Outbox Pattern

An implementation of the outbox pattern can be used to ensure all messages arrive at their destinations. It provides the solution to the dual write problem. Any service that publishes messages is actually publishing the message into the database. A CDC sibling service then processes the messages from the database and publishes the message into NATS Streaming. This process provides at-least-once delivery.

Outbox Pattern Diagram

Message Deduplication

TODO

This will be a new feature added to the edat library.

CQRS

Each service divides the requests it receives into commands and queries. Using a simple design described here by Three Dots Labs all of our handlers can be setup to use a command or query.

This is a very limited in scope implementation of CQRS. It is valid in that we have two things where before we had one. Command and query have been segregated to separate responsibilities.

The Order History Service provides an order by consumer read-model.

Event Sourcing

Several services use event sourcing and keep track of the changes to aggregates using commands and recorded events. Check out the Order aggregate for an example.

Backend-For-Frontend (BFF)

The project now demonstrates the backend-for-frontend pattern with the addition of a Customer-Web service. These types of services are purpose built API Gateways that serve a specific client experience.

The addition of these BFFs also provide a place to implement cross-cutting concerns such as authorization and authentication. I've tried to add demonstrations of the capabilities of what a BFF might do for a microservices application.

GRPC and Protocol Buffers

With the addition of the first BFF, GRPC is now used in place of HTTP by the handlers. GRPC is a subjectively better choice for communication between your applications Api Gateway or BFF than using HTTP with REST. The move to GRPC was done leaving the contracts previously used by HTTP endpoints unchanged as much as possible.

Testing

Specifications / Acceptance Tests

Executable specifications written in Gherkin have been added to most services. You can find these in the /features directories.

These specifications can be executed using the godog Cucumber tool. The Makefile target run-feature-tests can be used to run all the specifications across all services. Below is an example output from running the Consumer Registration specification.

Feature: Register Consumer

    Scenario: Consumers can be registered            # features\register_consumer.feature:4
        When I register a consumer named "Able Anders" # register_consumer.go:15 -> *FeatureState
        Then I expect the command to succeed           # feature_state.go:72 -> *FeatureState

    Scenario: Consumers must be registered with a name                              # features\register_consumer.feature:8
        When I register a consumer named ""                                           # register_consumer.go:15 -> *FeatureState
        Then I expect the command to fail                                             # feature_state.go:64 -> *FeatureState
        And the returned error message is "cannot register a consumer without a name" # feature_state.go:80 -> *FeatureState

    Scenario: Duplicate consumer names do not cause conflicts # features\register_consumer.feature:13
        Given I register a consumer named "Able Anders"         # register_consumer.go:15 -> *FeatureState
        When I register another consumer named "Able Anders"    # register_consumer.go:15 -> *FeatureState
        Then I expect the command to succeed                    # feature_state.go:72 -> *FeatureState

Integration Tests

TODO

Unit Tests

TODO

Other

Tracing

New requests into the system will be given value that is put into three containers RequestID, a CorrelationID, and a CausationID.

At each request boundary, -> HTTP, or -> GRPC, or -> Message, a new RequestID is generated, if a previous RequestID exists in the current context it is moved into the CausationID.

  • At each boundary a new RequestID is generated
  • The CausationID is set to the previous RequestID
  • The CorrelationID value remains the same into every new request that results from the original request.

These three values can be used to build a map of a request through the system.

The tracking and management of these IDs is a feature of edat.

Metrics/Instrumentation

Prometheus metrics for each service are available at http://localhost:[port]/metrics. The order-service has a few additional counters. See the order-service code for more information.

Mono-repository

This demonstration application is a mono-repository for the Golang services. I chose to use as few additional frameworks as possible, so you'll find there is also quite a bit of shared code in packages under /shared-go

Shared Code

/shared-go is named the way it is because I intended to build one of the services in another language. I didn't but left the name the way it was.

This code exists simply to make it easier for me to build this demonstration. Applying DRY to microservices is a code-smell.

Monolith

Still a work-in-progress.

Industry blogs , books, and talks typically all suggest applications start with a monolith, single deployable application, before developing an application using microservices. Whether you have a legacy monolith application or are starting a new application the last step before microservices is to refactor or design the monolith to be loosely-coupled.

The service capabilities can all be run together in a monolith to demonstrate what that might look like. It'll at beat represent the final form of a monolith that has been broken up by feature. This kind of monolith has several names. The "Majestic Monolith", the "Loosely-Coupled Monolith", or the "Modular Monolith".

Note: The monolith came into existence after the development of the microservices. It may not give the best example of what a monolith might look like just before switching to microservices.

Type Registration

Commands, Events, Snapshots, and other serializable entities get registered in groups in each /"domain"/internal/domain/register_types.go and in the child packages of serviceapis. This type registration is a feature of edat/core and is not unique to this application.

The purpose of doing this type registration is to avoid boilerplate marshalling and unmarshalling code for every struct.

Changes from FTGO

I intend for this demonstration to exist as a faithful Golang recreation of the original. If a difference exists either because of opinion or is necessary due of the particulars of Go, I will try my best to include them all here.

Changed

  • I've kept most API requests and responses the same "shape" but routes are prefixed with /api and use snake_case instead of camelCase for property names.
  • In FTGO many apis and messages that operated on Tickets used the OrderID as the TicketID. I could have done the same but chose to let the Ticket aggregates use their own IDs. The TicketID was then included in responses and messages where it was needed.
  • Order-History is not using DynamoDB. The purpose of Order-History is to provide a "view" or "query" service, and it should demonstrate using infrastructure best suited for that purpose. For now, I'm using Postgres but intend to use Elasticsearch soon.
  • The OrderService->createOrder method I felt was doing too much. The command implementation creates the order like before, but the published entity event that results from that command is now the catalyst for starting the CreateOrderSaga.
  • To better demonstrate a "Backend-For-Frontend", orders take a consumers addressId. Consumers will register one or more addresses now. The customer-web service uses data from another service to complete the modified CreateOrder command.

Missing

  • Tests. Examples of testing these services. Both Unit and Integration are still missing but executable specifications have been added.
  • Api-Gateway. I haven't gotten around to creating the gateway. "Backend-for-Frontend"s have been added.

Out Of Scope

Just like the original the following are outside the scope of the demonstration.

  • Logins & Authentication The "Backend-for-Frontend"s have implemented this in a very insecure way and only for demonstration purposes.
  • Accounts & Authorization The "Backend-for-Frontend"s have implemented this in a very insecure way and only for demonstration purposes.
  • AWS/Azure/GCP or any other cloud deployment instructions or scripts
  • Tuning guidance
  • CI/CD guidance
  • Chaos Testing - although feel free to terminate a service or cdc process for a bit and see if it breaks (it shouldn't)

Quick Demo

DEPRECATED

TODO: Rewrite. The instructions below no longer work with the changes made to the demo, primarily from the addition of the BFFs.

Postman can be used to load the api collection for an easy demo.

With the application running using one of the commands above you can make the following calls to see the processes, events, and entities involved.

  • Register Consumer
  • Sign In Consumer
  • Add Consumer Address
  • Create Order
  • Consumer Service: Register Consumer
  • Restaurant Service: Create Restaurant
  • Order: Create Order

Loading FTGOGO.postman_collection.json into Postman will provide pre-built calls with semi-random data that can be used to test the above.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

No warranties

From time to time I expect to make improvements that may be breaking. I provide no expectation that local copies of this demonstration application won't be broken after fetching any new commit(s). If it does fail to run; simply remove the related docker volumes and re-run the demonstration.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].