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
context.WithValue is used in many places (especially in trace chain element). It makes ctx very heavy and significantly slows down some operations like postpone which are also used in many chain elements. As a result forwarder can spend several seconds only on postone.
Solution
Make contexts light and use connection's metadata instead.
The text was updated successfully, but these errors were encountered:
Main Issue
#1666
Description
context.WithValue
is used in many places (especially intrace
chain element). It makesctx
very heavy and significantly slows down some operations likepostpone
which are also used in many chain elements. As a resultforwarder
can spend several seconds only onpostone
.Solution
Make contexts light and use connection's metadata instead.
The text was updated successfully, but these errors were encountered: