A brief discussion on Nginx10m+ high concurrency kernel optimization

A brief discussion on Nginx10m+ high concurrency kernel optimization

What is high concurrency?

  • The default Linux kernel parameters are designed for the most common scenarios and are not suitable for Web servers that support high concurrent access. Therefore, you need to modify the Linux kernel parameters to enable Nginx to have higher performance.
  • There are many things you can do when optimizing the kernel. However, we usually adjust it according to the business characteristics. When Nginx is used as a static web content server, a reverse proxy, or a server that provides compression, the kernel parameter adjustments are different. Here we make a simple configuration of the most common TCP network parameters that enable Nginx to support more concurrent requests.
  • These require modifying /etc/sysctl.conf to change kernel parameters.

Configuration Method

Configuration details

#Indicates the maximum number of handles that a single process can open;

fs.file-max = 999999

#Setting the parameter to 1 means that the socket in TIME_WAIT state can be reused for new TCP connections. This is of great significance to the server because there are always a large number of links in TIME_WAIT state.

net.ipv4.tcp_tw_reuse = 1

#When keepalive is enabled, the frequency with which TCP sends keepalive messages; the default is 2 hours. Setting it to 10 minutes can clear invalid links faster.

ner.ipv4.tcp_keepalive_time = 600

#When the server actively closes the connection, the socket remains in the FIN_WAIT_2 state for a longer time

net.ipv4.tcp_fin_timeout = 30

#This parameter indicates the maximum number of TIME_WAIT sockets allowed by the operating system. If this number is exceeded, the TIME_WAIT sockets will be cleared immediately and a warning message will be printed.

#This parameter defaults to 180000. Too many TIME_WAIT sockets will slow down the Web server.

net.ipv4.tcp_max_tw_buckets = 5000

#Define the value range of local ports for UDP and TCP links.

net.ipv4.ip_local_port_range = 1024 65000

#Defines the minimum, default, and maximum values ​​of the TCP receive buffer.

net.ipv4.tcp_rmem = 10240 87380 12582912

#Define the minimum, default, and maximum values ​​of the TCP send buffer.

net.ipv4.tcp_wmem = 10240 87380 12582912

#When the speed at which the network card receives data packets is greater than the kernel processing speed, there will be a queue to save these data packets. This parameter represents the larger value of the queue.

net.core.netdev_max_backlog = 8096

#Indicates that the kernel socket accepts the default size of the buffer.

net.core.rmem_default = 6291456

#Indicates the default size of the kernel socket send buffer.

net.core.wmem_default = 6291456

#Indicates that the kernel socket accept buffer has a larger size.

net.core.rmem_max = 12582912

#Indicates the maximum size of the kernel socket send buffer.

net.core.wmem_max = 12582912

Note: The above four configurations need to be considered comprehensively based on business logic and actual hardware costs;

#Not related to performance. Used to resolve TCP's SYN attack.

net.ipv4.tcp_syncookies = 1

#This parameter indicates the maximum length of the SYN request queue accepted during the TCP three-way handshake establishment phase. The default is 1024. Setting it larger can prevent Linux from losing the connection request initiated by the client when Nginx is too busy to accept new connections.

net.ipv4.tcp_max_syn_backlog = 8192

#This parameter is used to enable timewait fast recycling.

net.ipv4.tcp_tw_recycle = 1

The default value of the option is 128. This parameter is used to adjust the number of TCP connections initiated by the system at the same time. In high-concurrency requests, the default value may cause connection timeout or retransmission, so this value needs to be adjusted in combination with the number of high-concurrency requests.

net.core.somaxconn=262114

The #option is used to set the maximum number of TCP sockets in the system that are not associated with any user file handle. If this number is exceeded, the orphaned link will be reset immediately and a warning message will be output. This limit indicates that in order to prevent simple DOS attacks, do not rely too much on this limit or even think of reducing this value. In more cases, increase this value.

net.ipv4.tcp_max_orphans=262114

For ease of use, you can directly copy the following

net.ipv4.tcp_tw_reuse = 1
fs.file-max = 999999
net.ipv4.tcp_fin_timeout = 30
ner.ipv4.tcp_keepalive_time = 600

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:
  • Summarize how to optimize Nginx performance under high concurrency
  • Detailed explanation of nginx optimization in high concurrency scenarios
  • Nginx+Lua+Redis builds high-concurrency web applications
  • An example of using Lvs+Nginx cluster to build a high-concurrency architecture

<<:  A brief discussion on the whole process of Vue's first rendering

>>:  MySQL database table partitioning considerations [recommended]

Recommend

Several commonly used methods for centering CSS boxes (summary)

The first one: Using the CSS position property &l...

Install CentOS 7 on VMware14 Graphic Tutorial

Introduction to CentOS CentOS is an enterprise-cl...

Pure CSS implementation of radio and checkbox effect example

radio-and-checkbox Pure CSS to achieve radio and ...

MySQL briefly understands how "order by" works

For sorting, order by is a keyword we use very fr...

How to use Nginx to proxy multiple application sites in Docker

Preface What is the role of an agent? - Multiple ...

CentOS 7 Forgot Password Solution Process Diagram

need Whether it is a Windows system or a Linux sy...

How to read the regional information of IP using Nginx and GeoIP module

Install GeoIP on Linux yum install nginx-module-g...

CSS style does not work (the most complete solution summary in history)

When we write pages, we sometimes find that the C...

Detailed explanation of the specific use of the ENV instruction in Dockerfile

1. The ENV instruction in the Dockerfile is used ...

JavaScript canvas to achieve mirror image effect

This article shares the specific code for JavaScr...

Mysql index types and basic usage examples

Table of contents index - General index - Unique ...

Introduction and use of js observer mode

Table of contents I. Definition 2. Usage scenario...

Vue + element to dynamically display background data to options

need: Implement dynamic display of option values ...

Specific use of MySQL operators (and, or, in, not)

Table of contents 1. Introduction 2. Main text 2....