Followup question, by setting
‘proxy.config.http.server_session_sharing.pool’ to global
proxy.config.http.origin_max_connections to say 10
My understanding of the above configuration is, for first 10 new http
transactions destined to the origin server(abc.com) results in establishing 10
new
It depends on if the first 10 transactions are parallel/concurrent or they
occur in some order. In short, as long as there's an idle connection in the
pool, it will be reused. New origin connections are made only when there's
currently no idle connection that can be leveraged.
Origin max connec
There is no affinity on the transaction based on the origin server. The client
connection is assigned to a thread using round robin.
The connection pools will grow as large as they need to fulfill the incoming
requests. There is generally more connections to the origin when using thread
pools
We are using ATS 7.0 and trying to understand the server session pool sharing
We have found a configuration attribute
proxy.config.http.server_session_sharing.pool which takes values as
‘global’/‘thread’.
My understanding for the value of ‘thread’ is that each thread maintains the
server ses