=htc #17595 a word of warning against increasing pipelining-limit on the client
This commit is contained in:
parent
bd2042ceb4
commit
b5561a30e1
1 changed files with 7 additions and 0 deletions
|
|
@ -198,6 +198,13 @@ akka.http {
|
|||
# This value must be > 0.
|
||||
# (Note that, independently of this setting, pipelining will never be done
|
||||
# on a connection that still has a non-idempotent request in flight.
|
||||
#
|
||||
# Before increasing this value, make sure you understand the effects of head-of-line blocking.
|
||||
# Using a connection pool, a request may be issued on a connection where a previous
|
||||
# long-running request hasn't finished yet. The response to the pipelined requests may then be stuck
|
||||
# behind the response of the long-running previous requests on the server. This may introduce an
|
||||
# unwanted "coupling" of run time between otherwise unrelated requests.
|
||||
#
|
||||
# See http://tools.ietf.org/html/rfc7230#section-6.3.2 for more info.)
|
||||
pipelining-limit = 1
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue