Helm value: worker.server.idleTime
Deprecated | 0.60.0 |
Removal | July, 2025 |
References | #6299 |
Impacts deployment of workers.
Workers handle asynchronous jobs and are automatically up-scaled if needed and removed again afterwards.
Removal was previously based on the idle time of a worker.
If within a certain time (worker.server.idleTime
) a job had been handled, additional workers had been spawn,
or, if no job had been run, the worker was removed.
This lead to unnecessary up- and downscales for cases in which a worker only needed a very short time to run a job and otherwise stayed idle.
The new value worker.server.idleLoadThreshold
has been introduced to give more control on when workers are scaled up or removed.
Please see the operation manual Setup and Maintenance/Scaling/Worker (Server) for more information.