Hello, we are using akka http server and we were wondering how to properly setup the below
http {
server {
pipelining-limit = 5
}
host-connection-pool {
max-connections = 4
}
}
To my understanding the pipelining limit limits how many requests can be opened per connection and the host connection pool limits how many connection the pool makes to the application. Is that correct? All the connections coming from the load balancer would look like they are coming from the same IP address, it this a problem for the settings above?
Apologies if the question seems trivial but I am genuinely struggling to undertand how to properly configure the http client in order to have it behave with the AWS load balancer in front of it.
Any help will be greatly appreciated.
Federico
4 posts - 2 participants