All Projects → pawelkaczor → Ddd Leaven Akka V2

pawelkaczor / Ddd Leaven Akka V2

Licence: mit
Sample e-commerce system #Microservices #Akka #Reactive-DDD #CQRS

Programming Languages

scala
5932 projects

Projects that are alternatives of or similar to Ddd Leaven Akka V2

Akka Ddd
Akka CQRS/ES framework
Stars: ✭ 330 (-8.84%)
Mutual labels:  microservices, event-sourcing, akka, ddd, cqrs
Akkatecture
a cqrs and event sourcing framework for dotnet core using akka.net
Stars: ✭ 414 (+14.36%)
Mutual labels:  microservices, event-sourcing, akka, ddd, cqrs
Nestjs Cqrs Starter
NestJS CQRS Microservices Starter Project
Stars: ✭ 80 (-77.9%)
Mutual labels:  microservices, event-sourcing, ddd, cqrs
Go Api Boilerplate
Go Server/API boilerplate using best practices DDD CQRS ES gRPC
Stars: ✭ 373 (+3.04%)
Mutual labels:  microservices, event-sourcing, ddd, cqrs
Ultimate Backend
Multi tenant SaaS starter kit with cqrs graphql microservice architecture, apollo federation, event source and authentication
Stars: ✭ 978 (+170.17%)
Mutual labels:  microservices, event-sourcing, ddd, cqrs
Kreta
Modern project management solution
Stars: ✭ 177 (-51.1%)
Mutual labels:  microservices, event-sourcing, ddd, cqrs
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 (+95.58%)
Mutual labels:  microservices, event-sourcing, ddd, cqrs
Cronus
Cronus is a lightweight framework for building event driven systems with DDD/CQRS in mind
Stars: ✭ 139 (-61.6%)
Mutual labels:  microservices, event-sourcing, ddd, cqrs
Event Sourcing Jambo
An Hexagonal Architecture with DDD + Aggregates + Event Sourcing using .NET Core, Kafka e MongoDB (Blog Engine)
Stars: ✭ 159 (-56.08%)
Mutual labels:  microservices, event-sourcing, ddd, cqrs
Digital Restaurant
DDD. Event sourcing. CQRS. REST. Modular. Microservices. Kotlin. Spring. Axon platform. Apache Kafka. RabbitMQ
Stars: ✭ 222 (-38.67%)
Mutual labels:  microservices, event-sourcing, ddd, cqrs
Dotnet New Caju
Learn Clean Architecture with .NET Core 3.0 🔥
Stars: ✭ 228 (-37.02%)
Mutual labels:  microservices, event-sourcing, ddd, cqrs
firebase-event-sourcing
Event Sourcing + CQRS + DDD for Firebase
Stars: ✭ 14 (-96.13%)
Mutual labels:  cqrs, ddd, event-sourcing
Event Sourcing Cqrs Examples
Event Sourcing and CQRS in practice.
Stars: ✭ 265 (-26.8%)
Mutual labels:  event-sourcing, ddd, cqrs
Eventually Rs
Event Sourcing for Rust
Stars: ✭ 277 (-23.48%)
Mutual labels:  event-sourcing, ddd, cqrs
micro
Functional prooph for microservices
Stars: ✭ 53 (-85.36%)
Mutual labels:  cqrs, ddd, event-sourcing
eventuous
Minimalistic Event Sourcing library for .NET
Stars: ✭ 236 (-34.81%)
Mutual labels:  cqrs, ddd, event-sourcing
stem
Event sourcing framework based on ZIO and pluggable runtime (currently working with Akka cluster)
Stars: ✭ 22 (-93.92%)
Mutual labels:  akka, cqrs, event-sourcing
Aggregates.net
.NET event sourced domain driven design model via NServiceBus and GetEventStore
Stars: ✭ 261 (-27.9%)
Mutual labels:  microservices, ddd, cqrs
CQELight
CQELight is an entreprise grade extensible and customisable framework for creating software with CQRS, DDD & Event Sourcing patterns
Stars: ✭ 21 (-94.2%)
Mutual labels:  cqrs, ddd, event-sourcing
ftgogo
FTGOGO - event-driven architecture demonstration application using edat
Stars: ✭ 82 (-77.35%)
Mutual labels:  cqrs, ddd, event-sourcing

ddd-leaven-akka-v2Build Status

Join Akka-DDD chat at https://gitter.im/pawelkaczor/akka-ddd

Sample e-commerce application built on top of Akka and EventStore following a CQRS/DDDD-based approach.

Overview

This sample e-commerce system has unique set of properties. It is:

  • responsive, resilient, elastic 👏,
  • incorporates a SOA, EDA, and Microservice architecture 👌,
  • incorporates CQRS/DDDD architectural patterns 👍,
  • supporting long-running business processes (eg. payment deadlines) 💪, and
  • developer-friendly (implemented in Scala, ~1500 lines of code) 😄.

All these capabilities are obviously supported by the underlying technology stack, which includes:

  • Akka - actor-based, reactive middleware implemented in Scala,

  • Akka HTTP - HTTP server build upon Akka Stream (Akka's implementation of Reactive Streams Specification),

  • Akka Persistence - infrastructure for building durable (event sourced) actors, which has a pluggable journal,

  • Event Store - scalable, highly available event store with akka-persistence journal implementation. Provides engine for running user-defined projections (javascript functions) over single or multiple event streams. Projections allow the system to group or combine events into new event streams that can represent domain-level journals such as office journals (events grouped by emitter (Aggregate Root) class) or business process journals (events related to concrete business process). Domain journals are topic of interest for services such as:

    • view updaters - responsible for updating the read side of the system
    • receptors - allow event-driven interaction between subsystems (event choreography), including long-running processes (sagas),

❗️ Both view uppdaters and receptors are operating within non-blocking back-pressured event processing pipeline ❗️

  • Akka-DDD - framework containing glue-code and all building blocks

Subsystems

The system currently consists of the following subsystems:

  • Sales/Reservation - responsible for creating and confirming Reservations
  • Invoicing - responsible for the invoicing
  • Shipping - responsible for the goods delivery
  • Headquarters - executes the Ordering Process (see below)

Ordering Process

Ordering Process

Subsystem components

Each subsystem is divided into write and read side, each side containing back-end and front-end application:


write-back

Backend cluster node hosting Aggregate Roots, Receptors and Process Managers (Sagas).

write-front

HTTP server forwarding commands to backend cluster.


read-back

View update service that consumes events from event store and updates view store (PostgreSQL database).

read-front

HTTP server providing rest endpoint for accessing view store.

Running and testing the system

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].