> However, I disagree with some of the analysis, and have a couple specific points to correct.
-
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
"I think it's pretty clear immediately that it's quadratic. This is basic engineering considerations, the first thing you do when you start designing a system," they said.
Well that's a relief, why isn't it clear to everyone else, I asked?
So they suggested I lay it out to you as I did to them.
-
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
Let's start with the following:
- ATProto has positioned itself as "no compromises on centralized use cases". Well, in that case, let's say it can't do *worse* than eg ActivityPub. This includes with replies. You can't do *worse* than ActivityPub on replies and mentioning someone, etc.
-
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
- We will interpret the most centralized system as one where there's only one provider for storage and distribution of all messages: the least amount of user participation
- The flip side of the spectrum of maximum decentralization is the *most* amount of participation: every user self-hosts. -
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
- Just as blogging is decentralized but Google (and Google Reader) are not, it is not enough to have just PDS'es in Bluesky be self-hosted. When we say self-hosted, we really mean self-hosted: users are participating in the distribution of their content.
-
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
- We will consider this a gradient. We can analyze the system from the greatest extreme of centralization which can "scale towards" the greatest degree of decentralization.
-
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by [email protected]
- Finally, we will analyze both in terms of the load of a single participant on the network but also in terms of the amount of network traffic as a whole.
Okay. That is the structure we will use for our analysis. Let's compare "message passing" vs ATProto-style "global public shared heap".
-
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
So okay. Let's get the CS notation out of the way:
"Message passing" at full decentralization:
- O(1) from a single node's perspective
- O(n) from a whole-network zoom-out perspective (inherent: add a user, it's one more user)Okay, that's reasonable and what you'd expect
-
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
"Public global no-missed-messages (or not worse than AP) shared-heap" ATProto style at full decentralization:
- O(n) from a single user's perspective (!)
- O(n^2) from a whole-network perspective (!!!!!!)Oof I'd better back this up because that ain't good!
-
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
In other words, as our systems get more decentralized, message passing handles things fine. Individual nodes can participate in the network no matter how big it gets. The zoom-out for the network as a whole doesn't get more complicated as we add more users OR move more users towards self hosting.
-
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
Things are NOT good, if I'm correct above, as we make things more decentralized in the atproto-public-shared-heap model. The more self-hosting and indeed the more "full nodes" join, the more it gets expensive for each of the nodes and the network EXPLODES!
Truly self-hosted atproto is NOT POSSIBLE!
-
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
And there is no solution to this without adding directed message passing. Another way to say this is: to fix a system like ATProto to allow for self-hosting, you have to ultimately fundamentally change it to be a lot more like a system like ActivityPub!
-
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
Now I left more of the precise analytical explanation in my blogpost. But social media isn't great for that, so go check out my blogpost if you want to go through all that (eg if you're more like @dthompson and less like me, I'm a narrative person) https://dustycloud.org/blog/re-re-bluesky-decentralization/
-
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
Here's our story:
- We have 26 users: [Alice, Bob, Carol, ... Zack].
- Each user sends one message per day, which is intended to have one recipient. (This may sound unrealistic, but it's fine for modeling.)
- Each user sends a message in a ring: Alice => Bob, Bob => Carol, ... Zack => Alice -
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
Now just before you say "wait but ATProto isn't for DMs", yes, but one way this could happen is that eg Bob follows Alice, Carol follows Bob, etc.
What I'm saying is, messages can have an "intended audience". That's what we're using here.
-
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
Before we get into this, remember, the main difference between "message passing" and the "shared heap" is the former has directed and delivered messages, the latter does not. See prev blogpost for explainer.
So, what happens in a day for both systems? Because that's what we really want to find out.
-
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
Under message passing, Alice sends her message to Bob. Only Bob need *receive* the message. So on and so forth.
- For an individual self-hosted node, messages passed per day: 1.
- Per the decentralized network, total messages passed zooming out: 26.That's about what we'd expect.
-
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
Under the public-gods-eye-view-shared-heap model, each user must know of all messages to know what may be relevant. Each user must *receive* all messages.
- Individual self-hosted server, 26 messages must be received per day.
- Zoom out on whole decentralized network: 26*26: 676! -
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
Sounds survivable with 26 users though, right?
Let's try just adding 5 more users.Message passing:
- Per node per day: no change.
- Per the network: 5 more messages.Public gods-eye-view-shared-heap-model:
- Per node per day: 5 more per day
- Per network: ((31 * 31) - (26 * 26)): 285! -
gkrnoursreplied to Christine Lemmer-Webber last edited by
@cwebber wait, caffeine is an alternative to ADHD medication?
-
Christine Lemmer-Webberreplied to Christine Lemmer-Webber last edited by
Now, could we handle a million self hosted users? Is it possible? No problem in message passing. EXPLOSIVE with atproto.
What if we had a million users and added just 5 more? How many more messages must the network bear?
5 new messages in message passing.
*10,000,025* new messages sent in atproto!