HSG-MCS-HS21_tapas/doc/architecture/decisions/0003-seperate-service-for-roster.md
2021-11-21 19:45:16 +01:00

1.4 KiB

3. Separate service for the Roster

Date: 2021-11-21

Status

Accepted

Context

The roster acts as an orchestrator for the system. It communicates directly with the task list, the executors, the executor pool, and the auction house. It handles the assignment of a task to a corresponding and available executor, keeps track of all the connections between tasks and executors, and communicates the status of tasks and executors to other services.

Decision

The Roster domain will be its own service. The Roster service will be a central point in our application. It will have most of the workflow logic in it and will communicate with all the different services. Therefore, other services can focus on their business logic and be largely ignorant of the overall workflow. The code of the assignment will change more often than the code of the other services, thus having the assignment service split from the other makes it more deployable.

Consequences

Having this system as its own service will reduce the fault tolerance because the assignment service can be the single point of failure. We can mitigate this risk by implementing (server) replication and/or having an event driven communication with persisting messages. Therefore, all other services can run independently, and the assignment service can recover from a crash. Additionally, we need to ensure a high level of interoperability, since the roster has to communicate with all other parts of the system.