Saving money on Google Photos with Immich: Your own personal photo storage
41–50 of 137 posts
Re: Saving money on Google Photos with Immich: Your own personal photo storage
#42I love this project — I replaced Apple photos with it and it's been smooth sailing the whole way through. I have a public proxy sitting in front of it as well (which it makes easy by letting you configure external sharing URLs), so I can share out password-protected or public galleries and accept uploads without exposing it directly.
Any info on your public proxy setup?
Re: Saving money on Google Photos with Immich: Your own personal photo storage
#43I use Immich, but saved me money it has not. Unless you actually go through the "Backing up your photos" step, you _will_ lose your photos, it's just a matter of time. And if you're like most people, that is probably not acceptable. And by the time you do the math for the cost of your backups, you'll find Google Photos pricing is actually pretty good. Still worth it, imo.
I was in a paranoid psychotic state a few months back and I delete my whole photo library. About 40GB or my life for the last 15 years. Looking back now it is no big deal. My burden has lessened and i am still the same man I was.
Re: Saving money on Google Photos with Immich: Your own personal photo storage
#44Re: Saving money on Google Photos with Immich: Your own personal photo storage
#45Earlier quoted context omitted.
I was in a paranoid psychotic state a few months back and I delete my whole photo library. About 40GB or my life for the last 15 years. Looking back now it is no big deal. My burden has lessened and i am still the same man I was.
Of all my possessions, I would discard my photos last.
Re: Saving money on Google Photos with Immich: Your own personal photo storage
#46Re: Saving money on Google Photos with Immich: Your own personal photo storage
#47Re: Saving money on Google Photos with Immich: Your own personal photo storage
#48I love this project — I replaced Apple photos with it and it's been smooth sailing the whole way through. I have a public proxy sitting in front of it as well (which it makes easy by letting you configure external sharing URLs), so I can share out password-protected or public galleries and accept uploads without exposing it directly.
Any info on your public proxy setup?
Re: Saving money on Google Photos with Immich: Your own personal photo storage
#49- Thumbnails and ML vectors consumed hundreds of gigabytes. I had to move the library folder to a dedicated ZFS HDD (700GB currently).
- ImageMagick uses 20GB RAM per Nikon RAW file (this triggered the Linux OOM-killer)
- Container crashes filled the OS drive with 2GB _per_ core dump.
I added `ulimits: core: 0` to the `docker-compose.yml` to stop core dumps and increased VM RAM to 48GB. I also added the following `.env` tweaks:
```
NODE_OPTIONS=--max-old-space-size=8192
VIPS_DISC_THRESHOLD=750m
VIPS_CONCURRENCY=1
MAGICK_MEMORY_LIMIT=8G
MAGICK_MAP_LIMIT=4G
```
Also, make sure to limit max logging size in `docker-compose.yml` - this alone cleared up 17GB of logs that were generated in just 4 hours for me: ```yaml
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
```
Then, setup offsite backups with sanoid/syncoid zfs snapshots in pull zero-trust-mode (next evening project :)Re: Saving money on Google Photos with Immich: Your own personal photo storage
#50I use Immich, but saved me money it has not. Unless you actually go through the "Backing up your photos" step, you _will_ lose your photos, it's just a matter of time. And if you're like most people, that is probably not acceptable. And by the time you do the math for the cost of your backups, you'll find Google Photos pricing is actually pretty good. Still worth it, imo.