Re: Query about Server Session pool Sharing

2017-01-10 Thread Vamsi Ambati
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

Re: Query about Server Session pool Sharing

2017-01-10 Thread Sudheer Vinukonda
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

Re: URL redirect logging for rexeg_remap

2017-01-10 Thread Bryan Call
You are combining client and origin server information in the first URL. Is this what you want to do? This seems odd since the scheme or path might have changed in the regex_remap plugin. Can you show what you would like the map url logging to display? -Bryan > On Dec 13, 2016, at 7:08 AM, Y

Re: email to user's mailing list bounced back?

2017-01-10 Thread Bryan Call
You might not have been subscribed to the mailing list. I do see your email made it to the list. I might have approved it and since I see a lot of spam/emails to approve I don’t remember if I approved this one. -Bryan > On Dec 13, 2016, at 7:14 AM, Ye, Hong wrote: > > Not sure what is going

Re: Query about Server Session pool Sharing

2017-01-10 Thread Bryan Call
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