search
HomeBackend DevelopmentPHP TutorialPHP Load Balancing_PHP Tutorial
PHP Load Balancing_PHP TutorialJul 13, 2016 pm 05:48 PM
phpwebattractLargeapplicationserverofloadpastrunneed

In the past, running a large web application meant running a large web server. Because your application attracts a large number of users, you will have to add more memory and processors to your server. Today, the "big server" model is gone, replaced by a large number of small servers using a variety of load balancing techniques. ​

The advantages of "more small servers" over the past "large server" model are reflected in two aspects:

1. If the server goes down, the load balancing system will stop requesting the downed server and instead distribute the load to other normally running servers.

2. Scaling your server is easier. All you have to do is add new servers to the load balancing system. No need to interrupt your application. So, seize this opportunity. The trade-off, of course, is that this requires a little more complexity in your application development. That’s what this article is going to cover.

At this point you may be saying to yourself: "But how do I know I'm using load balancing?". The most honest answer, if you're asking this question, is that you're probably not using a load balancing system and your system doesn't need to consider it. In most cases, when the application grows large enough, load balancing needs to be explicitly proposed and set up. However, I occasionally see web hosting companies doing this load balancing for customer applications, or doing it themselves as described below. Note that I keep mentioning "web applications" rather than websites. This is to distinguish "web applications" from complex sites that often involve server-side programming and databases, rather than websites that only display simple static content.
1. PHP files The first question is, if you have a large number of small servers, how do you upload your php files to all servers? The following methods are for your reference:
◆Upload all files to each server separately. The problem with this method is: imagine you have 20 servers, then this will easily lead to errors during the upload process, and it is very likely to cause errors on different servers during updates. Different versions of files.
◆Use ‘rsync’ (or similar software). Such a tool can synchronize files on a local directory and multiple remote host directories. ​
◆Use version control software (such as subversion). This is my favorite method. It allows me to maintain my code very well, and when I publish my application, I can run the svn update command on each server to synchronize it. This approach also makes it easier to switch servers to a previous version of the code. ​
◆Use a file server (you may find that NFS is very suitable for this). This method is to use a file server to store your web application. Of course, if your file server goes down, then all your sites will be Cannot be used. At this time, you will need to spend more money to restore it. Which method you choose depends on your needs and the skills you have. If you use a version control system, then you may want to plan a way to update the code on all servers by executing an update command at the same time. However, if you use a file server, you will need to implement some failure recovery mechanism to prevent request failures in the event that the server goes down.
2. File upload When there is only one server, file upload is not a problem. But when we have multiple servers, how should the uploaded files be stored? The problem of uploading files is similar to cross-server PHP file storage. Here are several possible solutions:
◆Store the file into the database. Most data allow binary data to be stored. When you request a file download, access data outputs the binary data and the corresponding file name and type to the user. You should consider how the database will store your files before using this solution. The problem with this approach is that if the database server goes down it will make the files unavailable.
◆Storage uploaded files on a file server. As in the previous introduction, you need to install a file server to be shared by all web servers. Upload all uploaded files here. After uploading, all web servers can use it. However, if the file server is down, then image file download interruptions may occur.
◆Design your own upload mechanism to transfer files to each server. This method does not have the disadvantages of a single file server or database solution, but will increase the complexity of your code. For example, if the server goes down during uploading to multiple servers, how do you deal with it? Using a database to store uploaded files but designing a file caching mechanism is a good solution. When the server receives a file download request, it first checks whether the file exists in the cache system. If found, it downloads it from the cache system. Otherwise, it reads it from the database and caches it in the file system.
3. Sessions If you are familiar with PHP's session processing, you will probably know that by default, it stores session data in temporary files on the server. Moreover, this file is only on the server where you requested it, but subsequent requests may be processed by another server, which will generate a new session on the other server. This causes sessions to be frequently unrecognized, such as logged-in users always being asked to log in again. ​

My recommended solution is to either re-establish PHP's built-in session processing mechanism to store session data in the database, or implement your own mechanism to ensure that a user's request is sent to the same server. ​
4. Configuration 
Although this topic is not specifically related to PHP, I feel it is necessary to mention it. When running clustered servers, it is a good idea to have some way of keeping configuration files in sync between servers. If the configuration files are inconsistent, it can result in some very strange intermittent behavior that can be difficult to troubleshoot. ​

I recommend managing them individually using a version control system. This way you can store different php configuration files for different project installations, and also keep all server configuration files in sync.
5. Logging 
Like configuration issues, logging is not just related to PHP. But it's still very important to keep your server running healthy. Without a proper logging system, how would you know if your PHP code starts generating errors (you always turn off the display_errors setting when the system is running, don't you?)

There are several ways you can implement logging:
1. Record logs on each server.

This is the simplest way. Each machine records only one file. The advantage is that it is simple and may require very little configuration. However, as the number of servers increases, monitoring the log files on each server becomes very difficult.
2. Logging to a share This method still has the log files on each server, but they are stored on a central file server through the share mechanism, which will make monitoring the logs easier. The problem with this solution is that if the file server is unavailable, a simple log write problem will eventually cause the entire application to crash.
3. Record logs to a logging server. You can use a logging software, such as syslog, to write all logs to a central server. Although this method requires more configuration, it also provides the most robust solution

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/478436.htmlTechArticleIn the past, running a large web application meant running a large web server. Because your application attracts a large number of users, you will have to add more to your server...
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

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)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use