search

Query Admin

System Administration Tips, Security, Internet

Skip to content

Home

About Me

500 Million hits/day with Nginx + PHP-FPM + MySQL

I have recently registered to blitz.io, a very interested cloud service which allows users to stress-test a web server simulating up to 50K concurrent connections, with the possibility to specify different regions to originate requests, the HTTP method, the timeout and much more. This service can help to properly configure the web server (Nginx, Lighttpd, etc), the PHP-FPM and the MySQL to handle as more concurrent connections as possible.

I wanted to test how many concurrent connections Nginx + PHP-FPM + MySQL (Percona) could handle in one dedicated server and the results are very promising as the server handled more than 10,000 concurrent connections with an average CPU usage of 50% / 65%.

The dedicated server has the following hardware specs: Intel Xeon E3 1230v3 (4 cores 8 threads at 3.3 GHz), 32 GB DDR3 ECC, 120 GB SSD, 300 Mbit/s Bandwidth. The Nginx version used is 1.4.5-stable, the MySQL (Percona Server) version used is 5.6.15-63.0 and the PHP-FPM version used is PHP 5.5.9-1~dotdeb.1 (fpm-fcgi).

The test involved the GET request of a remote PHP web page (/test.php?item=testing-12444) used to query the MySQL database with a table of more than 100K rows and print the found row’s items in a HTML web page. So we have not tested the serving of a static file but a PHP page used to display dynamic content.

The following parameters were used in the Blitz rush test:

This is a screenshot of the Nginx status page showing active connections:

This is a screenshot of the output generated by the “top” command:

This is a screenshot of the PHP-FPM status page:

Now lets see how I have configured Nginx, PHP-FPM, MySQL and Sysctl.conf file.

/etc/nginx/nginx.conf:

user nginx;worker_processes 8;error_log /var/log/nginx/error.log warn;pid /var/run/nginx.pid;worker_rlimit_nofile 150000; events {  worker_connections 150000;  multi_accept on;  use epoll;} http {    include /etc/nginx/mime.types;    default_type application/octet-stream;    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '                      '$status $body_bytes_sent "$http_referer" '                      '"$http_user_agent" "$http_x_forwarded_for"';     access_log /var/log/nginx/access.log  main;     sendfile on;    tcp_nopush on;    keepalive_timeout 65;    reset_timedout_connection on;    types_hash_max_size 2048;    server_tokens off;    server_names_hash_bucket_size 256;    client_max_body_size 32k;    client_body_buffer_size 32k;    client_body_in_single_buffer on;    client_body_timeout 180s;    client_header_timeout 180s;    client_header_buffer_size 32k;    large_client_header_buffers 4 32k;     include /etc/nginx/conf.d/*.conf;}

/etc/nginx/fastcgi_params:

...# Custom parametersfastcgi_connect_timeout 180s;fastcgi_send_timeout 600s;fastcgi_read_timeout 600s;fastcgi_intercept_errors on;fastcgi_max_temp_file_size 0;fastcgi_pass 127.0.0.1:9000;fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;fastcgi_index index.php;

/etc/php5/fpm/pool.d/www.conf:

...listen = 127.0.0.1:9000pm = staticpm.max_children = 4000pm.max_requests = 50000...

/etc/sysctl.conf:

fs.file-max = 150000net.core.netdev_max_backlog=32768net.core.optmem_max=20480#net.core.rmem_default=65536#net.core.rmem_max=16777216net.core.somaxconn=50000#net.core.wmem_default=65536#net.core.wmem_max=16777216net.ipv4.tcp_fin_timeout=120#net.ipv4.tcp_keepalive_intvl=30#net.ipv4.tcp_keepalive_probes=3#net.ipv4.tcp_keepalive_time=120net.ipv4.tcp_max_orphans=262144net.ipv4.tcp_max_syn_backlog=524288net.ipv4.tcp_max_tw_buckets=524288#net.ipv4.tcp_mem=1048576 1048576 2097152#net.ipv4.tcp_no_metrics_save=1net.ipv4.tcp_orphan_retries=0#net.ipv4.tcp_rmem=4096 16384 16777216#net.ipv4.tcp_synack_retries=2net.ipv4.tcp_syncookies=1#net.ipv4.tcp_syn_retries=2#net.ipv4.tcp_wmem=4096 32768 16777216

/etc/mysql/my.cnf:

# Generated by Percona Configuration Wizard (http://tools.percona.com/) version REL5-20120208 [mysql] # CLIENT #port                           = 3306socket                         = /var/run/mysqld/mysqld.sock [mysqld] # GENERAL #user                           = mysqldefault-storage-engine         = InnoDBsocket                         = /var/run/mysqld/mysqld.sockpid-file                       = /var/run/mysqld/mysqld.pidtmpdir                         = /tmp # MyISAM #key-buffer-size                = 32Mmyisam-recover                 = FORCE,BACKUP # SAFETY #max-allowed-packet             = 16Mmax-connect-errors             = 1000000skip-name-resolvesysdate-is-now                 = 1innodb                         = FORCEinnodb-strict-mode             = 1 # DATA STORAGE #datadir                        = /var/lib/mysql # CACHES AND LIMITS #tmp-table-size                 = 32Mmax-heap-table-size            = 32Mquery-cache-type               = 0query-cache-size               = 0max-connections                = 15000thread-cache-size              = 50open-files-limit               = 65535table-definition-cache         = 1024table-open-cache               = 2048 # INNODB #innodb-flush-method            = O_DIRECTinnodb-log-files-in-group      = 2innodb-log-file-size           = 128Minnodb-flush-log-at-trx-commit = 2innodb-file-per-table          = 1innodb-buffer-pool-size        = 1456Minnodb_fast_shutdown           = 0 # LOGGING #log-error                      = /var/log/mysql/mysql-error.loglog-queries-not-using-indexes  = 0slow-query-log                 = 1slow-query-log-file            = /var/log/mysql/mysql-slow.log # REDUCE MEMORY USAGE #performance_schema             = 0

Finally, this is the screenshot of the Blitz rush test results:

As you can see, the test generated 344,447 successful hits in 60.00 seconds and it transferred 3.39 GB of data in and out of our PHP web page (that involved queries to our database of 100K rows). The average hit rate of 5,740.78/second translates to about 496,003,680 hits/day.

This is a screenshot of the hit rate graph:

This is a screenshot of the responses time:

Contact me if you have any questions.

                   

Stay Updated

Receive News Directly on Your Email

Become a Fan on Our Facebook Page

Subscribe to RSS Feeds

1 Billion hits/day with Nginx + PHP5-FPM + MySQL

Building a simple multilingual PHP website

New wave of spam emails that spread zBot trojan

SMTP ERROR: Password command failed: 534-5.7.14

Automatically close alert message on Twitter Bootstrap

How to use MySQL LOAD DATA LOCAL INFILE

Flush and clear cached memory in Linux server

Import large bulk of data into MySQL InnoDB

Random Posts

500 Million hits/day with Nginx + PHP-FPM + MySQL

Fix the Nginx 504 gateway timeout

Optimize Linux Sysctl.conf Parameters

Connect() to unix:/var/run/php5-fpm.sock failed

Configure FastCGI_Cache for WordPress and Nginx

Enable Nginx status page

Configure PHP-CGI without Spawn-FCGI

111 Connection refused while connecting to upstream

                   

This entry was posted in Nginx and tagged blitz io test, blitz site test, concurrent connections, nginx benchmark, nginx concurrent connections on February 23, 2014.

Post navigation

← Fix the Nginx 504 gateway timeout Free world flags icon sets →

Search for:

Categories

Apache (8)

Free Icons (1)

Htaccess (6)

Lighttpd (9)

Linux (55)

Microsoft Windows (12)

MySQL (21)

Nginx (19)

Raspberry Pi (7)

Uncategorized (18)

WordPress (21)

Recent Posts

Check if Hardware DEP is enabled on Windows OS

Check if PAE is enabled on Windows 7

XenServer VM virtual disk could not be found

Create a screenshot of a website with PHP

CSS3Pie Basic Usage

jQuery $( document ).ready(function()

Check if Bootstrap modal is already open

Delay display of Bootstrap 3 modal after click

WordPress get Page ID outside the Loop

PHP readfile() corrupted ZIP file

Fixed height and vertical scrollbar on SyntaxHighlighter Evolved

Organize uploads folder by Post ID, Slug, Author, Media Type

Use meta tags to disable caching in web browsers

Enable DEP and ASLR on a Delphi XE executable

Automate Code Signing with InnoSetup

Proudly powered by WordPress


Statement
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
How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

How does PHP handle object cloning (clone keyword) and the __clone magic method?How does PHP handle object cloning (clone keyword) and the __clone magic method?Apr 17, 2025 am 12:24 AM

In PHP, use the clone keyword to create a copy of the object and customize the cloning behavior through the \_\_clone magic method. 1. Use the clone keyword to make a shallow copy, cloning the object's properties but not the object's properties. 2. The \_\_clone method can deeply copy nested objects to avoid shallow copying problems. 3. Pay attention to avoid circular references and performance problems in cloning, and optimize cloning operations to improve efficiency.

PHP vs. Python: Use Cases and ApplicationsPHP vs. Python: Use Cases and ApplicationsApr 17, 2025 am 12:23 AM

PHP is suitable for web development and content management systems, and Python is suitable for data science, machine learning and automation scripts. 1.PHP performs well in building fast and scalable websites and applications and is commonly used in CMS such as WordPress. 2. Python has performed outstandingly in the fields of data science and machine learning, with rich libraries such as NumPy and TensorFlow.

Describe different HTTP caching headers (e.g., Cache-Control, ETag, Last-Modified).Describe different HTTP caching headers (e.g., Cache-Control, ETag, Last-Modified).Apr 17, 2025 am 12:22 AM

Key players in HTTP cache headers include Cache-Control, ETag, and Last-Modified. 1.Cache-Control is used to control caching policies. Example: Cache-Control:max-age=3600,public. 2. ETag verifies resource changes through unique identifiers, example: ETag: "686897696a7c876b7e". 3.Last-Modified indicates the resource's last modification time, example: Last-Modified:Wed,21Oct201507:28:00GMT.

Explain secure password hashing in PHP (e.g., password_hash, password_verify). Why not use MD5 or SHA1?Explain secure password hashing in PHP (e.g., password_hash, password_verify). Why not use MD5 or SHA1?Apr 17, 2025 am 12:06 AM

In PHP, password_hash and password_verify functions should be used to implement secure password hashing, and MD5 or SHA1 should not be used. 1) password_hash generates a hash containing salt values ​​to enhance security. 2) Password_verify verify password and ensure security by comparing hash values. 3) MD5 and SHA1 are vulnerable and lack salt values, and are not suitable for modern password security.

PHP: An Introduction to the Server-Side Scripting LanguagePHP: An Introduction to the Server-Side Scripting LanguageApr 16, 2025 am 12:18 AM

PHP is a server-side scripting language used for dynamic web development and server-side applications. 1.PHP is an interpreted language that does not require compilation and is suitable for rapid development. 2. PHP code is embedded in HTML, making it easy to develop web pages. 3. PHP processes server-side logic, generates HTML output, and supports user interaction and data processing. 4. PHP can interact with the database, process form submission, and execute server-side tasks.

PHP and the Web: Exploring its Long-Term ImpactPHP and the Web: Exploring its Long-Term ImpactApr 16, 2025 am 12:17 AM

PHP has shaped the network over the past few decades and will continue to play an important role in web development. 1) PHP originated in 1994 and has become the first choice for developers due to its ease of use and seamless integration with MySQL. 2) Its core functions include generating dynamic content and integrating with the database, allowing the website to be updated in real time and displayed in personalized manner. 3) The wide application and ecosystem of PHP have driven its long-term impact, but it also faces version updates and security challenges. 4) Performance improvements in recent years, such as the release of PHP7, enable it to compete with modern languages. 5) In the future, PHP needs to deal with new challenges such as containerization and microservices, but its flexibility and active community make it adaptable.

Why Use PHP? Advantages and Benefits ExplainedWhy Use PHP? Advantages and Benefits ExplainedApr 16, 2025 am 12:16 AM

The core benefits of PHP include ease of learning, strong web development support, rich libraries and frameworks, high performance and scalability, cross-platform compatibility, and cost-effectiveness. 1) Easy to learn and use, suitable for beginners; 2) Good integration with web servers and supports multiple databases; 3) Have powerful frameworks such as Laravel; 4) High performance can be achieved through optimization; 5) Support multiple operating systems; 6) Open source to reduce development costs.

See all articles

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft