[akka-user] Re: HTTP Chunk Size Exceeds the Configured Limit

2017-11-16 Thread Kyrylo Stokoz
Chunk size and entity size are 2 different configuration settings. You can easily set bigger chunk size for all connections in your application config see akka.http.parsing.max-chunk-size. If you want to do it programmatically i think right now it is only possible via connection: private

[akka-user] Re: HTTP Chunk Size Exceeds the Configured Limit

2017-11-10 Thread bordecorp
I saw, sometimes, I get into below issue - I use : where *emptyResult* of type : Map[String, List[(String, JValue)]] Note that, Maps *acc* and *curr *are getting bigger and bigger. It might have some GB of data while combining at last step. Sink.fold(Future{emptyResult}){ case (acc, curr) =>