Detailed explanation of nginx upstream configuration and function

Detailed explanation of nginx upstream configuration and function

Configuration Example

upstream backend {
  server backend1.example.com weight=5;
  server backend2.example.com:8080;
  server unix:/tmp/backend3;

  server backup1.example.com:8080 backup;
  server backup2.example.com:8080 backup;
}

server {
  location / {
    proxy_pass http://backend;
  }
}

instruction

grammar: upstream name { ... }
default value:
Context: http

Defines a group of servers. These servers can listen on different ports. Furthermore, servers listening on TCP and UNIX domain sockets can be mixed.

example:

upstream backend {
  server backend1.example.com weight=5;
  server 127.0.0.1:8080 max_fails=3 fail_timeout=30s;
  server unix:/tmp/backend3;
}

By default, nginx distributes requests to servers in a weighted round-robin manner. In the above example, every 7 requests will be distributed in the following way: 5 requests to backend1.example.com, 1 request to the second server, and 1 request to the third server. When communicating with a server, if an error occurs, the request is passed to the next server until all available servers have been tried. If all servers return failure, the client will get the (failure) response result of the last server communicated with.

grammar: server address [parameters];
default value:
Context: upstream

Define the server address address and other parameters parameters. The address can be a domain name or IP address, and the port is optional, or the path to a UNIX domain socket specified with a "unix:" prefix. If no port is specified, port 80 is used. If a domain name resolves to multiple IP addresses, multiple servers are essentially defined.

You can define the following parameters: weight=number sets the weight of the server, the default is 1. max_fails=number sets the number of failed attempts by Nginx to communicate with the server. If the number of failures reaches this value within the time period defined by the fail_timeout parameter, Nginx considers the server unavailable. The server will not be tried again during the next fail_timeout period. The default number of failed attempts is 1. If set to 0, it will stop counting attempts and assume that the server is always available. You can configure what counts as a failed attempt via the proxy_next_upstream, fastcgi_next_upstream, and memcached_next_upstream directives. By default, the http_404 status is not considered a failed attempt. fail_timeout=time setting

  • The time period for counting failed attempts. If the server fails the specified number of attempts during this time, the server is considered unavailable.
  • The period of time during which the server is considered unavailable.

By default, the timeout is 10 seconds. backup marks the server as a backup server. When the primary server is unavailable, requests will be transferred to these servers. down marks the server as permanently unavailable and can be used together with the ip_hash directive.

Example:

upstream backend {
  server backend1.example.com weight=5;
  server 127.0.0.1:8080 max_fails=3 fail_timeout=30s;
  server unix:/tmp/backend3;

  server backup1.example.com:8080 backup;
}

grammar: ip_hash;
default value:
Context: upstream

Specifies the load balancing method for the server group. Requests are distributed among the servers based on the client's IP address. The first three bytes of the IPv4 address, or the entire address for IPv6, are used as a hash key. This method ensures that requests from the same client will be sent to the same server. Except when a server is considered unavailable, these client requests will be forwarded to other servers, and most likely the same server.

IPv6 addresses are supported starting from versions 1.3.2 and 1.2.2.

If one of the servers is to be temporarily removed, the down parameter should be added. This preserves the current client IP address hash distribution.

example:

upstream backend {
  ip_hash;

  server backend1.example.com;
  server backend2.example.com;
  server backend3.example.com down;
  server backend4.example.com;
}

Starting from versions 1.3.1 and 1.2.2, the ip_hash load balancing method supports setting server weight values.

grammar: keepalive connections;
default value:
Context: upstream

This directive appeared in version 1.1.4.

Activates caching of connections to upstream servers.

The connections parameter sets the maximum number of connections that each worker process maintains with the backend server. These maintained connections are cached. If the number of connections is greater than this value, the longest unused connection will be closed.

It is important to note that the keepalive directive does not limit the total number of connections that the Nginx process can make to the upstream servers. New connections are always created as needed. The connections parameter should be set slightly lower so that the upstream server can handle the additional incoming connections.

Example of configuring memcached upstream server connection keepalive:

upstream memcached_backend {
  server 127.0.0.1:11211;
  server 10.0.0.2:11211;

  keepalive 32;
}

server {
  ...

  location /memcached/ {
    set $memcached_key $uri;
    memcached_pass memcached_backend;
  }

}

For HTTP proxies, the proxy_http_version directive should be set to "1.1" and the value of the "Connection" header should be cleared.

upstream http_backend {
  server 127.0.0.1:8080;

  keepalive 16;
}

server {
  ...

  location /http/ {
    proxy_pass http://http_backend;
    proxy_http_version 1.1;
    proxy_set_header Connection "";
    ...
  }
}

Alternatively, HTTP/1.0 protocol persistent connections can also be achieved by sending a "Connection: Keep-Alive" header. However, this is not recommended.

For FastCGI servers, you need to set the fastcgi_keep_conn directive to make the connection keepalive work:

upstream fastcgi_backend {
  server 127.0.0.1:9000;

  keepalive 8;
}

server {
  ...

  location /fastcgi/ {
    fastcgi_pass fastcgi_backend;
    fastcgi_keep_conn on;
    ...
  }
}

When using a load balancing method other than the default round-robin method, it must be configured before the keepalive directive.

There is no plan to implement keepalive connections for the SCGI and uwsgi protocols.

grammar: least_conn;
default value:
Context: upstream

This directive appeared in versions 1.3.1 and 1.2.2.

Specifies the load balancing method for the server group. The request is sent to the server with the least active connections according to its weight value. If there are multiple such servers, try using a weighted round-robin method.

Embedded variables

The ngx_http_upstream_module module supports the following embedded variables:

$upstream_addr holds the server's IP address and port or the path to a UNIX domain socket. During the request processing, if multiple servers are tried, their addresses will be concatenated and separated by commas, for example: "192.168.1.1:80, 192.168.1.2:80, unix:/tmp/sock". If there are internal redirects between servers via the "X-Accel-Redirect" header or error_page, then these server groups will be separated by colons, for example: "192.168.1.1:80, 192.168.1.2:80, unix:/tmp/sock : 192.168.10.1:80, 192.168.10.2:80". $upstream_response_time holds the server response time with millisecond precision, (output) in seconds. When multiple responses appear, they are also separated by commas and colons. $upstream_status holds the server's response code. When multiple responses appear, they are also separated by commas and colons. $upstream_http_... holds the value of the server's response header. For example, the value of the "Server" response header can be obtained through the $upstream_http_server variable. Note that only the headers of the last response are preserved.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Installation and configuration method of Nginx+PHP5 under Windows
  • Summary of the method of 301 redirection of domain names under Nginx
  • CentOS+Nginx+PHP+MySQL detailed configuration (illustration)
  • Nginx multi-site configuration method collection
  • How to configure 404 error page under NGINX
  • nginx prompt: Solution to 500 Internal Server Error
  • Solution to Nginx 403 forbidden
  • Solution to nginx FastCGI error Primary script unknown
  • Nginx pseudo-static configuration and common Rewrite pseudo-static rules collection
  • Detailed explanation of nginx log configuration instructions
  • How to set up Nginx to pass client IP when used as a reverse proxy
  • Solution to Nginx 403 Forbidden error caused by permission problem
  • Perfect solution to Nginx 504 Gateway time-out problem
  • Detailed explanation of how to configure timeout in Nginx server
  • Nginx server reverse proxy proxy_pass configuration method explanation
  • Detailed explanation of how to configure port forwarding other than port 80 in Nginx server
  • Detailed explanation of Nginx timeout configuration
  • Detailed instructions for nginx from installation to configuration (installation, security configuration, anti-hotlinking, dynamic and static separation, HTTPS configuration, performance optimization)

<<:  mysql8.0.11 winx64 installation and configuration method graphic tutorial (win10)

>>:  A brief analysis of the responsiveness principle and differences of Vue2.0/3.0

Recommend

How to view version information in Linux

How to view version information under Linux, incl...

How to export mysql query results to csv

To export MySQL query results to csv , you usuall...

JavaScript Composition and Inheritance Explained

Table of contents 1. Introduction 2. Prototype ch...

Detailed explanation of MySQL Truncate usage

Table of contents MySQL Truncate usage 1. Truncat...

How to solve the problem that MySQL cannot start because it cannot create PID

Problem Description The MySQL startup error messa...

Three strategies for rewriting MySQL query statements

Table of contents Complex query and step-by-step ...

Vue simulates the shopping cart settlement function

This article example shares the specific code of ...

Detailed steps for Linux account file control management

In the Linux system, in addition to various accou...

Complete Tutorial on Deploying Java Web Project on Linux Server

Most of this article refers to other tutorials on...

A brief discussion on the problem of Docker run container being in created state

In a recent problem, there is such a phenomenon: ...

MySQL 8.X installation tutorial under Windows

I had been using MySQL 5.7 before, but because My...

Uninstalling MySQL database under Linux

How to uninstall MySQL database under Linux? The ...