Comment on How can I reduce the amount of storage used by my Lemmy instance?

bdonvr@thelemmy.club ⁨10⁩ ⁨months⁩ ago

Firstly move pict-rs to object storage. My instance’s pict-rs uses 130GB alone. I pay less than $2/mo to put it on Cloudflare R2. Backblaze B2 might be even cheaper. Instructions: crates.io/crates/pict-rs#filesystem-to-object-sto…

If that doesn’t help enough and you’re comfortable with SQL, you can purge the unnecessary entries in received-activities.

Command: delete from received_activity where published < NOW() - INTERVAL ‘3 days’;

Then do a vacuum full received_activity; to reclaim the space.

This deleted 98 million entries for me and reduced my database size from 49GB to 20GB a week ago when ai started running out of space. No other effect as far as I can tell. Thanks @illecors@lemmy.cafe

source
Sort:hotnewtop