this post was submitted on 07 Jun 2023
3 points (100.0% liked)

exchristian

846 readers
28 users here now

Welcome to the exchristian community! We strive to provide a safe space for anyone looking to leave the religion or seek comfort while dealing with the fallout from leaving. This site was originally hosted on reddit before the ~~Great~~ Minor Exodus of 2023.

You can find a related exchristian community on Discord.

founded 1 year ago
MODERATORS
 

Our gracious host @JonahAragorn asks that we sign up on a server on join-lemmy.org or sign up on kbin.social instead of directing everybody to use the lemmy.one server specifically, in order to distribute the load.

Thank you!

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

I have a very limited understanding, but, yes. A few thpusand is ok so far, but The database managing post contents becomes the bottleneck as it simply cannot be updated fast enough. No single instance can handle that much traffic, it has to be horizontally scaled somehow.

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

I wish I had the time to dedicate to learning enough to know what you're talking about. This kinda stuff sounds so interesting.

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

Ok, so the best analogy is: a database is a warehouse. Every user has a shelf in this warehouse, and they add and take stuff to it at random. The workers in the warehouse move stuff in and out of the doors as orders (user requests) come in and out.

You can build the warehouse taller and wider to hold more shelves (vertical scaling of hardware), but only to a point before the forklift trucks can't reach and driving across the warehouse for one order would take too long.
You can similarly add more workers (CPU power) and more doors (faster storage/memory) to your warehouse to handle more orders at one time, but these also have limits because the warehouse is only so big. And there's eventually a point where no amount of workers or doors or shelf space will improve throughput, because the roads around the warehouse are clogged with trucks.

At this point the obvious solution is horizontal scaling- build a new warehouse somewhere else nearby, and a small office building (load balancer) that directs new orders to each of the warehouses evenly. Then you have the office occasionally check in with both warehouses to make sure they both have the same stuff to fulfill any given order (synchronizing instances). And as orders continue to increase, you can just keep adding more and more horizontal warehouses- all of which are individually somewhat small and simple, but effectively infinitely scalable compared to the vertical mega-warehouse we tried to build originally.

Lemmy tries to build in the horizontalness by having separate instances federate and share data automatically without the need for that "front office". However the issue still stands that individual instances are going to need to handle hundreds of thousands of users for the Lemmy ecosystem to really thrive, and that is going to take a ton of back end database engineering to allow individual instances to scale as well as the fediverse network as a whole.

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

Well shit. I'm gonna go add Database Engineering to my resume now. Lol

Seriously, though. Thanks for the great explanation. Wasn't expecting that.

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

Of course, glad to help!