SlideShare uma empresa Scribd logo
1 de 61
Baixar para ler offline
Scalability in Mind 
當老軟體Drupal 遇上大架構 
2014-10-18 PHPConf 
Jimmy Huang 黃雋
Drupal and me 
Jimmy Major Versions 
媽,我在這裡
Why not Drupal?
It’s just a CMS 
for damned cat not for me 
Image from: https://flic.kr/p/hv9xDs
Learning Curve 
Image from http://www.codem0nk3y.com/2012/04/what-bugs-me-about-modx-and-why/cms-learning-curve/
Slower... 
than my own fastest code 
Image from: https://flic.kr/p/9CWhYu
Too may reason to say no... 
Not OOP 
No ORM 
Made by PHP 
Hard to make theme 
Hard to staging, continues deploying
沒有愛
1. Flexibility 
For Drupal Beginner
Drupal can be a: 
● Personal blog 
● Company official site 
● Community forum 
● Online commerce shopping mall 
● Company intranet portal 
● Heavy media site 
● Video portal 
● Mobile backend CMS
CMS? 
Development oriented CMS 
● Not (only) a framework 
● config many things in UI 
● Abstract in data layer 
● Need 3-party modules
Content Type 
Sample for phpconf 2014
Sample for phpconf 2014
View 1
View 1
View 2
View 2
View 3
View 3
Query Generator in clicks 
same query, different layout
Modules will working together 
hook API design
Modules will working together
module_invoke('AMAZINGMY_captcha', 'captcha', 
'generate', $captcha_type_challenge); 
/** 
* Implementation of hook_captcha(). 
*/ 
function AMAZINGMY_captcha_captcha($op, $captcha_type='') { 
switch ($op) { 
case 'list': 
return array('AMAZINGMY CAPTCHA'); 
case 'generate': 
if ($captcha_type == 'AMAZINGMY CAPTCHA') { 
$captcha = array(); 
$captcha['solution'] = 'AMAZINGMY'; 
$captcha['form']['captcha_response'] = array( 
'#type' => 'textfield', 
'#title' => t('Enter "Amazing"'), 
'#required' => TRUE, 
); 
return $captcha;
horizontal 
2. Scalability
Hosting Architecture 
Image from https://groups.drupal.org/node/24412 
scale out 
scale out 
for pure dynamic site
Prepare to scale 
● Reverse proxy or Hardware load balance? 
● Where are your Sessions? 
● File storage? 
● Separated read/write query?
Reverse Proxy 
ip from - $_SERVER[‘HTTP_X_FORWARDED_FOR‘] 
https://api.drupal.org/api/drupal/includes%21bootstrap.inc/function/ip_address/7
Reverse Proxy 
Reverse Proxy 
Remote addr will get proxy IP 
Real ip need forward from Proxy
Reverse Proxy 
Example setting of Nginx 
Location { 
proxy_set_header Host $host; 
proxy_set_header X-Real-IP $remote_addr; 
proxy_set_header X-Forwarded-Host $host; 
proxy_set_header X-Forwarded-Server $host; 
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 
}
Session Storage 
●Plugable 
●Centralized 
●Fast
Session Storage 
before 2008, Drupal 6 save session to DB 
https://api.drupal.org/api/drupal/includes%21bootstrap.inc/function/_drupal_bootstrap/6
Session Storage 
after 2011, Drupal 7, have plugable Session config in core 
https://api.drupal.org/api/drupal/includes%21bootstrap.inc/function/drupal_bootstrap/7
Session Storage 
after 2014, Drupal 8 include better handler from Symfony 2 
Drupal 8 API: http://goo.gl/VVQ2Ua
Session Storage 
PHP 5.4 also have better SessionHandler class 
http://php.net/manual/en/class.sessionhandler.php
File Storage 
● After upload 
can other instance saw files?
File Storage 
Drupal 6 – only 1 hook nothing to help scaling
File Storage 
Drupal 7 – complete file handling api (hook_file_*)
File Storage 
● After upload, send to AWS S3 or FTP? 
– Yes! by hook_file_copy 
● Before display, alter URL for CDN support? 
– Yes! by hook_file_url_alter 
● When load file, streaming by other host? 
– Yes! by hook_file_load
File Storage 
function hook_file_url_alter(&$uri) { 
$cdn1 = 'http://cdn1.example.com'; 
$cdn2 = 'http://cdn2.example.com'; 
$cdn_extensions = array('css', 'js'); 
if($this_file_extension in $cdn_extensions){ 
$uri = $cdn1 . '/' . $path; 
} 
else{ 
$uri = $cdn2 . '/' . $path; 
} 
}
File Storage 
Third-party module - Storage API 
● Save to FTP / HTTP 
● Save to Database 
● Save to S3 
● Save to Rackspace
Database Scaling 
MongoDB? PostgreSQL?
Database Scaling 
Drupal 6 - happy querying, tragedy scaling 
function statistics_get($nid) { 
if ($nid > 0) { 
// Retrieve an array with both totalcount and 
daycount. 
$statistics = db_fetch_array(db_query('SELECT 
totalcount, daycount, timestamp FROM {node_counter} 
WHERE nid = %d', $nid)); 
} 
return $statistics; 
}
Database Scaling 
Drupal 7 – DB abstract layer 
$statistics = db_select('node_counter', 'n') 
->fields('n', array( 
'totalcount', 
'daycount', 
'timestamp')) 
->condition('nid', $nid,'=') 
->execute() 
->fetchAssoc(); 
● Support another Database (not MySQL only) 
● Separate R/W query easily
Database Scaling 
random slave every time DB bootstrap 
# default master (read / write query) 
$databases['default']['default'] = $info_array; 
# multiple slave (read only query) 
$databases['default']['slave'][] = $info_array; 
$databases['default']['slave'][] = $info_array;
Database Scaling 
page specific query to slave by 1 click
Database Scaling
3. why Scalability matter?
我不胖,只是腫了一點
Not Fastest solution 
But Available solution
Why a CMS designed like this? 
● Pro 
– Quick and easy to enter Drupal (even not Engineer) 
– Can stack special requirement into Drupal 
– When more function or more user, scale out 
● Cons 
– Not so easy (if you would like to develop with D) 
– Not so flexible vs framework (because it isn’t) 
– Definitely can scale if well planned, but always not
沒有深深愛過 
怎知好與壞? 
我知道你胖,但還是愛你
you may interested in: 
● 2.4 million page views per day in Drupal 
http://sf2010.drupal.org/conference/sessions/24-million-page-views-day-6 
0-m-month-one-server.html 
● Auto Scale Drupal setup in AWS 
http://www.slideshare.net/burgerboydaddy/scaling-drupal-horizontally-and-in- 
cloud 
● Drupal vs Django 
http://birdhouse.org/blog/2009/11/11/drupal-or-django/ 
● Drupal with nodejs 
https://www.drupal.org/project/nodejs 
● Drupal with Docker 
https://github.com/ricardoamaro/docker-drupal 
● Drupal with MongoDB 
https://www.drupal.org/project/mongodb
Thank You! 
You can also find Drupaler here: 
1. DrupalTaiwan.org 
2. goo.gl/PxuhqQ 
每週三晚上8:00 Hangout 網路聚 
3. FB/groups/drupaltaiwan/ 
DrupalTaiwan Facebook 社團

Mais conteúdo relacionado

Mais procurados

Introducing PHP Data Objects
Introducing PHP Data ObjectsIntroducing PHP Data Objects
Introducing PHP Data Objects
webhostingguy
 

Mais procurados (20)

phptek13 - Caching and tuning fun tutorial
phptek13 - Caching and tuning fun tutorialphptek13 - Caching and tuning fun tutorial
phptek13 - Caching and tuning fun tutorial
 
Intro To Couch Db
Intro To Couch DbIntro To Couch Db
Intro To Couch Db
 
Speeding Up The Snail
Speeding Up The SnailSpeeding Up The Snail
Speeding Up The Snail
 
1
11
1
 
Zend Server Data Caching
Zend Server Data CachingZend Server Data Caching
Zend Server Data Caching
 
Drupal 8 configuration management
Drupal 8 configuration managementDrupal 8 configuration management
Drupal 8 configuration management
 
Mysqlnd uh
Mysqlnd uhMysqlnd uh
Mysqlnd uh
 
Drupal feature proposal: two new stream-wrappers
Drupal feature proposal: two new stream-wrappersDrupal feature proposal: two new stream-wrappers
Drupal feature proposal: two new stream-wrappers
 
Boosting MongoDB performance
Boosting MongoDB performanceBoosting MongoDB performance
Boosting MongoDB performance
 
Hadoop 2.x HDFS Cluster Installation (VirtualBox)
Hadoop 2.x  HDFS Cluster Installation (VirtualBox)Hadoop 2.x  HDFS Cluster Installation (VirtualBox)
Hadoop 2.x HDFS Cluster Installation (VirtualBox)
 
Drupal 7 database api
Drupal 7 database api Drupal 7 database api
Drupal 7 database api
 
Common Pitfalls for your Drupal Site, and How to Avoid Them
Common Pitfalls for your Drupal Site, and How to Avoid ThemCommon Pitfalls for your Drupal Site, and How to Avoid Them
Common Pitfalls for your Drupal Site, and How to Avoid Them
 
Data cache management in php
Data cache management in phpData cache management in php
Data cache management in php
 
Introducing PHP Data Objects
Introducing PHP Data ObjectsIntroducing PHP Data Objects
Introducing PHP Data Objects
 
Clug 2012 March web server optimisation
Clug 2012 March   web server optimisationClug 2012 March   web server optimisation
Clug 2012 March web server optimisation
 
Elasticsearch 1.x Cluster Installation (VirtualBox)
Elasticsearch 1.x Cluster Installation (VirtualBox)Elasticsearch 1.x Cluster Installation (VirtualBox)
Elasticsearch 1.x Cluster Installation (VirtualBox)
 
10 things i wish i'd known before using spark in production
10 things i wish i'd known before using spark in production10 things i wish i'd known before using spark in production
10 things i wish i'd known before using spark in production
 
WordPress Café: Using WordPress as a Framework
WordPress Café: Using WordPress as a FrameworkWordPress Café: Using WordPress as a Framework
WordPress Café: Using WordPress as a Framework
 
An introduction To Apache Spark
An introduction To Apache SparkAn introduction To Apache Spark
An introduction To Apache Spark
 
Moodle 3.3 - API Change Overview #mootieuk17
Moodle 3.3 - API Change Overview #mootieuk17Moodle 3.3 - API Change Overview #mootieuk17
Moodle 3.3 - API Change Overview #mootieuk17
 

Semelhante a Scaling in Mind (Case study of Drupal Core)

Facebook的缓存系统
Facebook的缓存系统Facebook的缓存系统
Facebook的缓存系统
yiditushe
 
Escalando php e drupal- performance ao infinito e além! - Drupal camp sp 2015
Escalando php e drupal- performance ao infinito e além! - Drupal camp sp 2015Escalando php e drupal- performance ao infinito e além! - Drupal camp sp 2015
Escalando php e drupal- performance ao infinito e além! - Drupal camp sp 2015
Handrus Nogueira
 
4069180 Caching Performance Lessons From Facebook
4069180 Caching Performance Lessons From Facebook4069180 Caching Performance Lessons From Facebook
4069180 Caching Performance Lessons From Facebook
guoqing75
 
Nko workshop - node js crud & deploy
Nko workshop - node js crud & deployNko workshop - node js crud & deploy
Nko workshop - node js crud & deploy
Simon Su
 

Semelhante a Scaling in Mind (Case study of Drupal Core) (20)

Practical Chef and Capistrano for Your Rails App
Practical Chef and Capistrano for Your Rails AppPractical Chef and Capistrano for Your Rails App
Practical Chef and Capistrano for Your Rails App
 
Service discovery and configuration provisioning
Service discovery and configuration provisioningService discovery and configuration provisioning
Service discovery and configuration provisioning
 
Fatc
FatcFatc
Fatc
 
2017-03-11 02 Денис Нелюбин. Docker & Ansible - лучшие друзья DevOps
2017-03-11 02 Денис Нелюбин. Docker & Ansible - лучшие друзья DevOps2017-03-11 02 Денис Нелюбин. Docker & Ansible - лучшие друзья DevOps
2017-03-11 02 Денис Нелюбин. Docker & Ansible - лучшие друзья DevOps
 
Facebook的缓存系统
Facebook的缓存系统Facebook的缓存系统
Facebook的缓存系统
 
Docker for mac & local developer environment optimization
Docker for mac & local developer environment optimizationDocker for mac & local developer environment optimization
Docker for mac & local developer environment optimization
 
Automating complex infrastructures with Puppet
Automating complex infrastructures with PuppetAutomating complex infrastructures with Puppet
Automating complex infrastructures with Puppet
 
Escalando php e drupal- performance ao infinito e além! - DrupalCamp SP 2015
Escalando php e drupal- performance ao infinito e além! - DrupalCamp SP 2015Escalando php e drupal- performance ao infinito e além! - DrupalCamp SP 2015
Escalando php e drupal- performance ao infinito e além! - DrupalCamp SP 2015
 
DrupalCamp SP 2015 - Escalando PHP e Drupal- Performance ao infinito e além!
DrupalCamp SP 2015 -  Escalando PHP e Drupal- Performance ao infinito e além!DrupalCamp SP 2015 -  Escalando PHP e Drupal- Performance ao infinito e além!
DrupalCamp SP 2015 - Escalando PHP e Drupal- Performance ao infinito e além!
 
Escalando php e drupal- performance ao infinito e além! - Drupal camp sp 2015
Escalando php e drupal- performance ao infinito e além! - Drupal camp sp 2015Escalando php e drupal- performance ao infinito e além! - Drupal camp sp 2015
Escalando php e drupal- performance ao infinito e além! - Drupal camp sp 2015
 
Drupal 8 migrate!
Drupal 8 migrate!Drupal 8 migrate!
Drupal 8 migrate!
 
4069180 Caching Performance Lessons From Facebook
4069180 Caching Performance Lessons From Facebook4069180 Caching Performance Lessons From Facebook
4069180 Caching Performance Lessons From Facebook
 
Scaling PHP apps
Scaling PHP appsScaling PHP apps
Scaling PHP apps
 
Dmp hadoop getting_start
Dmp hadoop getting_startDmp hadoop getting_start
Dmp hadoop getting_start
 
Caching and tuning fun for high scalability
Caching and tuning fun for high scalabilityCaching and tuning fun for high scalability
Caching and tuning fun for high scalability
 
What's new in the Drupal 7 API?
What's new in the Drupal 7 API?What's new in the Drupal 7 API?
What's new in the Drupal 7 API?
 
Manage WordPress with Awesome using wp cli
Manage WordPress with Awesome using wp cliManage WordPress with Awesome using wp cli
Manage WordPress with Awesome using wp cli
 
A WordPress workshop at Cefalo
A WordPress workshop at Cefalo A WordPress workshop at Cefalo
A WordPress workshop at Cefalo
 
Craft CMS: Beyond the Small Business; Advanced tools and configurations
Craft CMS: Beyond the Small Business; Advanced tools and configurationsCraft CMS: Beyond the Small Business; Advanced tools and configurations
Craft CMS: Beyond the Small Business; Advanced tools and configurations
 
Nko workshop - node js crud & deploy
Nko workshop - node js crud & deployNko workshop - node js crud & deploy
Nko workshop - node js crud & deploy
 

Mais de jimyhuang

從數位公益出發的社會企業 - 網絡行動科技
從數位公益出發的社會企業 - 網絡行動科技從數位公益出發的社會企業 - 網絡行動科技
從數位公益出發的社會企業 - 網絡行動科技
jimyhuang
 
Ne tivism intro
Ne tivism introNe tivism intro
Ne tivism intro
jimyhuang
 
喜願小麥網站分享
喜願小麥網站分享喜願小麥網站分享
喜願小麥網站分享
jimyhuang
 
Drupal performance (in DrupalCamp Taipei)
Drupal performance (in DrupalCamp Taipei)Drupal performance (in DrupalCamp Taipei)
Drupal performance (in DrupalCamp Taipei)
jimyhuang
 
Aegir with drupal
Aegir with drupalAegir with drupal
Aegir with drupal
jimyhuang
 
D7 易用性增進
D7 易用性增進D7 易用性增進
D7 易用性增進
jimyhuang
 
Android with LBS
Android with LBSAndroid with LBS
Android with LBS
jimyhuang
 
Drupal sharing in HP7
Drupal sharing in HP7Drupal sharing in HP7
Drupal sharing in HP7
jimyhuang
 
CiviCRM 分享會
CiviCRM 分享會CiviCRM 分享會
CiviCRM 分享會
jimyhuang
 

Mais de jimyhuang (18)

穿越時空的資料新聞學
穿越時空的資料新聞學穿越時空的資料新聞學
穿越時空的資料新聞學
 
年輕世代與公共事務參與
年輕世代與公共事務參與年輕世代與公共事務參與
年輕世代與公共事務參與
 
從數位公益出發的社會企業 - 網絡行動科技
從數位公益出發的社會企業 - 網絡行動科技從數位公益出發的社會企業 - 網絡行動科技
從數位公益出發的社會企業 - 網絡行動科技
 
賽豬公上太空計畫(twlandsat)
賽豬公上太空計畫(twlandsat)賽豬公上太空計畫(twlandsat)
賽豬公上太空計畫(twlandsat)
 
網路科技於社會工作倡議
網路科技於社會工作倡議網路科技於社會工作倡議
網路科技於社會工作倡議
 
只會用鍵盤可以改變什麼?
只會用鍵盤可以改變什麼?只會用鍵盤可以改變什麼?
只會用鍵盤可以改變什麼?
 
經營網站前,先設計網站
經營網站前,先設計網站經營網站前,先設計網站
經營網站前,先設計網站
 
Ne tivism intro
Ne tivism introNe tivism intro
Ne tivism intro
 
Drupal Case Study for Taiwan Wheat Traceability Information System
Drupal Case Study for Taiwan Wheat Traceability Information SystemDrupal Case Study for Taiwan Wheat Traceability Information System
Drupal Case Study for Taiwan Wheat Traceability Information System
 
喜願小麥網站分享
喜願小麥網站分享喜願小麥網站分享
喜願小麥網站分享
 
Drupal performance (in DrupalCamp Taipei)
Drupal performance (in DrupalCamp Taipei)Drupal performance (in DrupalCamp Taipei)
Drupal performance (in DrupalCamp Taipei)
 
Aegir with drupal
Aegir with drupalAegir with drupal
Aegir with drupal
 
D7 易用性增進
D7 易用性增進D7 易用性增進
D7 易用性增進
 
Android with LBS
Android with LBSAndroid with LBS
Android with LBS
 
Drupal sharing in HP7
Drupal sharing in HP7Drupal sharing in HP7
Drupal sharing in HP7
 
CiviCRM 分享會
CiviCRM 分享會CiviCRM 分享會
CiviCRM 分享會
 
Open source business model note in Drupal
Open source business model note in DrupalOpen source business model note in Drupal
Open source business model note in Drupal
 
Drupal Npo
Drupal NpoDrupal Npo
Drupal Npo
 

Último

%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
masabamasaba
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
masabamasaba
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 

Último (20)

Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptx
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
 
WSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security Program
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
BUS PASS MANGEMENT SYSTEM USING PHP.pptx
BUS PASS MANGEMENT SYSTEM USING PHP.pptxBUS PASS MANGEMENT SYSTEM USING PHP.pptx
BUS PASS MANGEMENT SYSTEM USING PHP.pptx
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the Situation
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
 

Scaling in Mind (Case study of Drupal Core)

  • 1. Scalability in Mind 當老軟體Drupal 遇上大架構 2014-10-18 PHPConf Jimmy Huang 黃雋
  • 2. Drupal and me Jimmy Major Versions 媽,我在這裡
  • 4. It’s just a CMS for damned cat not for me Image from: https://flic.kr/p/hv9xDs
  • 5. Learning Curve Image from http://www.codem0nk3y.com/2012/04/what-bugs-me-about-modx-and-why/cms-learning-curve/
  • 6. Slower... than my own fastest code Image from: https://flic.kr/p/9CWhYu
  • 7. Too may reason to say no... Not OOP No ORM Made by PHP Hard to make theme Hard to staging, continues deploying
  • 9. 1. Flexibility For Drupal Beginner
  • 10. Drupal can be a: ● Personal blog ● Company official site ● Community forum ● Online commerce shopping mall ● Company intranet portal ● Heavy media site ● Video portal ● Mobile backend CMS
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19. CMS? Development oriented CMS ● Not (only) a framework ● config many things in UI ● Abstract in data layer ● Need 3-party modules
  • 20. Content Type Sample for phpconf 2014
  • 28. Query Generator in clicks same query, different layout
  • 29. Modules will working together hook API design
  • 31. module_invoke('AMAZINGMY_captcha', 'captcha', 'generate', $captcha_type_challenge); /** * Implementation of hook_captcha(). */ function AMAZINGMY_captcha_captcha($op, $captcha_type='') { switch ($op) { case 'list': return array('AMAZINGMY CAPTCHA'); case 'generate': if ($captcha_type == 'AMAZINGMY CAPTCHA') { $captcha = array(); $captcha['solution'] = 'AMAZINGMY'; $captcha['form']['captcha_response'] = array( '#type' => 'textfield', '#title' => t('Enter "Amazing"'), '#required' => TRUE, ); return $captcha;
  • 33. Hosting Architecture Image from https://groups.drupal.org/node/24412 scale out scale out for pure dynamic site
  • 34. Prepare to scale ● Reverse proxy or Hardware load balance? ● Where are your Sessions? ● File storage? ● Separated read/write query?
  • 35. Reverse Proxy ip from - $_SERVER[‘HTTP_X_FORWARDED_FOR‘] https://api.drupal.org/api/drupal/includes%21bootstrap.inc/function/ip_address/7
  • 36. Reverse Proxy Reverse Proxy Remote addr will get proxy IP Real ip need forward from Proxy
  • 37. Reverse Proxy Example setting of Nginx Location { proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Server $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; }
  • 38. Session Storage ●Plugable ●Centralized ●Fast
  • 39. Session Storage before 2008, Drupal 6 save session to DB https://api.drupal.org/api/drupal/includes%21bootstrap.inc/function/_drupal_bootstrap/6
  • 40. Session Storage after 2011, Drupal 7, have plugable Session config in core https://api.drupal.org/api/drupal/includes%21bootstrap.inc/function/drupal_bootstrap/7
  • 41. Session Storage after 2014, Drupal 8 include better handler from Symfony 2 Drupal 8 API: http://goo.gl/VVQ2Ua
  • 42. Session Storage PHP 5.4 also have better SessionHandler class http://php.net/manual/en/class.sessionhandler.php
  • 43. File Storage ● After upload can other instance saw files?
  • 44. File Storage Drupal 6 – only 1 hook nothing to help scaling
  • 45. File Storage Drupal 7 – complete file handling api (hook_file_*)
  • 46. File Storage ● After upload, send to AWS S3 or FTP? – Yes! by hook_file_copy ● Before display, alter URL for CDN support? – Yes! by hook_file_url_alter ● When load file, streaming by other host? – Yes! by hook_file_load
  • 47. File Storage function hook_file_url_alter(&$uri) { $cdn1 = 'http://cdn1.example.com'; $cdn2 = 'http://cdn2.example.com'; $cdn_extensions = array('css', 'js'); if($this_file_extension in $cdn_extensions){ $uri = $cdn1 . '/' . $path; } else{ $uri = $cdn2 . '/' . $path; } }
  • 48. File Storage Third-party module - Storage API ● Save to FTP / HTTP ● Save to Database ● Save to S3 ● Save to Rackspace
  • 50. Database Scaling Drupal 6 - happy querying, tragedy scaling function statistics_get($nid) { if ($nid > 0) { // Retrieve an array with both totalcount and daycount. $statistics = db_fetch_array(db_query('SELECT totalcount, daycount, timestamp FROM {node_counter} WHERE nid = %d', $nid)); } return $statistics; }
  • 51. Database Scaling Drupal 7 – DB abstract layer $statistics = db_select('node_counter', 'n') ->fields('n', array( 'totalcount', 'daycount', 'timestamp')) ->condition('nid', $nid,'=') ->execute() ->fetchAssoc(); ● Support another Database (not MySQL only) ● Separate R/W query easily
  • 52. Database Scaling random slave every time DB bootstrap # default master (read / write query) $databases['default']['default'] = $info_array; # multiple slave (read only query) $databases['default']['slave'][] = $info_array; $databases['default']['slave'][] = $info_array;
  • 53. Database Scaling page specific query to slave by 1 click
  • 57. Not Fastest solution But Available solution
  • 58. Why a CMS designed like this? ● Pro – Quick and easy to enter Drupal (even not Engineer) – Can stack special requirement into Drupal – When more function or more user, scale out ● Cons – Not so easy (if you would like to develop with D) – Not so flexible vs framework (because it isn’t) – Definitely can scale if well planned, but always not
  • 60. you may interested in: ● 2.4 million page views per day in Drupal http://sf2010.drupal.org/conference/sessions/24-million-page-views-day-6 0-m-month-one-server.html ● Auto Scale Drupal setup in AWS http://www.slideshare.net/burgerboydaddy/scaling-drupal-horizontally-and-in- cloud ● Drupal vs Django http://birdhouse.org/blog/2009/11/11/drupal-or-django/ ● Drupal with nodejs https://www.drupal.org/project/nodejs ● Drupal with Docker https://github.com/ricardoamaro/docker-drupal ● Drupal with MongoDB https://www.drupal.org/project/mongodb
  • 61. Thank You! You can also find Drupaler here: 1. DrupalTaiwan.org 2. goo.gl/PxuhqQ 每週三晚上8:00 Hangout 網路聚 3. FB/groups/drupaltaiwan/ DrupalTaiwan Facebook 社團