-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Message Passing for Heterogeneous Paxos #9
Comments
Schemes like Kauri (SOSP 2021) use combination signature-aggregation/gossip trees. |
HotStuff effectively does all-to-all communication with O(n) overhead by sending everything through a leader which aggregates signatures. |
It currently seems likely that DKG will be a bottleneck on the number of validators before all-to-all messaging in consensus becomes impractical. We may be able to delay on message-aggregating cleverness for a while. |
We may be able to usefully combine some consensus messages here with mempool messages, like Tusk does. |
Similarly, we may want to take into account message pipelining when formatting these messages. |
We may want to leave message content, aside from the layer containing transactions fairly abstract (mostly messages carry signatures, timestamps, and references to other messages), the way it is in Heterogeneous Paxos Reference Implementation. We don't want, for instance, the Mempool and the Consensus layer to both send independent messages to a quorum of validators at the same time, when they could just send one message. Perhaps each orderer / validator should (internally) maintain a "messaging service," which signs, broadcasts, receives, and validates messages as efficiently as possible, and then distributes internal "logical messages" to components of the orderer / validator. |
This issue may well be combined with our existing ledger projects.
Ultimately, our Heterogeneous Paxos implementation will need to send messages (1b, 2a, etc).
The text was updated successfully, but these errors were encountered: