X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b859429b4a76996d7807caa79f4995458703238d..e805640e7904dc282f00be82a2edb53d496a87bb:/tools/salt-install/config_examples/multi_host/aws/pillars/nginx_passenger.sls diff --git a/tools/salt-install/config_examples/multi_host/aws/pillars/nginx_passenger.sls b/tools/salt-install/config_examples/multi_host/aws/pillars/nginx_passenger.sls index b003172330..ce8f0ff407 100644 --- a/tools/salt-install/config_examples/multi_host/aws/pillars/nginx_passenger.sls +++ b/tools/salt-install/config_examples/multi_host/aws/pillars/nginx_passenger.sls @@ -12,7 +12,8 @@ {%- set passenger_ruby = '/usr/local/rvm/wrappers/default/ruby' if grains.osfinger in ('CentOS Linux-7', 'Ubuntu-18.04', 'Debian-10') else '/usr/bin/ruby' %} -{%- set max_reqs = "__CONTROLLER_MAX_CONCURRENT_REQUESTS__" %} +{%- set max_workers = ("__CONTROLLER_MAX_WORKERS__" or grains['num_cpus'])|int %} +{%- set max_reqs = ("__CONTROLLER_MAX_QUEUED_REQUESTS__" or 128)|int %} ### NGINX nginx: @@ -22,12 +23,15 @@ nginx: ### PASSENGER passenger: passenger_ruby: {{ passenger_ruby }} - passenger_max_pool_size: {{ "__CONTROLLER_NGINX_WORKERS__" or grains['num_cpus'] }} - {%- if max_reqs != "" %} - # Default is 100 -- Configuring this a bit higher than API.MaxConcurrentRequests - # to be able to handle /metrics requests even on heavy load situations. - passenger_max_request_queue_size: {{ (max_reqs|int * 1.1)|round|int }} - {%- endif %} + passenger_max_pool_size: {{ max_workers }} + + # Make the passenger queue small (twice the concurrency, so + # there's at most one pending request for each busy worker) + # because controller reorders requests based on priority, and + # won't send more than API.MaxConcurrentRequests to passenger + # (which is max_workers * 2), so things that are moved to the head + # of the line get processed quickly. + passenger_max_request_queue_size: {{ max_workers * 2 + 1 }} ### SERVER server: @@ -43,16 +47,15 @@ nginx: # include: 'modules-enabled/*.conf' load_module: {{ passenger_mod }} {% endif %} - worker_processes: {{ "__CONTROLLER_NGINX_WORKERS__" or grains['num_cpus'] }} - {%- if max_reqs != "" %} - worker_rlimit_nofile: {{ (max_reqs|int * 3)|round|int }} - events: - worker_connections: {{ (max_reqs|int * 3)|round|int }} - {%- else %} - worker_rlimit_nofile: 4096 + worker_processes: {{ max_workers }} + + # each request is up to 3 connections (1 with client, 1 proxy to + # controller, then potentially 1 from controller back to + # passenger). Each connection consumes a file descriptor. + # That's how we get these calculations + worker_rlimit_nofile: {{ max_reqs * 3 + 1 }} events: - worker_connections: 1024 - {%- endif %} + worker_connections: {{ max_reqs * 3 + 1 }} ### SNIPPETS snippets: