Hardware Layouts for LAMP Installations John Allspaw, Flickr Plumbr Flickr (Yahoo) [email_address] October 18, 2005
Hardware Layouts for LAMP Installations Hardware requirements for LAMP installs have to do with: A decent amount about the actual hardware (“in-box” stuff) A bit more about the hardware  architecture Which should complement the  application  architecture
Hardware Layouts for LAMP Installations What we’ll talk about here: Database (MySQL) layouts and considerations Some miscellaneous/esoteric stuff (lessons learned) Caching content and considerations
Hardware Layouts for LAMP Installations Growing Up, “One Box” solution Basic web application (discussion board, etc.) Low traffic  Apache/PHP/MySQL on one machine Bottlenecks will start showing up: Most likely database before apache/php Disk I/O (Innodb) or locking wait states (MyISAM) Context switching between memory work (apache) and CPU work (MySQL)
Hardware Layouts for LAMP Installations ONE BOX
Hardware Layouts for LAMP Installations Growing Up, “Two Box” solution Higher traffic application (more demand) Apache/PHP on box A, MySQL on box B Same network = bad (*or is it ?), separate network = good Bottlenecks with start to be: Disk I/O on MySQL machine (Innodb) Locking on MyISAM tables Network I/O
Hardware Layouts for LAMP Installations TWO BOX
Hardware Layouts for LAMP Installations Growing Up, “Many Boxes with Replication” solution Yet even higher traffic  Writes are separated from reads (master gets IN/UP/DEL, slaves get SELECTs) Diminishes network bottlenecks, disk I/O, and other “in-box” issues SELECTs, IN/UP/DEL can be specified  within  the application,  OR…. Load-balancing can be used
Hardware Layouts for LAMP Installations MANY BOX
Hardware Layouts for LAMP Installations Slave Lag When slaves can’t keep up with replication They’re too busy: Reading (production traffic) Writing (replication) Manifests as: Comments/photos/any user-entered data doesn’t show up on the site right away So users will repeat the action, thinking that it didn’t “take” the first time, makes situation worse
Hardware Layouts for LAMP Installations Insert funny photo here about slave lag* *slave lag isn’t funny
Hardware Layouts for LAMP Installations Hardware Load Balancing MySQL
Hardware Layouts for LAMP Installations How It’s Usually Done Standard MySQL master/slave replication All writes (inserts/updates/deletes) from application go to Master All reads (selects) from application go to a load-balanced VIP (virtual IP)  spreading out load across all slaves
Hardware Layouts for LAMP Installations
Hardware Layouts for LAMP Installations What Is Good About Load Balancing you can add/remove slaves without affecting application, since queries are atomic (sorta/kinda) additional monitoring point and some automatic failure handling you can treat all of your slave pool as one resource, and makes capacity planning a lot easier if you know the  ceiling  of each slave
Hardware Layouts for LAMP Installations How do you know the ceiling (maximum QPS capacity) of each slave ? First make a guess based on benchmarking (or look up some bench results from Tom’s Hardware or anandtech.com, etc.  Then get more machines than that :) Scary:  in production during a lull in traffic, remove machines from the pool until you detect lag The QPS you saw right before slave lag set in: THAT  is your ceiling
Hardware Layouts for LAMP Installations
Hardware Layouts for LAMP Installations What Can Be Bad/Tough About Load Balancing:  not all load-balancers are created equal, not all load-balancing companies expect this product use, so support may still be thin not that many people are doing it in high-volume situations yet, so support from community isn’t large either Gotchas:  port exhaustion,  health checks,  and balance algorithms
Hardware Layouts for LAMP Installations Port Exhaustion PROBLEM: LB is basically a traffic cop, nothing more Side effect of having a lot of connections:  only ~64,511 ports per each IP (VIP) to use 64,511 ports/120 sec per port…. ~535 max concurrent connections per IP* * Not really, but close to it:  tcp_tw_recycle and tcp_tw_reuse
Hardware Layouts for LAMP Installations
Hardware Layouts for LAMP Installations Port Exhaustion (cont’d) SOLUTION: Use a pool of IPs on the database slave/farm side (Netscaler calls these “subnet IPs”, Alteon calls them “PiPs”) Monitor port/connection usage, know when it’s time to add more
Hardware Layouts for LAMP Installations Health checks LB won’t know anything about how well each MySQL slave is doing, and will pass traffic as long as port 3306 is answering Load balancers don’t talk SQL, only things like plain old TCP, HTTP/S, maybe FTP
Hardware Layouts for LAMP Installations Health checks (cont’d) Two options: 1. Dirty, but workable:  Have each server monitor itself, and shut off/firewall its own port 3306, even if MySQL is still running
Hardware Layouts for LAMP Installations Health checks (cont’d) 2. Cleaner, but a bit more work: Have each server monitor itself, and run a check via xinetd (for example, a nagios monitor) So the LB can tickle that port, and expect back an “OK” string.  If not, it’ll automatically take that server out of the pool Good for detecting and counteracting isolated incidents of ‘slave lag’ and automatically handling it
Hardware Layouts for LAMP Installations Health Checks
Hardware Layouts for LAMP Installations Balancing Algorithms Load balancers know HTTP, FTP, basic TCP, but not SQL Two things to care about: Should the server still be in the pool ?  (health checks) How should load get balanced ? “ least connections” or “least bandwidth” or “least  anything” =  BAD Because not all SQL queries are created equal Use “round-robin” or “random” What happens if you don’t:  Evil Favoritism™
Hardware Layouts for LAMP Installations Evil Favoritism
Hardware Layouts for LAMP Installations
Hardware Layouts for LAMP Installations Meanwhile….for “in-the-box considerations” Interleaving memory *does* make a difference Always RAID10 (or RAID0 if you’re crazy*) but NEVER RAID5 (for Innodb, anyway) RAID10 has much more read capacity, and a write  penalty , but not as much as RAID5 Always have battery backup for HW RAID write caching Or, don’t use write caching at all
Hardware Layouts for LAMP Installations “ IN-THE-BOX” considerations (cont’d) Always have proper monitoring (nagios, etc.) for failed/rebuilding drives SATA or SCSI ?  SCSI !   It’s worth it! 10k or 15k RPM  SCSI ?  15k!   It’s worth it! (~20% performance increase when you’re disk bound) For 64bit Linux (AMD64 or EM64T): Crank up the RAM for Innodb’s buffer pool Swapping = very very bad either: Turn it off (slightly scary) Leave it on and set /proc/sys/vm/swapiness = 0
Hardware Layouts for LAMP Installations 10k versus 15k drives ? Does it really matter that much ? Some in-the-wild proof….
Hardware Layouts for LAMP Installations 10K drives 15K drives Slave Lag in production
Hardware Layouts for LAMP Installations Using MySQL with a SAN (Storage Area Network) Do  layout storage same as if they would be local Do  make sure that the HBA (fiber card) driver is  well  supported by Linux Don’t  share volumes across databases Don’t  forget to correctly tune Queue Depth Size, which should be increasing, from server HBA -> switch -> storage
Hardware Layouts for LAMP Installations Caching your static content
Hardware Layouts for LAMP Installations Caching Static Content SQUID = good Relieve your front-end PHP machines from looking up data that will never (or rarely) change Generate static pages, and cache them in squid, along with your images
Hardware Layouts for LAMP Installations Caching Static Content (cont’d) Use SQUID to accelerate plain-old origin webservers, also known as  “reverse-proxy”  HTTP acceleration Described here and elsewhere: http://www.squid-cache.org/Doc/FAQ/FAQ-20.html
Hardware Layouts for LAMP Installations Basic SQUID layout squid accepts requests on 80 passes on cache misses to apache on 81 apache uses as its docroot an NFS mounted dir should be on local subnet, or dedicated net
Hardware Layouts for LAMP Installations Good HW layout for high-volume SQUIDing Do  use SCSI, and many spindles for disk cache dirs Don’t  use RAID Do  use network attached storage, or place the origin servers on separate machines Do  use ext3 with noatime for disk cache dirs Do  monitor squid stats
Hardware Layouts for LAMP Installations Flickr: How We Roll
Hardware Layouts for LAMP Installations Yummy SQUID stats: >2800 images/sec, ~75-80% are cache hits ~10 million photos cached at any time 1.5 million cached in memory
Hardware Layouts for LAMP Installations The End

More Related Content

PPTX
Apache Performance Tuning: Scaling Out
KEY
Perl in Teh Cloud
PPTX
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)
PDF
My Opera meets Varnish, Dec 2009
PPTX
Creating your own AtoM demo data set for re-use with Vagrant
PDF
Installing php and my sql locally using xampp
PDF
The Integration of Laravel with Swoole
PPTX
PHP North-East - Automated Deployment
Apache Performance Tuning: Scaling Out
Perl in Teh Cloud
Your Inner Sysadmin - Tutorial (SunshinePHP 2015)
My Opera meets Varnish, Dec 2009
Creating your own AtoM demo data set for re-use with Vagrant
Installing php and my sql locally using xampp
The Integration of Laravel with Swoole
PHP North-East - Automated Deployment

What's hot (20)

PDF
Apache Tomcat + Java EE = Apache TomEE
PPTX
End-to-end Troubleshooting Checklist for Microsoft SQL Server
PDF
CPAN Training
PPT
All Change
PDF
Scale ColdFusion with Terracotta Distributed Caching for Ehchache
PPTX
Performance all teh things
PDF
JavaOne 2010: Top 10 Causes for Java Issues in Production and What to Do When...
PDF
Oracle 12c Parallel Execution New Features
PPTX
AtoM's Command Line Tasks - An Introduction
PDF
Oracle olap-installation
PPTX
Web container and Apache Tomcat
PDF
Swoole Love PHP
PPTX
Drupal, varnish, esi - Toulouse November 2
KEY
Pinto+Stratopan+Love
PDF
Os Wilhelm
PDF
Os Leventhal
PDF
Docker in Continuous Integration
PDF
FITC - Here Be Dragons: Advanced JavaScript Debugging
ODP
Perl in RPM-Land
PPTX
Apache Tomcat + Java EE = Apache TomEE
End-to-end Troubleshooting Checklist for Microsoft SQL Server
CPAN Training
All Change
Scale ColdFusion with Terracotta Distributed Caching for Ehchache
Performance all teh things
JavaOne 2010: Top 10 Causes for Java Issues in Production and What to Do When...
Oracle 12c Parallel Execution New Features
AtoM's Command Line Tasks - An Introduction
Oracle olap-installation
Web container and Apache Tomcat
Swoole Love PHP
Drupal, varnish, esi - Toulouse November 2
Pinto+Stratopan+Love
Os Wilhelm
Os Leventhal
Docker in Continuous Integration
FITC - Here Be Dragons: Advanced JavaScript Debugging
Perl in RPM-Land
Ad

Viewers also liked (15)

PPT
Nowa ok prezentacja dla rodzicow 2016ppt [odzyskano]
PPTX
Dzień przedszkolaka na Bielanach
PPTX
Projeto Casa de Veraneio
PPTX
презентация курса
PDF
john nader CV
PDF
11 sl k_u_2011
DOC
Modelo petição juntada de procuração substabelecimento
PPTX
Senac assistente de marketing aula 02
PDF
10 t k_u
PDF
9 iu ser
PDF
11 iu ser
PDF
6 geog s_ua
PDF
6 m m_2014_ru
PPTX
Prezdszkole nr 240
PPT
My presentation in MST -11 International Workshop
Nowa ok prezentacja dla rodzicow 2016ppt [odzyskano]
Dzień przedszkolaka na Bielanach
Projeto Casa de Veraneio
презентация курса
john nader CV
11 sl k_u_2011
Modelo petição juntada de procuração substabelecimento
Senac assistente de marketing aula 02
10 t k_u
9 iu ser
11 iu ser
6 geog s_ua
6 m m_2014_ru
Prezdszkole nr 240
My presentation in MST -11 International Workshop
Ad

Similar to 1. Scaling PHP/MySQL...Presentation from Flickr (20)

ODP
MNPHP Scalable Architecture 101 - Feb 3 2011
PPT
Apache Traffic Server
PPT
Everyone loves PHP
ODP
MySQL HA with PaceMaker
PDF
Performance Whack-a-Mole Tutorial (pgCon 2009)
PDF
DrupalCampLA 2011: Drupal backend-performance
PDF
Oracle R12 EBS Performance Tuning
PPS
Scalable Web Architectures: Common Patterns and Approaches - Web 2.0 Expo NYC
PDF
Sparklife - Life In The Trenches With Spark
PPS
Web20expo Scalable Web Arch
PPS
Web20expo Scalable Web Arch
PPS
Web20expo Scalable Web Arch
ODP
Hug Hbase Presentation.
PDF
WordPress Performance & Scalability
ODP
WP Sandbox Presentation WordCamp Toronto 2011
PDF
Performance Whack A Mole
PPT
Knowledge share about scalable application architecture
ODP
Automated Deployment using Open Source
PPT
Planning For High Performance Web Application
PPTX
Asynchronous programming - .NET Way
MNPHP Scalable Architecture 101 - Feb 3 2011
Apache Traffic Server
Everyone loves PHP
MySQL HA with PaceMaker
Performance Whack-a-Mole Tutorial (pgCon 2009)
DrupalCampLA 2011: Drupal backend-performance
Oracle R12 EBS Performance Tuning
Scalable Web Architectures: Common Patterns and Approaches - Web 2.0 Expo NYC
Sparklife - Life In The Trenches With Spark
Web20expo Scalable Web Arch
Web20expo Scalable Web Arch
Web20expo Scalable Web Arch
Hug Hbase Presentation.
WordPress Performance & Scalability
WP Sandbox Presentation WordCamp Toronto 2011
Performance Whack A Mole
Knowledge share about scalable application architecture
Automated Deployment using Open Source
Planning For High Performance Web Application
Asynchronous programming - .NET Way

Recently uploaded (20)

PDF
The-Future-of-Automotive-Quality-is-Here-AI-Driven-Engineering.pdf
PDF
Decision Optimization - From Theory to Practice
PDF
5-Ways-AI-is-Revolutionizing-Telecom-Quality-Engineering.pdf
PDF
NewMind AI Weekly Chronicles – August ’25 Week IV
PDF
Electrocardiogram sequences data analytics and classification using unsupervi...
PDF
giants, standing on the shoulders of - by Daniel Stenberg
PPTX
AI-driven Assurance Across Your End-to-end Network With ThousandEyes
PDF
Ensemble model-based arrhythmia classification with local interpretable model...
PDF
AI.gov: A Trojan Horse in the Age of Artificial Intelligence
PDF
IT-ITes Industry bjjbnkmkhkhknbmhkhmjhjkhj
PDF
SaaS reusability assessment using machine learning techniques
PDF
Transform-Your-Factory-with-AI-Driven-Quality-Engineering.pdf
PPTX
Build automations faster and more reliably with UiPath ScreenPlay
PDF
EIS-Webinar-Regulated-Industries-2025-08.pdf
PDF
Transform-Your-Streaming-Platform-with-AI-Driven-Quality-Engineering.pdf
PDF
The-2025-Engineering-Revolution-AI-Quality-and-DevOps-Convergence.pdf
PDF
Connector Corner: Transform Unstructured Documents with Agentic Automation
PDF
Planning-an-Audit-A-How-To-Guide-Checklist-WP.pdf
PDF
Aug23rd - Mulesoft Community Workshop - Hyd, India.pdf
PDF
Rapid Prototyping: A lecture on prototyping techniques for interface design
The-Future-of-Automotive-Quality-is-Here-AI-Driven-Engineering.pdf
Decision Optimization - From Theory to Practice
5-Ways-AI-is-Revolutionizing-Telecom-Quality-Engineering.pdf
NewMind AI Weekly Chronicles – August ’25 Week IV
Electrocardiogram sequences data analytics and classification using unsupervi...
giants, standing on the shoulders of - by Daniel Stenberg
AI-driven Assurance Across Your End-to-end Network With ThousandEyes
Ensemble model-based arrhythmia classification with local interpretable model...
AI.gov: A Trojan Horse in the Age of Artificial Intelligence
IT-ITes Industry bjjbnkmkhkhknbmhkhmjhjkhj
SaaS reusability assessment using machine learning techniques
Transform-Your-Factory-with-AI-Driven-Quality-Engineering.pdf
Build automations faster and more reliably with UiPath ScreenPlay
EIS-Webinar-Regulated-Industries-2025-08.pdf
Transform-Your-Streaming-Platform-with-AI-Driven-Quality-Engineering.pdf
The-2025-Engineering-Revolution-AI-Quality-and-DevOps-Convergence.pdf
Connector Corner: Transform Unstructured Documents with Agentic Automation
Planning-an-Audit-A-How-To-Guide-Checklist-WP.pdf
Aug23rd - Mulesoft Community Workshop - Hyd, India.pdf
Rapid Prototyping: A lecture on prototyping techniques for interface design

1. Scaling PHP/MySQL...Presentation from Flickr

  • 1. Hardware Layouts for LAMP Installations John Allspaw, Flickr Plumbr Flickr (Yahoo) [email_address] October 18, 2005
  • 2. Hardware Layouts for LAMP Installations Hardware requirements for LAMP installs have to do with: A decent amount about the actual hardware (“in-box” stuff) A bit more about the hardware architecture Which should complement the application architecture
  • 3. Hardware Layouts for LAMP Installations What we’ll talk about here: Database (MySQL) layouts and considerations Some miscellaneous/esoteric stuff (lessons learned) Caching content and considerations
  • 4. Hardware Layouts for LAMP Installations Growing Up, “One Box” solution Basic web application (discussion board, etc.) Low traffic Apache/PHP/MySQL on one machine Bottlenecks will start showing up: Most likely database before apache/php Disk I/O (Innodb) or locking wait states (MyISAM) Context switching between memory work (apache) and CPU work (MySQL)
  • 5. Hardware Layouts for LAMP Installations ONE BOX
  • 6. Hardware Layouts for LAMP Installations Growing Up, “Two Box” solution Higher traffic application (more demand) Apache/PHP on box A, MySQL on box B Same network = bad (*or is it ?), separate network = good Bottlenecks with start to be: Disk I/O on MySQL machine (Innodb) Locking on MyISAM tables Network I/O
  • 7. Hardware Layouts for LAMP Installations TWO BOX
  • 8. Hardware Layouts for LAMP Installations Growing Up, “Many Boxes with Replication” solution Yet even higher traffic Writes are separated from reads (master gets IN/UP/DEL, slaves get SELECTs) Diminishes network bottlenecks, disk I/O, and other “in-box” issues SELECTs, IN/UP/DEL can be specified within the application, OR…. Load-balancing can be used
  • 9. Hardware Layouts for LAMP Installations MANY BOX
  • 10. Hardware Layouts for LAMP Installations Slave Lag When slaves can’t keep up with replication They’re too busy: Reading (production traffic) Writing (replication) Manifests as: Comments/photos/any user-entered data doesn’t show up on the site right away So users will repeat the action, thinking that it didn’t “take” the first time, makes situation worse
  • 11. Hardware Layouts for LAMP Installations Insert funny photo here about slave lag* *slave lag isn’t funny
  • 12. Hardware Layouts for LAMP Installations Hardware Load Balancing MySQL
  • 13. Hardware Layouts for LAMP Installations How It’s Usually Done Standard MySQL master/slave replication All writes (inserts/updates/deletes) from application go to Master All reads (selects) from application go to a load-balanced VIP (virtual IP) spreading out load across all slaves
  • 14. Hardware Layouts for LAMP Installations
  • 15. Hardware Layouts for LAMP Installations What Is Good About Load Balancing you can add/remove slaves without affecting application, since queries are atomic (sorta/kinda) additional monitoring point and some automatic failure handling you can treat all of your slave pool as one resource, and makes capacity planning a lot easier if you know the ceiling of each slave
  • 16. Hardware Layouts for LAMP Installations How do you know the ceiling (maximum QPS capacity) of each slave ? First make a guess based on benchmarking (or look up some bench results from Tom’s Hardware or anandtech.com, etc. Then get more machines than that :) Scary: in production during a lull in traffic, remove machines from the pool until you detect lag The QPS you saw right before slave lag set in: THAT is your ceiling
  • 17. Hardware Layouts for LAMP Installations
  • 18. Hardware Layouts for LAMP Installations What Can Be Bad/Tough About Load Balancing: not all load-balancers are created equal, not all load-balancing companies expect this product use, so support may still be thin not that many people are doing it in high-volume situations yet, so support from community isn’t large either Gotchas: port exhaustion, health checks, and balance algorithms
  • 19. Hardware Layouts for LAMP Installations Port Exhaustion PROBLEM: LB is basically a traffic cop, nothing more Side effect of having a lot of connections: only ~64,511 ports per each IP (VIP) to use 64,511 ports/120 sec per port…. ~535 max concurrent connections per IP* * Not really, but close to it: tcp_tw_recycle and tcp_tw_reuse
  • 20. Hardware Layouts for LAMP Installations
  • 21. Hardware Layouts for LAMP Installations Port Exhaustion (cont’d) SOLUTION: Use a pool of IPs on the database slave/farm side (Netscaler calls these “subnet IPs”, Alteon calls them “PiPs”) Monitor port/connection usage, know when it’s time to add more
  • 22. Hardware Layouts for LAMP Installations Health checks LB won’t know anything about how well each MySQL slave is doing, and will pass traffic as long as port 3306 is answering Load balancers don’t talk SQL, only things like plain old TCP, HTTP/S, maybe FTP
  • 23. Hardware Layouts for LAMP Installations Health checks (cont’d) Two options: 1. Dirty, but workable: Have each server monitor itself, and shut off/firewall its own port 3306, even if MySQL is still running
  • 24. Hardware Layouts for LAMP Installations Health checks (cont’d) 2. Cleaner, but a bit more work: Have each server monitor itself, and run a check via xinetd (for example, a nagios monitor) So the LB can tickle that port, and expect back an “OK” string. If not, it’ll automatically take that server out of the pool Good for detecting and counteracting isolated incidents of ‘slave lag’ and automatically handling it
  • 25. Hardware Layouts for LAMP Installations Health Checks
  • 26. Hardware Layouts for LAMP Installations Balancing Algorithms Load balancers know HTTP, FTP, basic TCP, but not SQL Two things to care about: Should the server still be in the pool ? (health checks) How should load get balanced ? “ least connections” or “least bandwidth” or “least anything” = BAD Because not all SQL queries are created equal Use “round-robin” or “random” What happens if you don’t: Evil Favoritism™
  • 27. Hardware Layouts for LAMP Installations Evil Favoritism
  • 28. Hardware Layouts for LAMP Installations
  • 29. Hardware Layouts for LAMP Installations Meanwhile….for “in-the-box considerations” Interleaving memory *does* make a difference Always RAID10 (or RAID0 if you’re crazy*) but NEVER RAID5 (for Innodb, anyway) RAID10 has much more read capacity, and a write penalty , but not as much as RAID5 Always have battery backup for HW RAID write caching Or, don’t use write caching at all
  • 30. Hardware Layouts for LAMP Installations “ IN-THE-BOX” considerations (cont’d) Always have proper monitoring (nagios, etc.) for failed/rebuilding drives SATA or SCSI ? SCSI ! It’s worth it! 10k or 15k RPM SCSI ? 15k! It’s worth it! (~20% performance increase when you’re disk bound) For 64bit Linux (AMD64 or EM64T): Crank up the RAM for Innodb’s buffer pool Swapping = very very bad either: Turn it off (slightly scary) Leave it on and set /proc/sys/vm/swapiness = 0
  • 31. Hardware Layouts for LAMP Installations 10k versus 15k drives ? Does it really matter that much ? Some in-the-wild proof….
  • 32. Hardware Layouts for LAMP Installations 10K drives 15K drives Slave Lag in production
  • 33. Hardware Layouts for LAMP Installations Using MySQL with a SAN (Storage Area Network) Do layout storage same as if they would be local Do make sure that the HBA (fiber card) driver is well supported by Linux Don’t share volumes across databases Don’t forget to correctly tune Queue Depth Size, which should be increasing, from server HBA -> switch -> storage
  • 34. Hardware Layouts for LAMP Installations Caching your static content
  • 35. Hardware Layouts for LAMP Installations Caching Static Content SQUID = good Relieve your front-end PHP machines from looking up data that will never (or rarely) change Generate static pages, and cache them in squid, along with your images
  • 36. Hardware Layouts for LAMP Installations Caching Static Content (cont’d) Use SQUID to accelerate plain-old origin webservers, also known as “reverse-proxy” HTTP acceleration Described here and elsewhere: http://www.squid-cache.org/Doc/FAQ/FAQ-20.html
  • 37. Hardware Layouts for LAMP Installations Basic SQUID layout squid accepts requests on 80 passes on cache misses to apache on 81 apache uses as its docroot an NFS mounted dir should be on local subnet, or dedicated net
  • 38. Hardware Layouts for LAMP Installations Good HW layout for high-volume SQUIDing Do use SCSI, and many spindles for disk cache dirs Don’t use RAID Do use network attached storage, or place the origin servers on separate machines Do use ext3 with noatime for disk cache dirs Do monitor squid stats
  • 39. Hardware Layouts for LAMP Installations Flickr: How We Roll
  • 40. Hardware Layouts for LAMP Installations Yummy SQUID stats: >2800 images/sec, ~75-80% are cache hits ~10 million photos cached at any time 1.5 million cached in memory
  • 41. Hardware Layouts for LAMP Installations The End