search
HomeBackend DevelopmentPHP TutorialMillion-level PHP website architecture technology revealed_PHP tutorial
Million-level PHP website architecture technology revealed_PHP tutorialJul 13, 2016 pm 05:39 PM
facebookphpworldlearnBackstageexisttechnologyRevealmostArchitecturemillionofsitewebsite

After learning about the world’s largest PHP site, Facebook’s backend technology, today we will learn about the website architecture of a million-level PHP site: Poppen.de. Poppen.de is a social networking site in Germany. It is a small website compared to Facebook and Flickr, but it has a good architecture and integrates many technologies, such as Nigix, MySql, CouchDB, Erlang, Memcached, RabbitMQ, PHP, Graphite, Red5 and Tsung.

Statistical information

 ◆2 million registered users;

 ◆20,000 concurrent users;

 ◆200,000 private messages per day;

 ◆250,000 logins per day;

 ◆The project team has 11 developers, two designers, and two system administrators;

Business Model

This website adopts a freemium model, and users can use any of the following services for free:

 ◆Search other users;

 ◆Send a message to your friends;

 ◆Upload pictures and videos;

 ◆Find friends;

 ◆Video chat;

 ◆More…

But if users want to enjoy unlimited messaging and uploading pictures, they have to pay for different types of membership services according to their needs. The same strategy is used for video chat and other services on the website.

Toolbox

Nginx

All services of Poppen.de are based on Nginx service. The front end has two Nginx servers serving a load of 150,000 requests per minute at peak times. Each machine is four years old and has only one CPU and 3GB of RAM. Poppen.de has three independent image servers, and three Nginx servers provide *.bilder.poppen.de with 80,000 request services per minute.

A cool design in the Nginx architecture is that many requests are handled by Memcached, so requests get content from the cache without directly accessing the PHP machine. For example, user information pages (user profiles) are content that requires intensive processing on the website. If all user information pages are cached on Memcached, then the request will directly obtain the content from Memcached. Poppen.de's Memcached can handle 8,000 requests per minute.

There are three Nginx image servers in the architecture to provide local image caching, and users upload images to a central file server. When an image is requested from one of the three Nginx, if the image does not exist locally on the server, it will be downloaded from the central file server to the server for caching and service. This load-balanced distributed image server architecture design can reduce the load on primary storage devices.

PHP-FPM

This website runs on PHP-FPM. There are a total of 28 PHP machines with dual CPUs and 6GB of memory, each running 100 PHP-FPM worker threads. Using PHP5.3.x with APC enabled. PHP5.3 can reduce CPU and memory usage by more than 30%.

 The program code is developed based on the Symfony1.2 framework. One is that external resources can be used, and the other is that it can improve project development progress, and at the same time, it can make it easier for new developers to join the team on a well-known framework. Although nothing is perfect, you can get a lot of benefits from the Symfony framework, allowing the team to focus more on Poppen.de's business development.

Website performance optimization uses XHProf, which is a class library open sourced by Facebook. This framework is very easy to personalize and configure, and can cache most expensive server calculations.

MySQL

 MySQL is the main RDBMS for websites. The website has several MySql servers: a 4CPU, 32GB server stores user-related information, such as basic information, photo description information, etc. This machine has been used for 4 years, and the next step is to replace it with a shared cluster. The design is still based on this system to simplify the data access code. Data partitioning is based on user ID, because most of the information in the website is user-centered, such as photos, videos, messages, etc.

There are three servers providing user forum services based on a master-slave-slave configuration architecture. A slave server is responsible for storing custom messages on the website, and there are currently 250 million messages. The other four machines are in a master-slave configuration. In addition, four machines are configured into an NDB cluster to specifically serve intensive write operation data, such as user access statistics.

The data table design should try to avoid association operations and cache as much data as possible. Of course, the structural specifications of the database have been completely destroyed. Therefore, to make searching easier, database design creates data mining tables. Most of the tables are MyISAM-type tables, which can provide fast search. The problem now is that more and more tables have been fully locked. Poppen.de is considering migrating to the XtraDB storage engine.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/486300.htmlTechArticleAfter learning about the world’s largest PHP site, Facebook’s backend technology, today we will learn about a million-level PHP Website architecture of the site: Poppen.de. Poppen.de is a social networking site in Germany...
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
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment