On Tue, Oct 28, 2014 at 10:40 AM, Akka Team <
akka.o...@gmail.com> wrote:
> Hi Rüdiger,
>
>> I am doing some testing with akka-http and chunked encoding. I want to
>> investigate the backpressure behavior, so I am using curl with
>> --limit-rate 1k on the client side. I should I see backpressure when
>> using akka-http to send a HttpEntity.Chunked, right?
>
>
> Yes, you should.
>
Yes, my mistake. It seems that there are some buffers that are being
filled before the backpressure kicks in, so you have to make sure to
produce enough data to see the effect.
>>
>>
>> One thing I noticed is that all hell breaks loose when the connection
>> is closed from the client side (e.g. by interrupting curl using
>> Control-C). See below. Is that going to change with 1.0, or is there a
>> way to silence this?
>
>
> It is just the onError signal caused by "connection reset by peer"
> propagating downwards, and all elements log it (which looks scary and is
> completely useless). We will remove this logging completely, there is at
> least one ticket for that:
https://github.com/akka/akka/issues/15349
>
OK. That's good to know.
Great. Thanks. By the way, is http client functionality going to be
included in 1.0, or is that planned for a later release?
Cheers,
Rüdiger