Your ML model cache volume is getting blown up during restart and the model is being re-downloaded during the first search post-restart. Either set it to a path somewhere on your storage, or ensure you’re not blowing up the dynamic volume upon restart.
In my case I changed this:
immich-machine-learning: ... volumes: - model-cache:/cache
To that:
immich-machine-learning: ... volumes: - ./cache:/cache
I no longer have to wait uncomfortably long when I’m trying to show off Smart Search to a friend, or just need a meme pronto.
MangoPenguin@lemmy.blahaj.zone 8 months ago
Doing a volume like the default docker-compose sets up should work fine, even through restarts. I’m not sure why your setup is blowing up the volume.
avidamoeba@lemmy.ca 8 months ago
Because I clean everything up that’s not explicitly on disk on restart:
MangoPenguin@lemmy.blahaj.zone 8 months ago
That’s wild! What advantage do you get from it, or is it just because you can for fun?
PieMePlenty@lemmy.world 8 months ago
Wow, you pull new images every time you boot up? Coming from a mindset of having rock solid stability, this scares me. You’re living your life on the edge my friend. I wish I could do that.
waitmarks@lemmy.world 8 months ago
But why?
why not just down up normally and have a cleanup job on a schedule to get rid of any orphans?