Re: Trying to Understand Upstream Keepalive

2016-06-14 Thread Valentin V. Bartenev
On Tuesday 14 June 2016 04:09:06 aanchalj wrote: > As stated in > http://nginx.org/en/docs/http/ngx_http_upstream_module.html#keepalive that > "It should be particularly noted that the keepalive directive does not limit > the total number of connections to upstream servers that an nginx worker > pr

Re: Trying to Understand Upstream Keepalive

2016-06-14 Thread aanchalj
As stated in http://nginx.org/en/docs/http/ngx_http_upstream_module.html#keepalive that "It should be particularly noted that the keepalive directive does not limit the total number of connections to upstream servers that an nginx worker process can open. The connections parameter should be set to

Re: Trying to Understand Upstream Keepalive

2014-10-29 Thread Maxim Dounin
Hello! On Wed, Oct 29, 2014 at 02:20:28PM -0400, newnovice wrote: > "isn't enough room in the cache." > > how big is the upstream keepalive connection-pool cache size? http://nginx.org/en/docs/http/ngx_http_upstream_module.html#keepalive -- Maxim Dounin http://nginx.org/

Re: Trying to Understand Upstream Keepalive

2014-10-29 Thread newnovice
"isn't enough room in the cache." how big is the upstream keepalive connection-pool cache size? Posted at Nginx Forum: http://forum.nginx.org/read.php?2,249924,254426#msg-254426 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/l

Re: Trying to Understand Upstream Keepalive

2014-10-29 Thread Maxim Dounin
Hello! On Wed, Oct 29, 2014 at 01:15:56PM -0400, newnovice wrote: > Maxim Dounin Wrote: > --- > > Hello! > > > > On Tue, Oct 28, 2014 at 08:01:33PM -0400, newnovice wrote: > > > > > Maxim, > > > > > > > > http://nginx.org/en/docs/http/ngx_ht

Re: Trying to Understand Upstream Keepalive

2014-10-29 Thread newnovice
Maxim Dounin Wrote: --- > Hello! > > On Tue, Oct 28, 2014 at 08:01:33PM -0400, newnovice wrote: > > > Maxim, > > > > > http://nginx.org/en/docs/http/ngx_http_upstream_module.html#keepalive > > > > I would like to know what is the keepalive ti

Re: Trying to Understand Upstream Keepalive

2014-10-29 Thread Maxim Dounin
Hello! On Tue, Oct 28, 2014 at 08:01:33PM -0400, newnovice wrote: > Maxim, > > http://nginx.org/en/docs/http/ngx_http_upstream_module.html#keepalive > > I would like to know what is the keepalive timeout for this connection pool? > Is it static? As of now, there is no timeout on nginx side.

Re: Trying to Understand Upstream Keepalive

2014-10-28 Thread newnovice
Maxim, http://nginx.org/en/docs/http/ngx_http_upstream_module.html#keepalive I would like to know what is the keepalive timeout for this connection pool? Is it static? Also i want to understand - if there is a marriage between number of connections nginx gets vs how many it opens to upstream?

Re: Trying to Understand Upstream Keepalive

2014-05-08 Thread Maxim Dounin
Hello! On Thu, May 08, 2014 at 03:12:44AM -0400, abstein2 wrote: > I'm trying to better wrap my head around the keepalive functionality in the > upstream module as when enabling keepalive, I'm seeing little to no > performance benefits using the FOSS version of nginx. > > My upstream block is: >

Trying to Understand Upstream Keepalive

2014-05-08 Thread abstein2
I'm trying to better wrap my head around the keepalive functionality in the upstream module as when enabling keepalive, I'm seeing little to no performance benefits using the FOSS version of nginx. My upstream block is: upstream upstream_test_1 { server 1.1.1.1 max_fails=0; keepalive 50; } With