SlideShare una empresa de Scribd logo
1 de 33
Descargar para leer sin conexión
ZingMe Practice
For Building Scalable PHP Website




                  By Chau Nguyen Nhat Thanh
                    ZingMe Technical Manager
                         Web Technical - VNG
Agenda

●
    About ZingMe
●
    Scaling PHP application
    ●
        Scalability definition
    ●
        Scaling up vs scaling out
    ●
        Load balancing
    ●
        Problem with PHP when using load balancer
    ●
        User session management
    ●
        Problem with code deployment
                                                    2
Agenda(cont.)
●   ZingMe practice in building scalable PHP
    applications
    ●   Choosing scale out
    ●   Load balancing model
    ●   User session management system
    ●   Code deployment system
●   ZingMe more
    ●   Open social API
About ZingMe
●   A social network
About ZingMe
●   25M registered accounts
●   1.7M daily active users
●   5M monthly active users
●   > 300 servers (1.2 K cores)
    ●   50 DB servers, >40 Memcached servers
    ●   ~ 100 Web servers
    ●   40 servers for Hadoop farm
    ●   Others (storage, ...)
About ZingMe
●   Load balancing: HA proxy, LVS, hardware (?)
●   Web server: Nginx, lighttpd, apache, hardware (?)
●   Web caching: squid, varnish, hardware (?)
●   Caching: Redis, memcached
●   Programming language: PHP, C++,Java, python,
    bash script
●   Searching: Solr, lucene
●   DB: MySQL , NOSQL
●   Log system: Scriber + Hadoop
Scaling PHP application
●   Scalability definition
●   Scaling up vs scaling out
●   Load balancing
●   User session management
●   Code deployment
Scalability definition
“Scalability is a desirable property of a system,
a network, or a process, which indicates its
ability to either handle growing amounts of work
in a graceful manner or to be enlarged” from
Wikipedia
”A web application is scalable when is able to
manage a growing traffic with additional
resources (CPU, RAM) without software
changes” by Jan Burkl, Enrico Zimuel (Zend
Technologies)
Scaling up vs scaling out
●   Scaling up (vertically)
    ●   Add more resources to single node in a
        system
    ●   Resources can be software or hardware
    ●   Make system more powerful by increase node
        powerful
    ●   Has an upper limit
    ●   Hard to implement HA solution
    ●   Cost: expensive
Scaling up vs scaling out
●   Scaling out (horizontally)
    ●   Add more nodes to a system
    ●   Make system more powerful by increase
        number of nodes in the system
    ●   Maybe has no upper limit
    ●   Easy to implement HA solution
    ●   Cost: cheap
Scaling up vs scaling out




          •
            From slide ”How to scale PHP application”
     •
       by Jan Burkl, Enrico Zimuel (Zend Technologies)
Load balancing
●   The need of a load balancer
    ●   Most of big web site choose scale out
    ●   Need a component for distribute load among
        the nodes
    ●   Such component called load balancer
Load balancing




   •
      from ”Server load balancing architectures”
   •
     by Gregor Roth, JavaWorld.com, 10/21/08
Load balancing
●   How load balancer work?
    ●   Has 2 interfaces: Back-end, Front-end
    ●   Front-end receive the request from client
    ●   Back-end forward request to internal node
    ●   Back-end receive the response from node
    ●   Front-end response to client
    ●   Status monitor for monitoring the back-end
        interface
Load balancing
●   Web application load balancer
    ●   Work in layer 7
    ●   Can filter HTTP header and body in both
        request and response
    ●   Can be hardware or software
    ●   F5 BIG-IP, Citrix Netscale, Cisco
    ●   HA Proxy, Nginx, lighttpd
Problem with PHP when using
           load balancer
●   PHP stores session info into local disk by
    default
●   How to scale session to 2 nodes ?
●   Can be scaled if:
    ●   Load balancer has a method for routing the
        same user requests into the same nodes (1)
    ●   Override the default PHP mechanism for
        storing session of all nodes in the same
        storage (2)
Problem with PHP when using
           load balancer
●   Method (1)
    ●   Load balancer must keep state for connection
    ●   Overhead for routing request
    ●   Not balancing
●   Method (2)
    ●   Must change software
    ●   No overhead for routing request
    ●   More balancer than (1)
PHP session management
●   Choose method (2)
●   Centralize storage among web server
    ●   Storage can be NFS, DB, memcached...
    ●   All web servers access the same storage
●   Override the default behavior of PHP
    session functions
●   Bottleneck can be in storage
PHP session management
●   Call session_set_save_handler( callback
    $open , callback $close , callback $read ,
    callback $write , callback $destroy ,
    callback $gc ) to override default behavior
●   More infos:
    ●   http://php.net/manual/en/function.sessio
        n-set-save-handler.php
Problem with code deployment
●   Adding new server to system:
    ●   What kind of configuration must be changed?
    ●   Which code will be deployed ? In which
        server?
    ●   How can we monitor them?
Problem with PHP code
               deployment
●   What will we change in PHP code ?
    ●   Separate all configuration to configuration file
    ●   Do not hard code any configuration
    ●   Put the code in a central server like SVN
    ●   Use scripts to pull all code to production
        server
    ●   Build profiler system for monitor the code
ZingMe practice for building
         scalable web site
●   Choose Scale out
●   Use HA proxy for load balancing
●   Use Memcached for session storage
●   Simple code deployment system base on
    SVN and bash script
ZingMe practice for building
         scalable web site
●   Divide into small services
●   Use commodity hardwares
●   Use open source software
●   Server has the same environment
●   Add new server < 5mins
ZingMe load balancing model
ZingMe load balancing model
●   Use HA proxy
    ●   HTTP based proxy
    ●   High availability
    ●   Use epoll
●   Use content switching to divide the service
    into group
●   Define load balancing factors based on the
    power of the back-end server
ZingMe load balancing model
Normal traffic
ZingMe load balancing model
ZingMe traffic
ZingMe user session
              management
●   Use memcached for high performance
●   Override Zend_Session
●   3K hits/s
Why we choose memcache?
●   L1 cache reference                          0.5 ns
●   Branch mispredict                             5 ns
●   L2 cache reference                            7 ns
●   Mutex lock/unlock                            25 ns
●   Main memory reference                       100 ns
●   Compress 1K bytes with Zippy              3,000 ns
●   Send 2K bytes over 1 Gbps network        20,000 ns
●   Read 1 MB sequentially from memory      250,000 ns
●   Round trip within same datacenter       500,000 ns
●   Disk seek                              10,000,000 ns
●   Read 1 MB sequentially from disk     20,000,000 ns
●   Send packet CA->Netherlands->CA      150,000,000 ns

                                           From Jeff Dean - google.com
ZingMe code deployment
●   Developer upload code to SVN
●   SO runs scripts to deploy code to production server
●   Has staging server for real environment test
●   Dev cannot touch to production environment
●   Using environment parameter
    ●   Nginx: fastcgi_param
    ●   Apache: setenv
ZingMe more
●   Standard latency for server side code
    processing < 200ms
●   Live demos Profiler system
●   Open social API updated infos
    ●   Sandbox for developer
    ●   Will be open soon
ZingMe more
●   Optimize node before scale it up
    ●   Performance C++ > Java > PHP
    ●   Why PHP ?
        –   Easy to implement business
        –   Easy to deploy
    ●   Why C++?
        –   Performance
    ●   Can we mix PHP and C++?
        –   Next session will answer
Q&A




Contact info:
Chau Nguyen Nhat Thanh
thanhcnn@vinagame.com.vn
me.zing.vn/thanhcnn2000

Más contenido relacionado

La actualidad más candente

Denser, cooler, faster, stronger: PHP on ARM microservers
Denser, cooler, faster, stronger: PHP on ARM microserversDenser, cooler, faster, stronger: PHP on ARM microservers
Denser, cooler, faster, stronger: PHP on ARM microserversJez Halford
 
Optimizing Your Frontend Performance
Optimizing Your Frontend PerformanceOptimizing Your Frontend Performance
Optimizing Your Frontend PerformanceThomas Weinert
 
Pulsar Storage on BookKeeper _Seamless Evolution
Pulsar Storage on BookKeeper _Seamless EvolutionPulsar Storage on BookKeeper _Seamless Evolution
Pulsar Storage on BookKeeper _Seamless EvolutionStreamNative
 
Massively Scaled High Performance Web Services with PHP
Massively Scaled High Performance Web Services with PHPMassively Scaled High Performance Web Services with PHP
Massively Scaled High Performance Web Services with PHPDemin Yin
 
Connection Pooling in PostgreSQL using pgbouncer
Connection Pooling in PostgreSQL using pgbouncer Connection Pooling in PostgreSQL using pgbouncer
Connection Pooling in PostgreSQL using pgbouncer Sameer Kumar
 
Message Queuing on a Large Scale: IMVUs stateful real-time message queue for ...
Message Queuing on a Large Scale: IMVUs stateful real-time message queue for ...Message Queuing on a Large Scale: IMVUs stateful real-time message queue for ...
Message Queuing on a Large Scale: IMVUs stateful real-time message queue for ...Jon Watte
 
Extending functionality in nginx, with modules!
Extending functionality in nginx, with modules!Extending functionality in nginx, with modules!
Extending functionality in nginx, with modules!Trygve Vea
 
NGINX High-performance Caching
NGINX High-performance CachingNGINX High-performance Caching
NGINX High-performance CachingNGINX, Inc.
 
Supercharge Application Delivery to Satisfy Users
Supercharge Application Delivery to Satisfy UsersSupercharge Application Delivery to Satisfy Users
Supercharge Application Delivery to Satisfy UsersNGINX, Inc.
 
Warsaw MuleSoft Meetup #12 Effective Streaming
Warsaw MuleSoft Meetup #12 Effective StreamingWarsaw MuleSoft Meetup #12 Effective Streaming
Warsaw MuleSoft Meetup #12 Effective StreamingPatryk Bandurski
 
Nginx - Tips and Tricks.
Nginx - Tips and Tricks.Nginx - Tips and Tricks.
Nginx - Tips and Tricks.Harish S
 
Producer Performance Tuning for Apache Kafka
Producer Performance Tuning for Apache KafkaProducer Performance Tuning for Apache Kafka
Producer Performance Tuning for Apache KafkaJiangjie Qin
 
Apache Kafka: A high-throughput distributed messaging system @ JCConf 2014
Apache Kafka: A high-throughput distributed messaging system @ JCConf 2014Apache Kafka: A high-throughput distributed messaging system @ JCConf 2014
Apache Kafka: A high-throughput distributed messaging system @ JCConf 2014Chen-en Lu
 
Mystery Machine Overview
Mystery Machine OverviewMystery Machine Overview
Mystery Machine OverviewIvan Glushkov
 

La actualidad más candente (20)

Denser, cooler, faster, stronger: PHP on ARM microservers
Denser, cooler, faster, stronger: PHP on ARM microserversDenser, cooler, faster, stronger: PHP on ARM microservers
Denser, cooler, faster, stronger: PHP on ARM microservers
 
Shootout at the PAAS Corral
Shootout at the PAAS CorralShootout at the PAAS Corral
Shootout at the PAAS Corral
 
Shootout at the AWS Corral
Shootout at the AWS CorralShootout at the AWS Corral
Shootout at the AWS Corral
 
How to Monitor MySQL
How to Monitor MySQLHow to Monitor MySQL
How to Monitor MySQL
 
Optimizing Your Frontend Performance
Optimizing Your Frontend PerformanceOptimizing Your Frontend Performance
Optimizing Your Frontend Performance
 
Pulsar Storage on BookKeeper _Seamless Evolution
Pulsar Storage on BookKeeper _Seamless EvolutionPulsar Storage on BookKeeper _Seamless Evolution
Pulsar Storage on BookKeeper _Seamless Evolution
 
Massively Scaled High Performance Web Services with PHP
Massively Scaled High Performance Web Services with PHPMassively Scaled High Performance Web Services with PHP
Massively Scaled High Performance Web Services with PHP
 
Connection Pooling in PostgreSQL using pgbouncer
Connection Pooling in PostgreSQL using pgbouncer Connection Pooling in PostgreSQL using pgbouncer
Connection Pooling in PostgreSQL using pgbouncer
 
Message Queuing on a Large Scale: IMVUs stateful real-time message queue for ...
Message Queuing on a Large Scale: IMVUs stateful real-time message queue for ...Message Queuing on a Large Scale: IMVUs stateful real-time message queue for ...
Message Queuing on a Large Scale: IMVUs stateful real-time message queue for ...
 
Extending functionality in nginx, with modules!
Extending functionality in nginx, with modules!Extending functionality in nginx, with modules!
Extending functionality in nginx, with modules!
 
NGINX High-performance Caching
NGINX High-performance CachingNGINX High-performance Caching
NGINX High-performance Caching
 
GUC Tutorial Package (9.0)
GUC Tutorial Package (9.0)GUC Tutorial Package (9.0)
GUC Tutorial Package (9.0)
 
Supercharge Application Delivery to Satisfy Users
Supercharge Application Delivery to Satisfy UsersSupercharge Application Delivery to Satisfy Users
Supercharge Application Delivery to Satisfy Users
 
92 grand prix_2013
92 grand prix_201392 grand prix_2013
92 grand prix_2013
 
Warsaw MuleSoft Meetup #12 Effective Streaming
Warsaw MuleSoft Meetup #12 Effective StreamingWarsaw MuleSoft Meetup #12 Effective Streaming
Warsaw MuleSoft Meetup #12 Effective Streaming
 
Nginx - Tips and Tricks.
Nginx - Tips and Tricks.Nginx - Tips and Tricks.
Nginx - Tips and Tricks.
 
7 Ways To Crash Postgres
7 Ways To Crash Postgres7 Ways To Crash Postgres
7 Ways To Crash Postgres
 
Producer Performance Tuning for Apache Kafka
Producer Performance Tuning for Apache KafkaProducer Performance Tuning for Apache Kafka
Producer Performance Tuning for Apache Kafka
 
Apache Kafka: A high-throughput distributed messaging system @ JCConf 2014
Apache Kafka: A high-throughput distributed messaging system @ JCConf 2014Apache Kafka: A high-throughput distributed messaging system @ JCConf 2014
Apache Kafka: A high-throughput distributed messaging system @ JCConf 2014
 
Mystery Machine Overview
Mystery Machine OverviewMystery Machine Overview
Mystery Machine Overview
 

Destacado

20130714 php matsuri - highly available php
20130714   php matsuri - highly available php20130714   php matsuri - highly available php
20130714 php matsuri - highly available phpGraham Weldon
 
Jquery at-webcamp
Jquery at-webcampJquery at-webcamp
Jquery at-webcampgaplabs
 
Choosing a european fund domicile: the view of global asset managers
Choosing a european fund domicile: the view of global asset managersChoosing a european fund domicile: the view of global asset managers
Choosing a european fund domicile: the view of global asset managersMatheson Law Firm
 
อาหารไทย กลุ่ม 2
อาหารไทย กลุ่ม 2อาหารไทย กลุ่ม 2
อาหารไทย กลุ่ม 2Jhaturong
 
Building a horizontally scalable API in php
Building a horizontally scalable API in phpBuilding a horizontally scalable API in php
Building a horizontally scalable API in phpWade Womersley
 
Scalability In PHP
Scalability In PHPScalability In PHP
Scalability In PHPIan Selby
 

Destacado (9)

20130714 php matsuri - highly available php
20130714   php matsuri - highly available php20130714   php matsuri - highly available php
20130714 php matsuri - highly available php
 
Jquery at-webcamp
Jquery at-webcampJquery at-webcamp
Jquery at-webcamp
 
Choosing a european fund domicile: the view of global asset managers
Choosing a european fund domicile: the view of global asset managersChoosing a european fund domicile: the view of global asset managers
Choosing a european fund domicile: the view of global asset managers
 
อาหารไทย กลุ่ม 2
อาหารไทย กลุ่ม 2อาหารไทย กลุ่ม 2
อาหารไทย กลุ่ม 2
 
Stress
StressStress
Stress
 
lookbookpress
lookbookpresslookbookpress
lookbookpress
 
Building a horizontally scalable API in php
Building a horizontally scalable API in phpBuilding a horizontally scalable API in php
Building a horizontally scalable API in php
 
Scalability In PHP
Scalability In PHPScalability In PHP
Scalability In PHP
 
Scalable PHP
Scalable PHPScalable PHP
Scalable PHP
 

Similar a Building Scalable PHP Websites

Maximizing PHP Performance with NGINX
Maximizing PHP Performance with NGINXMaximizing PHP Performance with NGINX
Maximizing PHP Performance with NGINXNGINX, Inc.
 
Подталкиваем PHP к пределу возможностей, Michael Armstrong (lite speed techno...
Подталкиваем PHP к пределу возможностей, Michael Armstrong (lite speed techno...Подталкиваем PHP к пределу возможностей, Michael Armstrong (lite speed techno...
Подталкиваем PHP к пределу возможностей, Michael Armstrong (lite speed techno...Ontico
 
Zing Me Real Time Web Chat Architect
Zing Me Real Time Web Chat ArchitectZing Me Real Time Web Chat Architect
Zing Me Real Time Web Chat ArchitectChau Thanh
 
Silverstripe at scale - design & architecture for silverstripe applications
Silverstripe at scale - design & architecture for silverstripe applicationsSilverstripe at scale - design & architecture for silverstripe applications
Silverstripe at scale - design & architecture for silverstripe applicationsBrettTasker
 
USENIX LISA15: How TubeMogul Handles over One Trillion HTTP Requests a Month
USENIX LISA15: How TubeMogul Handles over One Trillion HTTP Requests a MonthUSENIX LISA15: How TubeMogul Handles over One Trillion HTTP Requests a Month
USENIX LISA15: How TubeMogul Handles over One Trillion HTTP Requests a MonthNicolas Brousse
 
High performance PHP: Scaling and getting the most out of your infrastructure
High performance PHP: Scaling and getting the most out of your infrastructureHigh performance PHP: Scaling and getting the most out of your infrastructure
High performance PHP: Scaling and getting the most out of your infrastructuremkherlakian
 
Drupal Performance and Scaling
Drupal Performance and ScalingDrupal Performance and Scaling
Drupal Performance and ScalingGerald Villorente
 
Zendcon scaling magento
Zendcon scaling magentoZendcon scaling magento
Zendcon scaling magentoMathew Beane
 
PHP At 5000 Requests Per Second: Hootsuite’s Scaling Story
PHP At 5000 Requests Per Second: Hootsuite’s Scaling StoryPHP At 5000 Requests Per Second: Hootsuite’s Scaling Story
PHP At 5000 Requests Per Second: Hootsuite’s Scaling Storyvanphp
 
Scaling Magento
Scaling MagentoScaling Magento
Scaling MagentoCopious
 
Node.js Presentation
Node.js PresentationNode.js Presentation
Node.js PresentationExist
 
(phpconftw2012) PHP as a Middleware in Embedded Systems
(phpconftw2012) PHP as a Middleware in Embedded Systems(phpconftw2012) PHP as a Middleware in Embedded Systems
(phpconftw2012) PHP as a Middleware in Embedded Systemssosorry
 
Scalable Architecture 101
Scalable Architecture 101Scalable Architecture 101
Scalable Architecture 101ConFoo
 
RedisConf17 - Dynomite - Making Non-distributed Databases Distributed
RedisConf17 - Dynomite - Making Non-distributed Databases DistributedRedisConf17 - Dynomite - Making Non-distributed Databases Distributed
RedisConf17 - Dynomite - Making Non-distributed Databases DistributedRedis Labs
 
Zero Downtime JEE Architectures
Zero Downtime JEE ArchitecturesZero Downtime JEE Architectures
Zero Downtime JEE ArchitecturesAlexander Penev
 

Similar a Building Scalable PHP Websites (20)

Maximizing PHP Performance with NGINX
Maximizing PHP Performance with NGINXMaximizing PHP Performance with NGINX
Maximizing PHP Performance with NGINX
 
Подталкиваем PHP к пределу возможностей, Michael Armstrong (lite speed techno...
Подталкиваем PHP к пределу возможностей, Michael Armstrong (lite speed techno...Подталкиваем PHP к пределу возможностей, Michael Armstrong (lite speed techno...
Подталкиваем PHP к пределу возможностей, Michael Armstrong (lite speed techno...
 
Zing Me Real Time Web Chat Architect
Zing Me Real Time Web Chat ArchitectZing Me Real Time Web Chat Architect
Zing Me Real Time Web Chat Architect
 
Silverstripe at scale - design & architecture for silverstripe applications
Silverstripe at scale - design & architecture for silverstripe applicationsSilverstripe at scale - design & architecture for silverstripe applications
Silverstripe at scale - design & architecture for silverstripe applications
 
USENIX LISA15: How TubeMogul Handles over One Trillion HTTP Requests a Month
USENIX LISA15: How TubeMogul Handles over One Trillion HTTP Requests a MonthUSENIX LISA15: How TubeMogul Handles over One Trillion HTTP Requests a Month
USENIX LISA15: How TubeMogul Handles over One Trillion HTTP Requests a Month
 
Beginners Node.js
Beginners Node.jsBeginners Node.js
Beginners Node.js
 
High performance PHP: Scaling and getting the most out of your infrastructure
High performance PHP: Scaling and getting the most out of your infrastructureHigh performance PHP: Scaling and getting the most out of your infrastructure
High performance PHP: Scaling and getting the most out of your infrastructure
 
Drupal Performance and Scaling
Drupal Performance and ScalingDrupal Performance and Scaling
Drupal Performance and Scaling
 
Optimizing performance
Optimizing performanceOptimizing performance
Optimizing performance
 
Zendcon scaling magento
Zendcon scaling magentoZendcon scaling magento
Zendcon scaling magento
 
Nginx pres
Nginx presNginx pres
Nginx pres
 
PHP At 5000 Requests Per Second: Hootsuite’s Scaling Story
PHP At 5000 Requests Per Second: Hootsuite’s Scaling StoryPHP At 5000 Requests Per Second: Hootsuite’s Scaling Story
PHP At 5000 Requests Per Second: Hootsuite’s Scaling Story
 
Scaling Magento
Scaling MagentoScaling Magento
Scaling Magento
 
Node.js Presentation
Node.js PresentationNode.js Presentation
Node.js Presentation
 
(phpconftw2012) PHP as a Middleware in Embedded Systems
(phpconftw2012) PHP as a Middleware in Embedded Systems(phpconftw2012) PHP as a Middleware in Embedded Systems
(phpconftw2012) PHP as a Middleware in Embedded Systems
 
Scalable Architecture 101
Scalable Architecture 101Scalable Architecture 101
Scalable Architecture 101
 
Dynomite @ RedisConf 2017
Dynomite @ RedisConf 2017Dynomite @ RedisConf 2017
Dynomite @ RedisConf 2017
 
RedisConf17 - Dynomite - Making Non-distributed Databases Distributed
RedisConf17 - Dynomite - Making Non-distributed Databases DistributedRedisConf17 - Dynomite - Making Non-distributed Databases Distributed
RedisConf17 - Dynomite - Making Non-distributed Databases Distributed
 
Zero Downtime JEE Architectures
Zero Downtime JEE ArchitecturesZero Downtime JEE Architectures
Zero Downtime JEE Architectures
 
Daniel Sloof: Magento on HHVM
Daniel Sloof: Magento on HHVMDaniel Sloof: Magento on HHVM
Daniel Sloof: Magento on HHVM
 

Más de Nguyen Duc Phu

iOS Gaming with Cocos2d
iOS Gaming with Cocos2diOS Gaming with Cocos2d
iOS Gaming with Cocos2dNguyen Duc Phu
 
05 - Phan Thai Trung - Tu dong dat hang tu he thong ban le lon nhat Trung Quoc
05 - Phan Thai Trung - Tu dong dat hang tu he thong ban le lon nhat Trung Quoc05 - Phan Thai Trung - Tu dong dat hang tu he thong ban le lon nhat Trung Quoc
05 - Phan Thai Trung - Tu dong dat hang tu he thong ban le lon nhat Trung QuocNguyen Duc Phu
 
8 - Javascript unit testing framework
8 - Javascript unit testing framework8 - Javascript unit testing framework
8 - Javascript unit testing frameworkNguyen Duc Phu
 
Hanoi php day 2008 - 05. nguyen hai nhat huy - building-restful-web-service-w...
Hanoi php day 2008 - 05. nguyen hai nhat huy - building-restful-web-service-w...Hanoi php day 2008 - 05. nguyen hai nhat huy - building-restful-web-service-w...
Hanoi php day 2008 - 05. nguyen hai nhat huy - building-restful-web-service-w...Nguyen Duc Phu
 
Hanoi php day 2008 - 03. dang minh tuan - html, css, javascript
Hanoi php day 2008 - 03. dang minh tuan - html, css, javascriptHanoi php day 2008 - 03. dang minh tuan - html, css, javascript
Hanoi php day 2008 - 03. dang minh tuan - html, css, javascriptNguyen Duc Phu
 
Hanoi php day 2008 - 01.pham cong dinh - how.to.build.your.own.framework
Hanoi php day 2008 - 01.pham cong dinh - how.to.build.your.own.frameworkHanoi php day 2008 - 01.pham cong dinh - how.to.build.your.own.framework
Hanoi php day 2008 - 01.pham cong dinh - how.to.build.your.own.frameworkNguyen Duc Phu
 
Hanoi php day 2008 - 02. phan thai trung - drupal
Hanoi php day 2008 - 02. phan thai trung - drupalHanoi php day 2008 - 02. phan thai trung - drupal
Hanoi php day 2008 - 02. phan thai trung - drupalNguyen Duc Phu
 
13 social network game
13 social network game13 social network game
13 social network gameNguyen Duc Phu
 
12 trung-oss-magento-overview
12 trung-oss-magento-overview12 trung-oss-magento-overview
12 trung-oss-magento-overviewNguyen Duc Phu
 
11 building joomla! extensions with flex integration
11 building joomla! extensions with flex integration11 building joomla! extensions with flex integration
11 building joomla! extensions with flex integrationNguyen Duc Phu
 
10 su dung drupal xay dung mang xa hoi
10 su dung drupal xay dung mang xa hoi10 su dung drupal xay dung mang xa hoi
10 su dung drupal xay dung mang xa hoiNguyen Duc Phu
 
09 html5 css3-the_future_of_web_technology
09 html5 css3-the_future_of_web_technology09 html5 css3-the_future_of_web_technology
09 html5 css3-the_future_of_web_technologyNguyen Duc Phu
 
07 build your-own_php_extension
07 build your-own_php_extension07 build your-own_php_extension
07 build your-own_php_extensionNguyen Duc Phu
 
02 vng thanhnt-speedup_ntvv2_by_ph_pextmodule_
02 vng thanhnt-speedup_ntvv2_by_ph_pextmodule_02 vng thanhnt-speedup_ntvv2_by_ph_pextmodule_
02 vng thanhnt-speedup_ntvv2_by_ph_pextmodule_Nguyen Duc Phu
 
14 how startups can benefit from launch community
14 how startups can benefit from launch community14 how startups can benefit from launch community
14 how startups can benefit from launch communityNguyen Duc Phu
 
Hanoi PHP Day 2008 - 04 - Nguyen Duc Phu - Search Engine: New Collection S...
Hanoi PHP Day 2008 -  04 - Nguyen Duc Phu  -  Search Engine: New Collection S...Hanoi PHP Day 2008 -  04 - Nguyen Duc Phu  -  Search Engine: New Collection S...
Hanoi PHP Day 2008 - 04 - Nguyen Duc Phu - Search Engine: New Collection S...Nguyen Duc Phu
 

Más de Nguyen Duc Phu (17)

iOS Gaming with Cocos2d
iOS Gaming with Cocos2diOS Gaming with Cocos2d
iOS Gaming with Cocos2d
 
05 - Phan Thai Trung - Tu dong dat hang tu he thong ban le lon nhat Trung Quoc
05 - Phan Thai Trung - Tu dong dat hang tu he thong ban le lon nhat Trung Quoc05 - Phan Thai Trung - Tu dong dat hang tu he thong ban le lon nhat Trung Quoc
05 - Phan Thai Trung - Tu dong dat hang tu he thong ban le lon nhat Trung Quoc
 
8 - Javascript unit testing framework
8 - Javascript unit testing framework8 - Javascript unit testing framework
8 - Javascript unit testing framework
 
Hanoi php day 2008 - 05. nguyen hai nhat huy - building-restful-web-service-w...
Hanoi php day 2008 - 05. nguyen hai nhat huy - building-restful-web-service-w...Hanoi php day 2008 - 05. nguyen hai nhat huy - building-restful-web-service-w...
Hanoi php day 2008 - 05. nguyen hai nhat huy - building-restful-web-service-w...
 
Hanoi php day 2008 - 03. dang minh tuan - html, css, javascript
Hanoi php day 2008 - 03. dang minh tuan - html, css, javascriptHanoi php day 2008 - 03. dang minh tuan - html, css, javascript
Hanoi php day 2008 - 03. dang minh tuan - html, css, javascript
 
Hanoi php day 2008 - 01.pham cong dinh - how.to.build.your.own.framework
Hanoi php day 2008 - 01.pham cong dinh - how.to.build.your.own.frameworkHanoi php day 2008 - 01.pham cong dinh - how.to.build.your.own.framework
Hanoi php day 2008 - 01.pham cong dinh - how.to.build.your.own.framework
 
Hanoi php day 2008 - 02. phan thai trung - drupal
Hanoi php day 2008 - 02. phan thai trung - drupalHanoi php day 2008 - 02. phan thai trung - drupal
Hanoi php day 2008 - 02. phan thai trung - drupal
 
13 social network game
13 social network game13 social network game
13 social network game
 
12 trung-oss-magento-overview
12 trung-oss-magento-overview12 trung-oss-magento-overview
12 trung-oss-magento-overview
 
11 building joomla! extensions with flex integration
11 building joomla! extensions with flex integration11 building joomla! extensions with flex integration
11 building joomla! extensions with flex integration
 
10 su dung drupal xay dung mang xa hoi
10 su dung drupal xay dung mang xa hoi10 su dung drupal xay dung mang xa hoi
10 su dung drupal xay dung mang xa hoi
 
09 html5 css3-the_future_of_web_technology
09 html5 css3-the_future_of_web_technology09 html5 css3-the_future_of_web_technology
09 html5 css3-the_future_of_web_technology
 
07 build your-own_php_extension
07 build your-own_php_extension07 build your-own_php_extension
07 build your-own_php_extension
 
04 web optimization
04 web optimization04 web optimization
04 web optimization
 
02 vng thanhnt-speedup_ntvv2_by_ph_pextmodule_
02 vng thanhnt-speedup_ntvv2_by_ph_pextmodule_02 vng thanhnt-speedup_ntvv2_by_ph_pextmodule_
02 vng thanhnt-speedup_ntvv2_by_ph_pextmodule_
 
14 how startups can benefit from launch community
14 how startups can benefit from launch community14 how startups can benefit from launch community
14 how startups can benefit from launch community
 
Hanoi PHP Day 2008 - 04 - Nguyen Duc Phu - Search Engine: New Collection S...
Hanoi PHP Day 2008 -  04 - Nguyen Duc Phu  -  Search Engine: New Collection S...Hanoi PHP Day 2008 -  04 - Nguyen Duc Phu  -  Search Engine: New Collection S...
Hanoi PHP Day 2008 - 04 - Nguyen Duc Phu - Search Engine: New Collection S...
 

Último

Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 

Último (20)

Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 

Building Scalable PHP Websites

  • 1. ZingMe Practice For Building Scalable PHP Website By Chau Nguyen Nhat Thanh ZingMe Technical Manager Web Technical - VNG
  • 2. Agenda ● About ZingMe ● Scaling PHP application ● Scalability definition ● Scaling up vs scaling out ● Load balancing ● Problem with PHP when using load balancer ● User session management ● Problem with code deployment 2
  • 3. Agenda(cont.) ● ZingMe practice in building scalable PHP applications ● Choosing scale out ● Load balancing model ● User session management system ● Code deployment system ● ZingMe more ● Open social API
  • 4. About ZingMe ● A social network
  • 5. About ZingMe ● 25M registered accounts ● 1.7M daily active users ● 5M monthly active users ● > 300 servers (1.2 K cores) ● 50 DB servers, >40 Memcached servers ● ~ 100 Web servers ● 40 servers for Hadoop farm ● Others (storage, ...)
  • 6. About ZingMe ● Load balancing: HA proxy, LVS, hardware (?) ● Web server: Nginx, lighttpd, apache, hardware (?) ● Web caching: squid, varnish, hardware (?) ● Caching: Redis, memcached ● Programming language: PHP, C++,Java, python, bash script ● Searching: Solr, lucene ● DB: MySQL , NOSQL ● Log system: Scriber + Hadoop
  • 7. Scaling PHP application ● Scalability definition ● Scaling up vs scaling out ● Load balancing ● User session management ● Code deployment
  • 8. Scalability definition “Scalability is a desirable property of a system, a network, or a process, which indicates its ability to either handle growing amounts of work in a graceful manner or to be enlarged” from Wikipedia ”A web application is scalable when is able to manage a growing traffic with additional resources (CPU, RAM) without software changes” by Jan Burkl, Enrico Zimuel (Zend Technologies)
  • 9. Scaling up vs scaling out ● Scaling up (vertically) ● Add more resources to single node in a system ● Resources can be software or hardware ● Make system more powerful by increase node powerful ● Has an upper limit ● Hard to implement HA solution ● Cost: expensive
  • 10. Scaling up vs scaling out ● Scaling out (horizontally) ● Add more nodes to a system ● Make system more powerful by increase number of nodes in the system ● Maybe has no upper limit ● Easy to implement HA solution ● Cost: cheap
  • 11. Scaling up vs scaling out • From slide ”How to scale PHP application” • by Jan Burkl, Enrico Zimuel (Zend Technologies)
  • 12. Load balancing ● The need of a load balancer ● Most of big web site choose scale out ● Need a component for distribute load among the nodes ● Such component called load balancer
  • 13. Load balancing • from ”Server load balancing architectures” • by Gregor Roth, JavaWorld.com, 10/21/08
  • 14. Load balancing ● How load balancer work? ● Has 2 interfaces: Back-end, Front-end ● Front-end receive the request from client ● Back-end forward request to internal node ● Back-end receive the response from node ● Front-end response to client ● Status monitor for monitoring the back-end interface
  • 15. Load balancing ● Web application load balancer ● Work in layer 7 ● Can filter HTTP header and body in both request and response ● Can be hardware or software ● F5 BIG-IP, Citrix Netscale, Cisco ● HA Proxy, Nginx, lighttpd
  • 16. Problem with PHP when using load balancer ● PHP stores session info into local disk by default ● How to scale session to 2 nodes ? ● Can be scaled if: ● Load balancer has a method for routing the same user requests into the same nodes (1) ● Override the default PHP mechanism for storing session of all nodes in the same storage (2)
  • 17. Problem with PHP when using load balancer ● Method (1) ● Load balancer must keep state for connection ● Overhead for routing request ● Not balancing ● Method (2) ● Must change software ● No overhead for routing request ● More balancer than (1)
  • 18. PHP session management ● Choose method (2) ● Centralize storage among web server ● Storage can be NFS, DB, memcached... ● All web servers access the same storage ● Override the default behavior of PHP session functions ● Bottleneck can be in storage
  • 19. PHP session management ● Call session_set_save_handler( callback $open , callback $close , callback $read , callback $write , callback $destroy , callback $gc ) to override default behavior ● More infos: ● http://php.net/manual/en/function.sessio n-set-save-handler.php
  • 20. Problem with code deployment ● Adding new server to system: ● What kind of configuration must be changed? ● Which code will be deployed ? In which server? ● How can we monitor them?
  • 21. Problem with PHP code deployment ● What will we change in PHP code ? ● Separate all configuration to configuration file ● Do not hard code any configuration ● Put the code in a central server like SVN ● Use scripts to pull all code to production server ● Build profiler system for monitor the code
  • 22. ZingMe practice for building scalable web site ● Choose Scale out ● Use HA proxy for load balancing ● Use Memcached for session storage ● Simple code deployment system base on SVN and bash script
  • 23. ZingMe practice for building scalable web site ● Divide into small services ● Use commodity hardwares ● Use open source software ● Server has the same environment ● Add new server < 5mins
  • 25. ZingMe load balancing model ● Use HA proxy ● HTTP based proxy ● High availability ● Use epoll ● Use content switching to divide the service into group ● Define load balancing factors based on the power of the back-end server
  • 26. ZingMe load balancing model Normal traffic
  • 27. ZingMe load balancing model ZingMe traffic
  • 28. ZingMe user session management ● Use memcached for high performance ● Override Zend_Session ● 3K hits/s
  • 29. Why we choose memcache? ● L1 cache reference 0.5 ns ● Branch mispredict 5 ns ● L2 cache reference 7 ns ● Mutex lock/unlock 25 ns ● Main memory reference 100 ns ● Compress 1K bytes with Zippy 3,000 ns ● Send 2K bytes over 1 Gbps network 20,000 ns ● Read 1 MB sequentially from memory 250,000 ns ● Round trip within same datacenter 500,000 ns ● Disk seek 10,000,000 ns ● Read 1 MB sequentially from disk 20,000,000 ns ● Send packet CA->Netherlands->CA 150,000,000 ns From Jeff Dean - google.com
  • 30. ZingMe code deployment ● Developer upload code to SVN ● SO runs scripts to deploy code to production server ● Has staging server for real environment test ● Dev cannot touch to production environment ● Using environment parameter ● Nginx: fastcgi_param ● Apache: setenv
  • 31. ZingMe more ● Standard latency for server side code processing < 200ms ● Live demos Profiler system ● Open social API updated infos ● Sandbox for developer ● Will be open soon
  • 32. ZingMe more ● Optimize node before scale it up ● Performance C++ > Java > PHP ● Why PHP ? – Easy to implement business – Easy to deploy ● Why C++? – Performance ● Can we mix PHP and C++? – Next session will answer
  • 33. Q&A Contact info: Chau Nguyen Nhat Thanh thanhcnn@vinagame.com.vn me.zing.vn/thanhcnn2000