17 lines
501 B
Markdown
Raw Permalink Normal View History

2024-03-18 14:09:49 +04:00
# Saga Pattern Using Orkes Conductor
2024-03-18 14:07:47 +04:00
2024-03-18 14:09:49 +04:00
This is an example project showing how to build event driven applications using [Conductor](https://github.com/conductor-oss/conductor)
2024-03-18 14:07:47 +04:00
2024-03-18 14:09:49 +04:00
# Pre-requisites
1. Docker
2. Running conductor server
2024-03-18 14:07:47 +04:00
2024-03-18 14:09:49 +04:00
**Start the conductor server**
2024-03-18 14:07:47 +04:00
2024-03-18 14:09:49 +04:00
```shell
docker run --init -p 8080:8080 -p 1234:5000 conductoross/conductor-standalone:3.15.0
2024-04-03 23:55:47 +08:00
```
### Relevant Articles:
2024-04-24 15:41:25 +05:30
- [Saga Pattern in a Microservices Architecture](https://www.baeldung.com/orkes-conductor-saga-pattern-spring-boot)