Skip to content

Commit

Permalink
separates out routing shreds from establishing connections (#33599)
Browse files Browse the repository at this point in the history
Currently each outgoing shred will attempt to establish a connection if
one does not already exist. This is very wasteful and consumes many
tokio tasks if the remote node is down or unresponsive.

The commit decouples routing packets from establishing connections by
adding a buffering channel for each remote address. Outgoing packets are
always sent down this channel to be processed once the connection is
established. If connecting attempt fails, all packets already pushed to
the channel are dropped at once, reducing the number of attempts to make
a connection if the remote node is down or unresponsive.

(cherry picked from commit 8becb72)
  • Loading branch information
behzadnouri authored and mergify[bot] committed Oct 19, 2023
1 parent ab99086 commit e51f747
Showing 1 changed file with 153 additions and 123 deletions.
Loading

0 comments on commit e51f747

Please sign in to comment.