An oversimplified version of how gossip works is:
From the description above, you can see that the scaling properties of libp2p are dependent on the *number of messages *****(Rather that the total bytes). libp2p works well for other blockchain projects because they have a relatively smaller number of large messages
In contrast, Farcaster, which gossips each individual message is already gossiping 1,000 messages/s, with peaks exceeding 10,000 messages/s (with each message being quite small, ~220 bytes)
This means the libp2p libraries are keeping track of 100s of thousands of hashes, and requesting each one individually, running into scaling limitations
To scale gossip, we need to either (1) Reduce the number of messages sent on the gossip network or (2) Use an alternate channel to distribute individual messages
We’ll invent a new idea of a “bundle”, which is the set of all messages submitted only via source=rpc
in the same second to a node. The node, at the end of the second, will collect all successfully merged messages into a “bundle” and gossip out the whole bundle.