this post was submitted on 20 Jun 2023
45 points (97.9% liked)

Selfhosted

39575 readers
416 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

Are there any Discord servers or somewhere in the Matrix to chat about hosting a Lemmy instance? I've got Lemmy running, but I think there are several of us in the same boat struggling with federation performance issues and it might be good to have some place to chat real time.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 1 year ago (1 children)

Well- I do know- most of the components do scale.

The UI/Frontend, for example, you can run multiple instances easily.

The API/MiddleTier, I don't know if it supports horizontal scaling though. But, a beefy server can push a TON of traffic.

The database/backend, being postgres, does support some horizontal scaling.

Regarding the app itself, it scales much better if EVERYONE didn't just flock to lemmy.ml, lemmy.world, and beehaw.org. I think that is one of the huge issues.... everyone wanted to join the "big" instance.

[–] [email protected] 5 points 1 year ago (2 children)

If you look here: https://lemmy.world/comment/65982

At least specs and capacity wise, it doesn't suggest it is hitting a wall.

The more I dug into things, the more I think the limitation comes from an age old issue in that if your service is expected to connect to a lot of flakey destinations, you're not going to be in for a good time. I think the big instance backend is trying to send federation event messages, and a bunch of smaller federated destinations have shuttered (because they're not getting all the messages, so they just go and sign up on the big instances to see everything), which results in the big instances' out going connection have to wait for timeout and/or discover the recipient is no longer available, which results in a backed up queue of messages to send out.

When I posted a reply to myself on lemmy.world, it took 17 seconds to reach my instance (hosted in a data centre w/ sub 200ms ping to lemmy.world itself, so not a network latency issue here), which exceeds the 10 seconds limit per defined by Lemmy. Increasing it on the application protocol level won't help, because as more small instances come up, they too would also like to subscribe to big hubs, which will just further exacerbate the lag.

I think the current implementation is very naive and can scale a bit, but will likely be insufficient as the fediverse grows, not as the individual instance's user grows. That is, the bottle neck will not so much be "this can support instance up to 100K users" but rather "now that there's 100K users, we'd also have 50K servers trying to federate with us". And to work around that, you're going to need a lot more than Postgres horizontal scaling... you'd need message buses and workers that can ensure jobs (i.e.: outward federation) can be sent effectively.

[–] [email protected] 1 points 1 year ago

I agree here. I don't see Federation scaling without major arch changes. I can't see a server making 50k (subscribed servers) outbound connections for every upvote, comment, etc.

Q: How many Federated actions, on average per user per community per day? Probably a low number, say 5. But 5 * Users * Servers is a huge number of connections once Users and Servers get moderately large. 500k users and 5k servers is 12.5 billion connections, just for one community.

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago) (1 children)

That is a VERY small server....

MY server, has 32 cores, 64 threads, 256G of ram, and 130T of storage (4T of which is NVMe)

Sheesh, that is prob why that instance is dragging!!

https://lemmy.world/post/56228

[–] [email protected] 1 points 1 year ago (1 children)

They've bumped the server much more than the original posted VM. I was pointing to the zabbix charts and actual usage. Notice CPU is sub 20%, and the network usage being sub 200Mbits. There's plenty of headroom.

[–] [email protected] 1 points 1 year ago (1 children)

I found the newest link- https://lemmy.world/comment/379405

Ok, that is a pretty sizable chunk of hardware.

[–] [email protected] 1 points 1 year ago (1 children)

I care less about what it is running on, but what is consumed. At sub 20% usage, it really doesn't matter what the hardware is, because the overall spec is not the bottle neck.

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago) (1 children)

Your original link is from 9 days ago, before the massive surge hit.

https://lemmy.world/post/56228 Came 8 days ago, with reports of it being pretty well saturated.

Remember- the big surge, is in the last 3-4 days.

Fediverse stats: https://fediverse.observer/dailystats

In the last 4 days, they have went up over 400% in size.

[–] [email protected] 1 points 1 year ago (1 children)

I don't know if you're totally missing it... here is the CPU usage from 3 hours ago: https://lemmy.world/comment/377946

Even if you 4x the usage from the alleged 400% growth, the spec of the server itself is not the bottleneck. They've also significantly increased the federation workers to 10000 based on my private chat... so something is not scaling to the fullest potential.

I think the point of focus should be more on why it is not using all the resources available, rather than 'that server is weak'. We're about to see a much larger influx up comes July 1st that's going to make the 400% growth look like a joke, and if current larger instances aren't able to handle the federation now, the current smaller instances will buck hard up comes the big move.

[–] [email protected] 1 points 1 year ago (1 children)

Ok- sorry- I 100% missed that.

I am onboard with you now.

Hopefully the upcoming 0.18 release I keep hearing about helps compensate for a few of these issues...

[–] [email protected] 1 points 1 year ago (2 children)

Quick skim through the commits on the master branch, I don't see many changes pertaining to federation. This one looks interesting/related, but I think in itself only tells server admins when to increase worker counts: https://github.com/LemmyNet/lemmy/commit/25275b79eed0fb1fe90d27c197725f510f9965bb

[–] [email protected] 2 points 1 year ago (1 children)

Don't know if they changed it or not-

But, I am busy making a few kubernetes manifests for deploying lemmy- and I am noticing a ton of extra debugging / logging that doesn't need to be there for production use.

Seriously doubt it's going to fix the issue- but, reducing some of the debugging enabled by default, wouldn't hurt.

[–] [email protected] 1 points 1 year ago (1 children)

100% with you. A lot of the current deployment are very development centric... Let's pretend the default docker-compose.yml isn't opening up the postgres DB to the internet with a generic password...

The pace the entire system must mature to enable the platform to handle the hopeful upcoming growth is... interesting, to say the least...

[–] [email protected] 1 points 1 year ago

Well, if I can knock out a decent helm chart for these manifests, it might actually help a bit-

Most of the components can scale quite easily on k8s. The only piece I am unsure of currently, is lemmy itself.

The lemmy-ui scales. Appears mostly stateless. pictrs scales. postgres scales.