You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This demonstration features the seamless workflow orchestration with Netflix's Conductor with workers as Spring Boot apps and observability over the orchestration.
This is a project featuring seamless workflow orchestration with Netflix's Conductor framework with Spring Boot apps
registered as task workers that execute the tasks of configured workflows.
It also provides full observability of the system and workflows.
Design
flowchart TD
w[Worker]
c[Conductor]
w -->|Registers with| c;
u -->|Runs workflow| c;
c -->|Runs task| w;
p[Prometheus]
g[Grafana]
u[User]
subgraph Conductor Deployment
direction TB
c -->|Publishes metrics| p
p -->|Consumes metrics| g
end
g -->|View Dashboard| u;
Loading
Worker
This is a microservice that has the code to execute one or more task types.
Conductor
This is a service that is responsible for orchestrating the workflows.
Registers workers that are capable of running tasks.
This demonstration features the seamless workflow orchestration with Netflix's Conductor with workers as Spring Boot apps and observability over the orchestration.