Immich isn't prioritising the right machine learning URLs

Hi, so I'm running immich in k8s using the helm chart. I have a more powerful desktop PC that I want to offload machine learning tasks to, so I set the following in the helm chart config:
configuration:
machine-learning:
enabled: true
url:
- http://world-trade-centre-1.artichoke.network:3003
- http://192.168.188.167:3003
- http://immich-machine-learning:3003
configuration:
machine-learning:
enabled: true
url:
- http://world-trade-centre-1.artichoke.network:3003
- http://192.168.188.167:3003
- http://immich-machine-learning:3003
The first item is my powerful desktop, which should be accessible through it's local DNS name, but if not, the second item is the same machine but just connecting directly via it's LAN IP. The third option is of course just the machine learning pod running in the k8s cluster. And if I click "download JSON" from the admin interface, I can see that these changes are properly reflected in the converted JSON config:
"machine-learning": {
"enabled": true,
"url": [
"http://world-trade-centre-1.artichoke.network:3003",
"http://192.168.188.167:3003",
"http://immich-machine-learning:3003"
]
},
"machine-learning": {
"enabled": true,
"url": [
"http://world-trade-centre-1.artichoke.network:3003",
"http://192.168.188.167:3003",
"http://immich-machine-learning:3003"
]
},
I tested these URLs by just running some curl commands to theose URLs on the host OS of the k8s node, which seemed to work. Curling the root just returns the default {"message":"Immich ML"} which looks good to me. However, if I look in the settings GUI, only the last machine learning URL is shown, as seen in the screenshot. To further prove that it is using the last URL, I see that the logs in the machine learning pod in the k8s cluster indicate it's in use. The CPU usage also goes up. So my question is, why is immich prioritising the last URL? The first two seem to be running and accessible, but immich is not using them. I'm using immich 1.125.7
No description
7 Replies
Immich
Immich3mo ago
:wave: Hey @Artichoke, Thanks for reaching out to us. Please carefully read this message and follow the recommended actions. This will help us be more effective in our support effort and leave more time for building Immich :immich:. References - Container Logs: docker compose logs docs - Container Status: docker ps -a docs - Reverse Proxy: https://immich.app/docs/administration/reverse-proxy - Code Formatting https://support.discord.com/hc/en-us/articles/210298617-Markdown-Text-101-Chat-Formatting-Bold-Italic-Underline#h_01GY0DAKGXDEHE263BCAYEGFJA Checklist I have... 1. :ballot_box_with_check: verified I'm on the latest release(note that mobile app releases may take some time). 2. :ballot_box_with_check: read applicable release notes. 3. :ballot_box_with_check: reviewed the FAQs for known issues. 4. :ballot_box_with_check: reviewed Github for known issues. 5. :ballot_box_with_check: tried accessing Immich via local ip (without a custom reverse proxy). 6. :ballot_box_with_check: uploaded the relevant information (see below). 7. :ballot_box_with_check: tried an incognito window, disabled extensions, cleared mobile app cache, logged out and back in, different browsers, etc. as applicable (an item can be marked as "complete" by reacting with the appropriate number) Information In order to be able to effectively help you, we need you to provide clear information to show what the problem is. The exact details needed vary per case, but here is a list of things to consider: - Your docker-compose.yml and .env files. - Logs from all the containers and their status (see above). - All the troubleshooting steps you've tried so far. - Any recent changes you've made to Immich or your system. - Details about your system (both software/OS and hardware). - Details about your storage (filesystems, type of disks, output of commands like fdisk -l and df -h). - The version of the Immich server, mobile app, and other relevant pieces. - Any other information that you think might be relevant. Please paste files and logs with proper code formatting, and especially avoid blurry screenshots. Without the right information we can't work out what the problem is. Help us help you ;) If this ticket can be closed you can use the /close command, and re-open it later if needed.
Artichoke
ArtichokeOP3mo ago
I see in the immich-server logs, there are a few repeated entries like this:
[Nest] 7 - 02/01/2025, 11:26:48 PM WARN [Microservices:PersonService] Unknown keys found: {
"machine-learning": {
"enabled": true,
"url": [
"http://world-trade-centre-1.artichoke.network:3003",
"http://192.168.188.167:3003",
"http://immich-machine-learning:3003"
]
}
}
[Nest] 7 - 02/01/2025, 11:26:48 PM WARN [Microservices:PersonService] Unknown keys found: {
"machine-learning": {
"enabled": true,
"url": [
"http://world-trade-centre-1.artichoke.network:3003",
"http://192.168.188.167:3003",
"http://immich-machine-learning:3003"
]
}
}
Immich
Immich3mo ago
Successfully submitted, a tag has been added to inform contributors. :white_check_mark:
sogan
sogan3mo ago
The field should be urls instead of url
Artichoke
ArtichokeOP3mo ago
oh yeah thanks for pointing that out unfortunately i still get the same result can confirm "url" is now "urls" in the json config though
bo0tzz
bo0tzz3mo ago
Did you restart after changing the config & is it no longer logging that unknown keys error?
Artichoke
ArtichokeOP3mo ago
there is still an unknown keys error:
[Nest] 17 - 02/03/2025, 8:30:27 PM WARN [Api:SystemConfigService~pkkkkhq8] Unknown keys found: {
"machine-learning": {
"enabled": true,
"urls": [
"http://world-trade-centre-1.artichoke.network:3003",
"http://192.168.188.167:3003",
"http://immich-machine-learning:3003"
]
}
}
[Nest] 17 - 02/03/2025, 8:30:27 PM WARN [Api:SystemConfigService~pkkkkhq8] Unknown keys found: {
"machine-learning": {
"enabled": true,
"urls": [
"http://world-trade-centre-1.artichoke.network:3003",
"http://192.168.188.167:3003",
"http://immich-machine-learning:3003"
]
}
}
but I can't see what it finds wrong with that never mind i just figured it out machineLearning instead of machine-learning 🤦‍♂️

Did you find this page helpful?