HSG-MCS-HS21_tapas/doc/architecture/decisions/0002-seperate-service-for-executors-and-pool.md
2021-11-21 19:48:37 +01:00

1.7 KiB
Raw Blame History

2. Seperate service for Executors and Executor Pool

Date: 2021-11-21

Status

Accepted

Context

The executor pool has a complete list of all executors and knows if they are available or not, executors can execute tasks that match their type. The executors can therefore be part of the executor pool service, or each executor is a standalone service, as well as the executor pool.

Decision

We will use a separate microservice for each executor and one service for the executor pool. Having the executor pool and the executors as separate services would increase fault tolerance. If the executor pool goes down, the executors would stay online and execute their tasks without being affected by the executor pools outage. Likewise, if an executor goes down it does not impact other executors or the executor pool. Different executors can have different execution times and a different load. This means the executors scale differently. Thus, we need a separate service for each executor. Executors of different kinds will also scale differently than the executor pool and new executors of new types might be added at some point, further increasing the need for separate services to guarantee scalability and evolvability. New executors will be added/removed during runtime. Therefore, we need a high extensibility.

Consequences

Executors will be added/removed quite frequently, making the deployment of the system easier and less risk-prone if each executor is a separate service, also separated from the executor pool, which just keeps track of the executors and their status. However, having these separate services, the complexity might increase, and the testability of the system will decrease.