One thing that could be interesting to try out if you want to achieve as 
high throughput as possible where each new request is a new connection with 
the current akka-http version is to disable autoFusing (which is pretty 
costly). That can be done when you create the materializer like this: 

  ActorMaterializer(ActorMaterializerSettings(system).withAutoFusing(false))

This will of course come at the cost where persistent connections get a 
performance hit instead.

--
John Andrén
Akka Team, Lightbend Inc.
 

On Monday, April 18, 2016 at 1:06:58 PM UTC+2, Andrew Gaydenko wrote:
>
> Adam, thanks!
>
> Very informative. I also have found handy to use almost empty response to 
> estimate the whole request-response chain itself (starting from now 
> abandoned tiscaf [1] and rising rps up to almost 90K on humble workstation 
> :) ).
>
> [1] http://gaydenko.com/scala/tiscaf/httpd/
>

-- 
>>>>>>>>>>      Read the docs: http://akka.io/docs/
>>>>>>>>>>      Check the FAQ: 
>>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>>      Search the archives: https://groups.google.com/group/akka-user
--- 
You received this message because you are subscribed to the Google Groups "Akka 
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to akka-user+unsubscr...@googlegroups.com.
To post to this group, send email to akka-user@googlegroups.com.
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to