=htc #17595 a word of warning against increasing pipelining-limit on the client

This commit is contained in:
Johannes Rudolph 2016-02-24 15:44:06 +01:00
parent bd2042ceb4
commit b5561a30e1

View file

@ -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