SlideShare a Scribd company logo
PHP at 5000 Requests / Sec 
Hootsuite’s Scaling Story 
Bill Monkman 
Lead Technical Engineer - Platform 
@bmonkman
PHP At 5000 Requests Per Second: Hootsuite’s Scaling Story
Overview - Selected Current Architecture 
Users lb1 lb2 lb3 ... Nginx Load balancers 
web1 web2 web3 ... Nginx web servers 
PHP-FPM PHP-FPM PHP-FPM PHP-FPM 
Memcached cluster 
mem1 ... 
Mysql cluster 
master slave 
MongoDB cluster 
master slave 
master slave 
shard1 
shard2 
Gearman cluster 
geard1 geard2 
worker1 ... ... 
... 
Services
Technologies - at first 
• Apache 
• PHP 
• MySQL
Then...
Problem 
It’s hard to scale MySQL horizontally
Solution - Caching 
Memcached. 
● Distributed cache, cluster of boxes with lots of RAM, trivial to scale 
● Cache as much as possible, invalidate only when necessary 
● Use cache instead of DB 
● No joins - decouple entities (collection caching) 
● Twemproxy!
“There are only two hard things in 
Computer Science: cache invalidation and 
naming things.” 
• Phil Karlton
Solution - Caching 
MvcModelBaseCaching 
MvcModelBase 
MvcModelMysql 
SocialNetwork
Solution - Caching 
SELECT * FROM member WHERE org_id=888 
set individual cache records 
member_1 {data} 
member_5 {data} 
member_9 {data} 
set collection cache 
member_org_888 [1,5,9] 
Automatic invalidation of collection cache
Solution - Caching 
It’s hard to scale MySQL horizontally 
Now: 
● No need to scale MySQL 
● Able to serve the whole site on 1 MySQL server 
● 500 MySQL SELECTs per second. 50,000 Memcached GETs. 
● 99+% hit rate
Then...
Problem 
Need a way to perform asynchronous, distributed tasks using a 
single-threaded language.
Solution - Gearman 
Gearman. 
● Distribute work to other servers to handle (workers also using 
PHP, same codebase) 
● Precursor to SOA where everything is truly distributed 
● Many other solutions, queueing systems.
Solution - Gearman 
geard1 geard2 
gearworker1 gearworker2 gearworker6
Solution - Gearman 
Need a way to perform asynchronous, distributed tasks using a 
single-threaded language. 
Now: 
● Moved key tasks to Gearman 
● Another cluster, scalable separately from web 
● Discrete tasks, callable sync or async
Then...
Problem 
Need to store data with the potential to grow too big to handle 
effectively with MySQL.
Solution - MongoDB 
MongoDB. 
● Certain data did not need to be highly relational 
● NoSQL DB, many other solutions these days 
● Mongo can be a pain, lots of moving parts 
● Had to make our own sequencer where auto-incremented ids were 
necessary
Solution - MongoDB 
Need to store data with the potential to grow too big to handle 
effectively with MySQL. 
Now: 
● Multiple clusters containing amounts of data that likely would 
have crushed MySQL 
● Billions of rows per collection, many TB of data on disk
Technologies 
• Apache 
• PHP 
• MySQL 
• Memcached 
• Gearman 
• MongoDB
Then...
Problem 
With a codebase and an engineering team increasing in size, how do 
we keep up the pace of development and maintain control of the 
system? 
(SVN, big branches, merge hell)
Solution - Dark Launching 
Dark Launching. 
● Wrap code in block with a specific name 
● That name will appear in a management page 
● Can control whether or not that block is executed by modifying it’s value 
● Boolean , random percentage, session-based, member list, organization 
list, etc.
Solution - Dark Launching 
if (In_Feature::isEnabled(‘TWITTER_ADS’)) { 
// execute new code 
} else { 
// execute old code 
}
Dark Launching - Reasons 
• Control your code 
• Limit risk -> raise confidence -> speed up pace of releases 
• “Branching in Production” 
• Learning happens in Production
Solution - Dark Launching 
With a codebase and an engineering team increasing in size, how do 
we keep up the pace of development and maintain control of the 
system? 
Now: 
● Work fast with more confidence 
● Huge amount of control over production systems 
● Typically 10+ code releases to production per day 
● Push-based distribution with Consul
Then...
Problem 
With a rapidly increasing codebase and amount of users / traffic 
how do we keep visibility into the performance of the code?
Solution - Monitoring 
Statsd / Graphite. 
Logstash / Elasticsearch / Kibana. 
Sensu 
● Statsd for metrics 
● Logstash for log events 
● Sensu for monitoring / alerting
Solution - Monitoring 
Statsd::timing('apiCall.facebookGraph', microtime(true) - $startTime);
Solution - Monitoring 
Logger::event('user liked from in-stream', In_Log::CATEGORY_UX, $logData);
Solution - Monitoring 
• Visibility into the performance and behaviour of your application 
• Iterate upon your code, measure results 
• Pairs well with dark launching 
• Also systems like New Relic
Solution - Monitoring 
With a rapidly increasing codebase and amount of users / traffic 
how do we keep visibility into the performance of the code? 
Now: 
● Able to watch performance / behaviour in real time. 
● Able to view important events both in the aggregate or very 
granular 
● Able to control the system and watch the effect of changes
Optimizations
Optimizations 
• Things expand beyond their initial scope 
• Case in point: Translations
PHP At 5000 Requests Per Second: Hootsuite’s Scaling Story
PHP At 5000 Requests Per Second: Hootsuite’s Scaling Story
Optimizations - Push work to users 
• Within reason, push work up to users 
• Make your users into a distributed processing grid 
• e.g. Stream rendering
Optimizations - Performance / Risks 
• Performance is more important than clean code, business reqts 
(in the instances where they may be mutually exclusive) 
• Fine line between future proofing and premature optimization 
• Don’t add burdensome processes, but make it easy for your team 
to do things the right way 
• Know your weak spots, protect against abuse
PHP At 5000 Requests Per Second: Hootsuite’s Scaling Story
Technologies 
Linux 
Nginx 
ElasticSearch Varnish 
PHP-FPM 
MySQL 
Jenkins 
Scala 
MongoDB 
Consul 
Gearman 
Redis 
Akka 
Python 
Memcached 
HAProxy 
jQuery 
ZeroMQ 
Backbone RabbitMQ 
EC2 
Zend 
Docker 
Cloudfront CDN 
Logstash 
Zookeeper 
Kibana 
Statsd/Graphite 
Packer 
Vagrant 
Nagios 
VirtualBox 
Spark/Shark 
Sensu 
Symfony 
Riak 
Composer 
Websockets 
Comet 
Hadoop 
Ansible 
Git 
Webpack Redshift
Problem 
With a huge and growing monolithic codebase and over 80 
engineers, how to keep scaling in a manageable way?
Solution - SOA 
SOA. 
● Split up the system into independent services which communicate only via APIs 
● Teams can work on their own services with encapsulated business logic and have their own 
deployment schedules. 
● We chose to use Scala/Akka for services, communicating via ZeroMQ 
● SOA transition made easier by the “no joins” philosophy 
● Tons of work
Solution - SOA 
SOM. 
● “Service Oriented Monolith” 
● When splitting up a monolithic codebase, dependencies are what kill you 
● Fulfill dependencies by writing interim services using existing PHP code 
● Maintain the contract and future scala services will be drop-in 
replacements
Solution - SOA 
With a huge and growing monolithic codebase and over 130 
engineers, how to keep scaling in a manageable way? 
Today: 
● Transitioning to Scala SOA 
● PHP will still be used as the Façade, a thin layer built on top of 
the business logic of the services it interacts with.
Conclusion
Thank You! 
Bill Monkman 
@bmonkman 
More Info: 
code.hootsuite.com

More Related Content

Similar to PHP At 5000 Requests Per Second: Hootsuite’s Scaling Story (20)

PDF
Fixing twitter
Roger Xia
 
PDF
Fixing_Twitter
liujianrong
 
PDF
Fixing Twitter Improving The Performance And Scalability Of The Worlds Most ...
smallerror
 
PDF
Fixing Twitter Improving The Performance And Scalability Of The Worlds Most ...
xlight
 
PDF
Chirp 2010: Scaling Twitter
John Adams
 
PDF
John adams talk cloudy
John Adams
 
PDF
Qcon
adityaagarwal
 
PPTX
SOA with PHP and Symfony
MichalSchroeder
 
PDF
Experiences with Microservices at Tuenti
Andrés Viedma Peláez
 
PDF
Building data intensive applications
Amit Kejriwal
 
PDF
Modern software architectures - PHP UK Conference 2015
Ricard Clau
 
PPT
UnConference for Georgia Southern Computer Science March 31, 2015
Christopher Curtin
 
PDF
Tool up your lamp stack
AgileOnTheBeach
 
PDF
Tool Up Your LAMP Stack
Lorna Mitchell
 
PDF
Microservices Antipatterns
C4Media
 
PDF
Ruslan Belkin And Sean Dawson on LinkedIn's Network Updates Uncovered
LinkedIn
 
PDF
Service-Oriented Design and Implement with Rails3
Wen-Tien Chang
 
KEY
Fixing Twitter Velocity2009
John Adams
 
PDF
What drives Innovation? Innovations And Technological Solutions for the Distr...
Stefano Fago
 
PPTX
The Hard Problems of Continuous Deployment
Timothy Fitz
 
Fixing twitter
Roger Xia
 
Fixing_Twitter
liujianrong
 
Fixing Twitter Improving The Performance And Scalability Of The Worlds Most ...
smallerror
 
Fixing Twitter Improving The Performance And Scalability Of The Worlds Most ...
xlight
 
Chirp 2010: Scaling Twitter
John Adams
 
John adams talk cloudy
John Adams
 
SOA with PHP and Symfony
MichalSchroeder
 
Experiences with Microservices at Tuenti
Andrés Viedma Peláez
 
Building data intensive applications
Amit Kejriwal
 
Modern software architectures - PHP UK Conference 2015
Ricard Clau
 
UnConference for Georgia Southern Computer Science March 31, 2015
Christopher Curtin
 
Tool up your lamp stack
AgileOnTheBeach
 
Tool Up Your LAMP Stack
Lorna Mitchell
 
Microservices Antipatterns
C4Media
 
Ruslan Belkin And Sean Dawson on LinkedIn's Network Updates Uncovered
LinkedIn
 
Service-Oriented Design and Implement with Rails3
Wen-Tien Chang
 
Fixing Twitter Velocity2009
John Adams
 
What drives Innovation? Innovations And Technological Solutions for the Distr...
Stefano Fago
 
The Hard Problems of Continuous Deployment
Timothy Fitz
 

Recently uploaded (20)

PDF
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PDF
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
DOCX
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
PPTX
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PDF
Staying Human in a Machine- Accelerated World
Catalin Jora
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PDF
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
PDF
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
Staying Human in a Machine- Accelerated World
Catalin Jora
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
Ad

PHP At 5000 Requests Per Second: Hootsuite’s Scaling Story

  • 1. PHP at 5000 Requests / Sec Hootsuite’s Scaling Story Bill Monkman Lead Technical Engineer - Platform @bmonkman
  • 3. Overview - Selected Current Architecture Users lb1 lb2 lb3 ... Nginx Load balancers web1 web2 web3 ... Nginx web servers PHP-FPM PHP-FPM PHP-FPM PHP-FPM Memcached cluster mem1 ... Mysql cluster master slave MongoDB cluster master slave master slave shard1 shard2 Gearman cluster geard1 geard2 worker1 ... ... ... Services
  • 4. Technologies - at first • Apache • PHP • MySQL
  • 6. Problem It’s hard to scale MySQL horizontally
  • 7. Solution - Caching Memcached. ● Distributed cache, cluster of boxes with lots of RAM, trivial to scale ● Cache as much as possible, invalidate only when necessary ● Use cache instead of DB ● No joins - decouple entities (collection caching) ● Twemproxy!
  • 8. “There are only two hard things in Computer Science: cache invalidation and naming things.” • Phil Karlton
  • 9. Solution - Caching MvcModelBaseCaching MvcModelBase MvcModelMysql SocialNetwork
  • 10. Solution - Caching SELECT * FROM member WHERE org_id=888 set individual cache records member_1 {data} member_5 {data} member_9 {data} set collection cache member_org_888 [1,5,9] Automatic invalidation of collection cache
  • 11. Solution - Caching It’s hard to scale MySQL horizontally Now: ● No need to scale MySQL ● Able to serve the whole site on 1 MySQL server ● 500 MySQL SELECTs per second. 50,000 Memcached GETs. ● 99+% hit rate
  • 13. Problem Need a way to perform asynchronous, distributed tasks using a single-threaded language.
  • 14. Solution - Gearman Gearman. ● Distribute work to other servers to handle (workers also using PHP, same codebase) ● Precursor to SOA where everything is truly distributed ● Many other solutions, queueing systems.
  • 15. Solution - Gearman geard1 geard2 gearworker1 gearworker2 gearworker6
  • 16. Solution - Gearman Need a way to perform asynchronous, distributed tasks using a single-threaded language. Now: ● Moved key tasks to Gearman ● Another cluster, scalable separately from web ● Discrete tasks, callable sync or async
  • 18. Problem Need to store data with the potential to grow too big to handle effectively with MySQL.
  • 19. Solution - MongoDB MongoDB. ● Certain data did not need to be highly relational ● NoSQL DB, many other solutions these days ● Mongo can be a pain, lots of moving parts ● Had to make our own sequencer where auto-incremented ids were necessary
  • 20. Solution - MongoDB Need to store data with the potential to grow too big to handle effectively with MySQL. Now: ● Multiple clusters containing amounts of data that likely would have crushed MySQL ● Billions of rows per collection, many TB of data on disk
  • 21. Technologies • Apache • PHP • MySQL • Memcached • Gearman • MongoDB
  • 23. Problem With a codebase and an engineering team increasing in size, how do we keep up the pace of development and maintain control of the system? (SVN, big branches, merge hell)
  • 24. Solution - Dark Launching Dark Launching. ● Wrap code in block with a specific name ● That name will appear in a management page ● Can control whether or not that block is executed by modifying it’s value ● Boolean , random percentage, session-based, member list, organization list, etc.
  • 25. Solution - Dark Launching if (In_Feature::isEnabled(‘TWITTER_ADS’)) { // execute new code } else { // execute old code }
  • 26. Dark Launching - Reasons • Control your code • Limit risk -> raise confidence -> speed up pace of releases • “Branching in Production” • Learning happens in Production
  • 27. Solution - Dark Launching With a codebase and an engineering team increasing in size, how do we keep up the pace of development and maintain control of the system? Now: ● Work fast with more confidence ● Huge amount of control over production systems ● Typically 10+ code releases to production per day ● Push-based distribution with Consul
  • 29. Problem With a rapidly increasing codebase and amount of users / traffic how do we keep visibility into the performance of the code?
  • 30. Solution - Monitoring Statsd / Graphite. Logstash / Elasticsearch / Kibana. Sensu ● Statsd for metrics ● Logstash for log events ● Sensu for monitoring / alerting
  • 31. Solution - Monitoring Statsd::timing('apiCall.facebookGraph', microtime(true) - $startTime);
  • 32. Solution - Monitoring Logger::event('user liked from in-stream', In_Log::CATEGORY_UX, $logData);
  • 33. Solution - Monitoring • Visibility into the performance and behaviour of your application • Iterate upon your code, measure results • Pairs well with dark launching • Also systems like New Relic
  • 34. Solution - Monitoring With a rapidly increasing codebase and amount of users / traffic how do we keep visibility into the performance of the code? Now: ● Able to watch performance / behaviour in real time. ● Able to view important events both in the aggregate or very granular ● Able to control the system and watch the effect of changes
  • 36. Optimizations • Things expand beyond their initial scope • Case in point: Translations
  • 39. Optimizations - Push work to users • Within reason, push work up to users • Make your users into a distributed processing grid • e.g. Stream rendering
  • 40. Optimizations - Performance / Risks • Performance is more important than clean code, business reqts (in the instances where they may be mutually exclusive) • Fine line between future proofing and premature optimization • Don’t add burdensome processes, but make it easy for your team to do things the right way • Know your weak spots, protect against abuse
  • 42. Technologies Linux Nginx ElasticSearch Varnish PHP-FPM MySQL Jenkins Scala MongoDB Consul Gearman Redis Akka Python Memcached HAProxy jQuery ZeroMQ Backbone RabbitMQ EC2 Zend Docker Cloudfront CDN Logstash Zookeeper Kibana Statsd/Graphite Packer Vagrant Nagios VirtualBox Spark/Shark Sensu Symfony Riak Composer Websockets Comet Hadoop Ansible Git Webpack Redshift
  • 43. Problem With a huge and growing monolithic codebase and over 80 engineers, how to keep scaling in a manageable way?
  • 44. Solution - SOA SOA. ● Split up the system into independent services which communicate only via APIs ● Teams can work on their own services with encapsulated business logic and have their own deployment schedules. ● We chose to use Scala/Akka for services, communicating via ZeroMQ ● SOA transition made easier by the “no joins” philosophy ● Tons of work
  • 45. Solution - SOA SOM. ● “Service Oriented Monolith” ● When splitting up a monolithic codebase, dependencies are what kill you ● Fulfill dependencies by writing interim services using existing PHP code ● Maintain the contract and future scala services will be drop-in replacements
  • 46. Solution - SOA With a huge and growing monolithic codebase and over 130 engineers, how to keep scaling in a manageable way? Today: ● Transitioning to Scala SOA ● PHP will still be used as the Façade, a thin layer built on top of the business logic of the services it interacts with.
  • 48. Thank You! Bill Monkman @bmonkman More Info: code.hootsuite.com