Skip to content

Commit

Permalink
v1.17: separates out routing repair requests from establishing connec…
Browse files Browse the repository at this point in the history
…tions (backport of #33742) (#33769)

separates out routing repair requests from establishing connections (#33742)

Currently each outgoing repair request 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 7aa0fae)

Co-authored-by: behzad nouri <behzadnouri@gmail.com>
  • Loading branch information
mergify[bot] and behzadnouri authored Oct 20, 2023
1 parent d550015 commit ae1bfff
Showing 1 changed file with 168 additions and 112 deletions.
Loading

0 comments on commit ae1bfff

Please sign in to comment.