this post was submitted on 01 Jan 2024
30 points (100.0% liked)

Announcements

226 readers
1 users here now

Announcements about system updates or other things related to this instance.

founded 1 year ago
MODERATORS
 

Please try to comment and post things now, and see if they federate again.

Hopefully you see your activity instantly federated. I have tried making comments both to instances running Lemmy 0.19.1 and 0.18.5 and they all federate like they should.

Hope you have the same experience! 🥳

you are viewing a single comment's thread
view the rest of the comments
[–] mrmanager 9 points 8 months ago* (last edited 8 months ago)

Thats great. :)

I know other instances on 0.19.1 had issues with federation so I can share what we did here to try and fix it.

There is a database table in postgres called instance and in our case, it had thousands of instances that were considered dead. Our instance didnt seem to try and talk to them anymore since the "updated" column would never update.

So we ran a simple database query to set the updated column to now() for all instances that we knew about:

update instance set updated = now()

This caused Lemmy to go out and try to talk to all of the instances again, and reconsider if they were dead or not.

According to this site we are now federated with 3000+ instances again:

https://phiresky.github.io/lemmy-federation-state/site?domain=lemmy.today

I hope we stay federated this time. Will keep an eye on it. :)