I have a second instance that handles additional machine learning jobs and I added the ip to the api instance but I keep getting these random WARNing logs
[Nest] 253 - 04/17/2025, 11:56:35 AM WARN [Microservices:MachineLearningRepository] Machine learning request to "http://192.168.1.226:3003" failed: fetch failed
The second instance ip is http://192.168.1.226:3003 and when I visit that URL I get
{"message":"Immich ML"}
and these are my machine learning container settings
immich-machine-learning:
container_name: immich_machine_learning
# For hardware acceleration, add one of -[armnn, cuda, rocm, openvino, rknn] to the image tag.
# Example tag: ${IMMICH_VERSION:-release}-cuda
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}-openvino
extends:
# uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
file: hwaccel.ml.yml
service: openvino # set to one of [armnn, cuda, rocm, openvino, openvino-wsl, rknn] for accelerated inference - use the `-wsl` version for WSL2 where applicable
volumes:
- model-cache:/cache
env_file:
- .env
restart: always
healthcheck:
disable: false
ports:
- 3003:3003
.