X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e9ab67bb8788241d6ebbfbe74b5af36f4bd63dd8..ba1937c21efd8d6392c0479579da1fc06443abdd:/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..0c9ef1c36e 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,10 @@ {%- 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 _workers = ("__CONTROLLER_MAX_WORKERS__" or grains['num_cpus']*2)|int %} +{%- set max_workers = [_workers, 8]|max %} +{%- set max_reqs = ("__CONTROLLER_MAX_QUEUED_REQUESTS__" or 128)|int %} +{%- set max_tunnels = ("__CONTROLLER_MAX_GATEWAY_TUNNELS__" or 1000)|int %} ### NGINX nginx: @@ -22,12 +25,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.MaxConcurrentRailsRequests 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,45 +49,16 @@ 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 - events: - worker_connections: 1024 - {%- endif %} - - ### SNIPPETS - snippets: - # Based on https://ssl-config.mozilla.org/#server=nginx&version=1.14.2&config=intermediate&openssl=1.1.1d&guideline=5.4 - ssl_hardening_default.conf: - - ssl_session_timeout: 1d - - ssl_session_cache: 'shared:arvadosSSL:10m' - - ssl_session_tickets: 'off' - - # intermediate configuration - - ssl_protocols: TLSv1.2 TLSv1.3 - - ssl_ciphers: ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384 - - ssl_prefer_server_ciphers: 'off' + worker_processes: {{ max_workers }} - # HSTS (ngx_http_headers_module is required) (63072000 seconds) - - add_header: 'Strict-Transport-Security "max-age=63072000" always' - - # OCSP stapling - - ssl_stapling: 'on' - - ssl_stapling_verify: 'on' - - # verify chain of trust of OCSP response using Root CA and Intermediate certs - # - ssl_trusted_certificate /path/to/root_CA_cert_plus_intermediates - - # curl https://ssl-config.mozilla.org/ffdhe2048.txt > /path/to/dhparam - # - ssl_dhparam: /path/to/dhparam - - # replace with the IP address of your resolver - # - resolver: 127.0.0.1 + # Each client 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 + # (we're multiplying by 5 instead to be on the safe side) + worker_rlimit_nofile: {{ (max_reqs + max_tunnels) * 5 + 1 }} + events: + worker_connections: {{ (max_reqs + max_tunnels) * 5 + 1 }} ### SITES servers: