You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ExchangeServerHandler spawns new tasks for Store operations for most of the received requests. Investigate ways of mitigating danger of us getting overwhelmed by huge number of requests.
for the connected streams we can track the number of in-flight requests and drop the ResponseChannel to close the connection, if we're getting overwhelmed.
The text was updated successfully, but these errors were encountered:
ExchangeServerHandler spawns new tasks for Store operations for most of the received requests. Investigate ways of mitigating danger of us getting overwhelmed by huge number of requests.
libp2p allows us to limit number of incoming streams negotiating the connection
https://docs.rs/libp2p/latest/libp2p/swarm/struct.SwarmBuilder.html#method.max_negotiating_inbound_streams
for the connected streams we can track the number of in-flight requests and drop the
ResponseChannel
to close the connection, if we're getting overwhelmed.The text was updated successfully, but these errors were encountered: