Table of Contents
1.1 High Concurrency Concept
2.1 Vertical expansion" >2 Improve the concurrency capability of the system2.1 Vertical expansion
Improve stand-alone processing capability
Add servers quantity, system performance can be linearly expanded" >2.2 Horizontal expansionAdd servers quantity, system performance can be linearly expanded
Home Operation and Maintenance Linux Operation and Maintenance What does linux high concurrency mean?

What does linux high concurrency mean?

Nov 11, 2022 pm 03:25 PM
linux

In Linux, high concurrency is a situation of "encountering a large number of operation requests in a short period of time" encountered during system operation. It mainly occurs when the web system intensively accesses a large number of requests and receives a large number of requests; this situation The occurrence will cause the system to perform a large number of operations during this period, such as requests for resources, database operations, etc.

What does linux high concurrency mean?

#The operating environment of this tutorial: linux7.3 system, Dell G3 computer.

High Concurrency Concept

1.1 High Concurrency Concept

High Concurrency It is one of the factors that must be considered in the design of Internet distributed system architecture. It usually refers to ensuring that the system can handle many requests in parallel at the same time through design. High concurrency (High Concurrency) is a situation encountered during the operation of the system where "a large number of operation requests are encountered in a short period of time". It mainly occurs when the web system concentrates a large number of accesses and receives a large number of requests ( For example: 12306 ticket grabbing situation; Tmall Double Eleven event). The occurrence of this situation will cause the system to perform a large number of operations during this period, such as requests for resources, database operations, etc.

1.2 High concurrency related indicators

Response Time(Response Time)
  • The system responds to the request time. For example, it takes 200ms for the system to process an HTTP request. This 200ms is the response time of the system.
    Throughput(Throughput)
  • The number of requests processed per unit time
    Query rate per second QPS (Query Per Second)
  • Number of response requests per second. In the Internet field, the distinction between this indicator and throughput is not so obvious
    Number of concurrent users (User Concurrence)
  • The number of users who simultaneously carry normal use of system functions. For example, in an instant messaging system, the number of simultaneous online users represents the number of concurrent users of the system to a certain extent

##1.3 High concurrency optimization

Limit on the maximum number of open files in a single process
  • Kernel TCP parameters
  • IO events Allocation mechanism

2 Improve the concurrency capability of the system2.1 Vertical expansion

Improve stand-alone processing capability

  • Enhance stand-alone hardware performance, for example: increase the number of CPU cores such as 32 cores, upgrade to a better network card such as 10G, and upgrade to a better hard drive such as SSD , expand the hard disk capacity such as 2T, expand the system memory such as 128G
    • to improve the performance of single-machine architecture, for example: use Cache to reduce the number of IO times, use asynchronous to increase single service throughput, use lock-free Data structure to reduce response time

2.2 Horizontal expansionAdd servers quantity, system performance can be linearly expanded

2.3 Common Internet layered architecture(1) Client layer: typical calls The party is a browser or mobile application APP

(2) Reverse proxy layer: system entrance, reverse proxy

(3) Site application layer: implement core application logic, return html or json

(4) Service layer: If servitization is implemented, there will be this layer

(5) Data-cache layer: Cache accelerates access to storage

(6 ) Data-database layer: database solidified data storage

2.4 Horizontal expansion architecture

The level of the reverse proxy layer Extension
  • When nginx becomes a bottleneck, you only need to increase the number of servers, deploy new nginx services, and add an external network IP to expand the performance of the reverse proxy layer. Theoretically infinitely high concurrency
  • is achieved through "DNS polling": dns-server is configured with multiple resolution IPs for a domain name, and each DNS resolution request accesses dns-server , these IPs will be polled and returned
  • Horizontal expansion of the site layer
  • is implemented through "nginx". By modifying nginx.conf, you can set up multiple web backends
    • When the web backend becomes a bottleneck, just increase the number of servers and add a new web service deployment in the nginx configuration Configuring a new web backend can expand the performance of the site layer and achieve theoretically infinitely high concurrency
    Horizontal expansion of the service layer
  • Achieved through "Service Connection Pool"
    • When the site layer calls the downstream service layer RPC-server through RPC-client, the The connection pool will establish multiple connections with downstream services. When the service becomes a bottleneck, just increase the number of servers, deploy new services, and establish new downstream service connections at RPC-client to expand the service layer performance and achieve theoretical results. Unlimited high concurrency on
    Horizontal expansion of the data layer
  • The data layer (cache, database) involves data Horizontal expansion horizontally splits the data (cache, database) originally stored on one server to different servers to achieve the purpose of expanding system performance.
    • Storage a certain range of data

      • user0 library, store uid range 1-1kw

      • user1 library, Storage uid range 1kw-2kw

    • Split horizontally according to hash

      • user0 library, store even uid data

      • user1 library, stores odd uid data

    # #Three single Linux servers improve concurrency

    3.1 iptables related

      ##Close the iptables firewall and prevent the kernel from loading the iptables module
    • Limit on the maximum number of open files in a single process (the default maximum number of open files in a single process is 1024)
    • ulimit –n 65535
      Copy after login

    • Software that modifies the number of open files in the Linux system for users Limits and hard limits
    • vim /etc/security/limits.conf
      * soft nofile 65535   #'*'表示修改所有用户的限制
      * hard nofile 65535
      Copy after login
      #用户完成系统登录后读取/etc/security/limits.conf文件
      vim /etc/pam.d/login
      sessionrequired /lib/security/pam_limits.so
      Copy after login

    3.2 Kernel TCP parametersTIME_WAIT status

      After the TCP connection is disconnected, it will remain in the TIME_WAIT state for a certain period of time before the port is released. When there are too many concurrent requests, a large number of connections in the TIME_WAIT state will be generated. If they cannot be disconnected in time, a large amount of port resources and server resources will be occupied
    • #查看TIME_WAIT状态连接
      netstat -n | grep tcp | grep TIME_WAIT |wc -l
      Copy after login
      # vim /etc/sysctl.conf
      net.ipv4.tcp_syncookies= 1 #表示开启SYNCookies。当出现SYN等待队列溢出时,启用cookies来处理,可防范少量SYN攻击,默认为0,表示关闭;
      net.ipv4.tcp_tw_reuse= 1 #表示开启重用。允许将TIME-WAITsockets重新用于新的TCP连接,默认为0,表示关闭;
      net.ipv4.tcp_tw_recycle= 1 #表示开启TCP连接中TIME-WAITsockets的快速回收,默认为0,表示关闭;
      net.ipv4.tcp_fin_timeout= 30  #修改系統默认的TIMEOUT 时间。
      Copy after login
    • Related recommendations: "
    Linux video tutorial

    The above is the detailed content of What does linux high concurrency mean?. For more information, please follow other related articles on the PHP Chinese website!

    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    Video Face Swap

    Video Face Swap

    Swap faces in any video effortlessly with our completely free AI face swap tool!

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    What computer configuration is required for vscode What computer configuration is required for vscode Apr 15, 2025 pm 09:48 PM

    VS Code system requirements: Operating system: Windows 10 and above, macOS 10.12 and above, Linux distribution processor: minimum 1.6 GHz, recommended 2.0 GHz and above memory: minimum 512 MB, recommended 4 GB and above storage space: minimum 250 MB, recommended 1 GB and above other requirements: stable network connection, Xorg/Wayland (Linux)

    Linux Architecture: Unveiling the 5 Basic Components Linux Architecture: Unveiling the 5 Basic Components Apr 20, 2025 am 12:04 AM

    The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

    vscode terminal usage tutorial vscode terminal usage tutorial Apr 15, 2025 pm 10:09 PM

    vscode built-in terminal is a development tool that allows running commands and scripts within the editor to simplify the development process. How to use vscode terminal: Open the terminal with the shortcut key (Ctrl/Cmd). Enter a command or run the script. Use hotkeys (such as Ctrl L to clear the terminal). Change the working directory (such as the cd command). Advanced features include debug mode, automatic code snippet completion, and interactive command history.

    How to check the warehouse address of git How to check the warehouse address of git Apr 17, 2025 pm 01:54 PM

    To view the Git repository address, perform the following steps: 1. Open the command line and navigate to the repository directory; 2. Run the "git remote -v" command; 3. View the repository name in the output and its corresponding address.

    How to run java code in notepad How to run java code in notepad Apr 16, 2025 pm 07:39 PM

    Although Notepad cannot run Java code directly, it can be achieved by using other tools: using the command line compiler (javac) to generate a bytecode file (filename.class). Use the Java interpreter (java) to interpret bytecode, execute the code, and output the result.

    Where to write code in vscode Where to write code in vscode Apr 15, 2025 pm 09:54 PM

    Writing code in Visual Studio Code (VSCode) is simple and easy to use. Just install VSCode, create a project, select a language, create a file, write code, save and run it. The advantages of VSCode include cross-platform, free and open source, powerful features, rich extensions, and lightweight and fast.

    What is the main purpose of Linux? What is the main purpose of Linux? Apr 16, 2025 am 12:19 AM

    The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

    How to run sublime after writing the code How to run sublime after writing the code Apr 16, 2025 am 08:51 AM

    There are six ways to run code in Sublime: through hotkeys, menus, build systems, command lines, set default build systems, and custom build commands, and run individual files/projects by right-clicking on projects/files. The build system availability depends on the installation of Sublime Text.

    See all articles