ThorsHammer
IImmich
•Created by ThorsHammer on 1/15/2025 in #help-desk-support
Immich reporting "Unable to set queue concurrency, worker not found..."
I do not know when exactly this issue started, but I had been on 1.123.0 for the last few weeks and everything was seemingly working fine. I have a Load Balancer setup through NGINX and the machine learning settings have been updated to point directly to it. I have 2 other VM's on other machines that are running just the machine learning containers and it was working as expected. If I try to set or change the Job concurrency settings, it gives me the errors mentioned. Additionally, if I now try to kick off a job, I get significantly more errors, seemingly for each of the files that it tries to perform work on. (errors attached)
I checked the logs today for Immich and started seeing the below errors. I upgraded Immich to 1.124.2 but am continuing to see the following errors regarding the jobs.
Here is my NGINX load balancer config:
resolver 10.0.1.52 10.0.1.53;
upstream immich_ml_containers {
server prd-docker08:3003 max_fails=3 fail_timeout=15s;
# server prd-docker09:3003 max_fails=3 fail_timeout=15s; ## main immich server # Disabled to ensure main server does not go down
server prd-docker11:3003 max_fails=3 fail_timeout=15s;
# server prd-docker13:3003 max_fails=3 fail_timeout=15s;
# server lovo:3003 max_fails=3 fail_timeout=15s;
# server dominator:3003 max_fails=3 fail_timeout=15s;
}
server {
listen 80;
location / {
proxy_pass http://immich_ml_containers;
}
}
docker-compose.yaml attahced
9 replies