Preview
3

Webinar #3 - Implementing Distributed Processes

3

Distributed processes with an event-driven approach embrace the impossibility of the two-phase commit in distributed transactions. Instead of trying to make a big transaction across modules and databases, it does a sequence of microtransactions.

Each operation is handled by the module that’s the source of truth and can make autonomous decisions. The distributed process is triggered by the event registered and published in the system, e.g. shopping cart confirmed.

Then another module can subscribe to it and take it from there. It knows what should be the next operation, e.g. initiating the order process. It sends a handled command, and business logic creates another event. This event is the trigger for the next step of the workflow. Such lasagne of event/command/event/command continues until the process is finished (with success or failure).

We modelled a simple but representative distributed process during the webinar: a guest group checkout. We started with Miro and modelling and then discussed the implementation.

See the reference implementation in:
- C#,
- Java.

Read also more in:
- Saga and Process Manager - distributed processes in practice,
- Event-driven distributed processes by example.

Webinars:

The full video is for paid subscribers

Architecture Weekly
Architecture Weekly
Authors
Oskar Dudycz