It’s brief, around 25:15

https://youtube.com/watch?v=nf7XHR3EVHo


If you’ve been sitting on making a post about your favorite instance, this could be a good opportunity to do so.

Going by our registration applications, a lot of people are learning about the fediverse for the first time and they’re excited about the idea. I’ve really enjoyed reading through them :)

  • DefectiveFoundation@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    9 hours ago

    Isn’t it easier to handle most users on one server than it is to have a bunch of equal servers? Then the problem just moves off the one server towards the communication between the servers being the bottleneck.

    • rumba
      link
      fedilink
      English
      arrow-up
      2
      ·
      6 hours ago

      The way lemmy (and federation) works, it needs to do a bunch of operations that can’t happen simultaneously, so there’s a job queue. The queue needs to do some database operations and a bunch of communication operations and each of the jobs needs to reach out to distant servers that may or may not be overwhelmed themselves.

      You start with one server it costs almost nothing to host. Sooner or later you want to split out the job servers, then you end up needing to split out the database, when you start getting that many people on your server now you want to consider fault tolerance, Even after tuning you can only fit so many simultaneous users on a web server, you end up needing to do some load balancing. The next step would be trying to split it up geography-wise.

      That’s scaling up and it’s what big companies do and it’s very expensive but easy for a small team to manage.

      Lemmy on the other hand is designed to be scaled out, running smaller individual user bases on lighter hardware with a bunch of individual administrators instead of a organized team.

      If people want to be on a large single cluster application Reddit is still there.

      I like what we have a lot better.