Long and the short of it… reverting back to netty.http because I can’t get akka.http to satisfy a decent “load”.
I upgraded my project to play 2.7 and I’m having some immediate issues with load-testing. Unfortunately, I am not even getting close to advertised (just normal marketing and hype) load abilities against my application. I realize that there are a lot of factor involved when load-testing but my results are so poor I thought I’d ask for help and see if anyone had any suggestions.
Using a gatling simulation against my play 2.7 scala (exercising only two routes), application with a mongo (reactivemongo) backend. AFAICT, my asynchronous programming is correct.
As soon as I get up to around 100 requests/sec, I run into connection issues to the server. Issues like Premature close, Connection timed out, Connection reset by peer, etc… Prior to getting to failure, my typical response-time for a request in on the order of 5ms-10ms.
There doesn’t appear to be any significant load on my mongo backend. There is some load on the java process but nothing that seems outrageous.
I have tried some tuning of akka.http.server… config. I’ve tried some tuning of fork-join-executor. But never can seem to get to anything which seems to be a system/configuration that represents a scalable system. When running in a kubernetes cluster, I’ve done some horizontal and vertical scaling but it just seems like horrible numbers/cost-of-resources.
-
doesn’t anyone have any template for “here is what worked best for me for a high connection rates using akka.http”?
-
When I switch (back) to netty.http, I immediately get much better gatling/load numbers where I can at least identify that my contention is at the mongo part of the architecture. Does anyone have any gut opinions about akka.http should be more scalable than netty.http? Or what I should try to keep faith of the akka.http config.
-
Based on a REST API -> play-json -> formats -> mongodb application (without significantly large model objects or complexity) … does anyone have any generic numbers about how many requests/sec the application should support on a 2-CPU, 4GB “machine”? (just taking one of the lower VM machine types in a cluster)
Thanks in advance,…
Brad