Welcome to today’s daily kōrero!

Anyone can make the thread, first in first served. If you are here on a day and there’s no daily thread, feel free to create it!

Anyway, it’s just a chance to talk about your day, what you have planned, what you have done, etc.

So, how’s it going?

  • @DaveOPMA
    link
    23 months ago

    I’m not using kubernetes and know nothing about it, but I don’t need to restart postgres, only the ‘lemmy’ container that runs the lemmy backend. By doing this the connections are all severed, the RAM is freed up, and it’s all good again. I should probably learn how to limit connections in another way!

    Instead of doing all the working out about pictrs images, I’m just looking at using this: https://github.com/wereii/lemmy-thumbnail-cleaner

    An added benefit being that it stays running and keeps your cache trimmed to the timeframe you state. I’m happy with a cache but after a week it’s not really that helpful. Unfortunately the endpoint in pictrs that deletes the image and removed from the db that this script uses is not in pictrs 0.4.x so I thought I’d quickly run the upgrade in non-prod and test it out. It’s still running, I started it about lunchtime on Saturday! I’m seriously considering pulling the plug and doing it properly into postgres, but it would be nice to know how long it’s gonna take, so I’m also tempted to leave it running. It’s running on an old Vaio laptop set up as a server. I think this machine is older than I first thought, perhaps from 2012, so that might explain a lot!

    • nick
      link
      fedilink
      English
      23 months ago

      By doing this the connections are all severed, the RAM is freed up, and it’s all good again.

      Ah, neat! I didn’t think of that. You can limit the size of the connection pool in your lemmy config fwiw.

      https://github.com/wereii/lemmy-thumbnail-cleaner

      Nice, that looks like it’s doing a similar thing to my weird mess of SQL and Python that I did last year haha

      Good luck for the migration :)

      • @DaveOPMA
        link
        23 months ago

        Ah, neat! I didn’t think of that. You can limit the size of the connection pool in your lemmy config fwiw.

        Mine’s set to 10 and it was using up 32GB of RAM so I suspect something wasn’t working right there 😆

        Nice, that looks like it’s doing a similar thing to my weird mess of SQL and Python that I did last year haha

        A couple of days back one of the lemmy devs posted a quick example bash script in one of the instance admin matrix chats. It didn’t quite work, but someone else was inspired to write their own system and posted the code on github. So feel better knowing someone else hadn’t already done the work for you at the time you were doing it 🙂