SlideShare ist ein Scribd-Unternehmen logo
1 von 52
Downloaden Sie, um offline zu lesen
Designing, Scoping, and Configuring
Scalable Drupal
Infrastructure


Presented 2009-05-30 by David Strauss
Understanding
Load Distribution
Predicting peak traffic
Traffic over the day can be highly irregular. To plan
for peak loads, design as if all traffic were as heavy
as the peak hour of load in a typical month -- and
then plan for some growth.
Analyzing hit distribution
                                                                                       40%
                                     30%
                                                                Hu man
                              e nt
                            nt                                                                                        3%
                      icC
                          o                          50%
                  t
              Sta
                                                                                                                  t
                                                                                                               en




                                                         W
                                                                                                         t   m




                                                          eb
                                                                                                     rea
                                                                                                 al T




                                                           Cr
100%                                                                                     ci




                                                             aw
                                                                                      pe
                                                 s
                                               ou                                   S




                                                               le
                                                                              No




                                                                  r
                                            ym

                                                                      10%
                                        on
       Dy
          n




                                       An
         am




                                                                            “P
            i cP




                                                                              ay
                                                                                   W
                ag




                                                                                    al
                                                                                       l”
                  es




                                                                                            By
                                                                                              pa
                                                                                                   ss
                                 70%
                                        Auth
                                             entic
                                                  ated                                                   7%
                                                         20%
Throughput vs. Delivery Methods
                             Green                    Yellow                     Red
                            (Static)            (Dynamic, Cacheable)          (Dynamic)
                                                                     2
 Content Delivery
    Network
                      ●●●●●●●●●●                          ✖                       ✖

Reverse Proxy Cache   ●●●●●●●                    ●●●●●●●                          ✖
                                   1000 req/s

                                          1
Drupal + Page Cache
   + memcached
                      ●●●                        ●●●                              ✖
                                          1
Drupal + Page Cache   ●●●                        ●●                               ✖
                                          1
      Drupal          ●●●                        ●                       ●
                                                                                      10 req/s
                                                 1   Delivered by Apache without Drupal
More dots = More throughput                      2   Some actually can do this.
Objective

Deliver hits using the
fastest, most scalable
  method available.
Layering: Less Traffic at Each Step

         Your Datacenter



            Load             Reverse
                                       Application
 Traffic     Balancer
                              Proxy
                                         Server
                              Cache


           DNS Round Robin


 CDN                                   Database
Offload from the master database
      Search      Your master database is the single
                  greatest limitation on scalability.



    Application         Slave
      Server           Database




                      Master
     Memory
      Cache
                     Database
Tools to use
‣   Apache Solr for search.
    (Acquia offers hosting of this now.)
‣   Squid or Varnish for reverse proxy caching.
‣   Any third-party service for CDN.
Do the math
‣   All non-CDN traffic travels through your load
    balancers and reverse proxy caches. Even traffic
    passed through to application servers must run
    through the initial layers.


                  Load              Reverse
                                                  Application
    Traffic        Balancer
                                     Proxy
                                                    Server
                                     Cache



            What hit rate is each layer geing?
            How many servers share the load?
Get a management/monitoring box
                Load        (maybe two or three
               Balancer          and have them
                                  specialized or
                                    redundant)


                               Application
    Database   Management
                                 Server




                Reverse
                 Proxy
                 Cache
Planning + Scoping
Infrastructure goals
‣   Redundancy
‣   Scalability
‣   Performance
‣   Manageability
Redundancy
‣   When one server fails, the website should
    be able to recover without taking too long.
‣   This requires N+1, putting a floor
    on system requirements.
‣   How long can your site be down?
    ‣   Automatic versus manual failover
Performance
‣   Find the “sweet spot” for hardware. This is the
    best price/performance point.
‣   Avoid overspending on any type of component
‣   Yet, avoid creating bottlenecks
‣   Swapping memory to disk is very dangerous
Relative importance
                  Processors/Cores       Memory   Disk Speed


 Reverse Proxy
    Cache         ●                  ●●●          ●●

  Web Server      ●●●●●              ●●           ●

Database Server   ●●                 ●●●●         ●●●●

  Monitoring      ●                  ●            ●
Reverse proxy caches
‣   Squid makes poor use of multiple cores. Focus on
    getting the highest per-core performance. The
    best per-core performance is often on dual-core
    processors with high clock rates and lots of cache.
‣   Varnish is much more multithreaded.
‣   4-8 GB memory, total
‣   Expect 1000 requests per second, per Squid
‣   64-bit operating system if more than 2 GB RAM
Web servers
‣   Apache 2.2 + mod_php + memcached
‣   Many processors + many cores is best
‣   25 Apache threads per core
‣   50 MB memory per thread, system-wide
‣   1 GB memory for system
‣   1 GB memory for memcached
‣   Configure MaxClients in Apache to maximum
    system-wide thread count
‣   Expect 1 request per thread, per second
Database servers
‣   MySQL 5.0 cannot use more than eight cores
    effectively but gets good gains from at least quad-
    core processors.
‣   Depend on each Apache thread needing one
    connection, and add another 50.
‣   Each MySQL connection needs around 6 MB.
‣   MySQL with InnoDB needs a buffer pool large
    enough to cache all indexes. Start by giving the
    pool most remaining database server memory and
    working from there.
‣   64-bit operating system if more than 2 GB RAM
Monitoring server
‣   Very low hardware requirements
‣   Choose hardware that is inexpensive but
    essentially similar to the rest of the cluster to
    reduce management overhead
‣   Reliability and fast failover are typically low
    priorities for monitoring services
Assembling the numbers
‣   Start with an architecture providing redundancy.
    ‣   Two servers, each running the whole stack
‣   Increase the number of proxy caches based on
    anonymous and search engine traffic.
‣   Increase the number of web servers based on
    authenticated traffic.
‣   Databases are harder to predict, but large sites
    should run them on at least two separate boxes
    with replication.
Pressflow
Make Drupal sites scale by upgrading core
with a compatible, powerful replacement.
Common large-site issues
‣   Drupal core requires patching to effectively
    support the advanced scalability techniques
    discussed here.
‣   Patches often conflict and have to be reapplied
    with each Drupal upgrade.
‣   The original patches are often unmaintained.
‣   Sites stagnate, running old, insecure versions of
    Drupal core because updating is too difficult.
What is Pressflow?
‣   Pressflow is a derivative of Drupal core that
    integrates the most popular performance and
    scalability enhancements.
‣   Pressflow is completely compatible with existing
    Drupal 5 and 6 modules, both standard and
    custom.
‣   Pressflow installs as a drop-in replacement for
    standard Drupal.
‣   Pressflow is free as long as the matching version of
    Drupal is also supported by the community.
What are the enhancements?
‣   Reverse proxy support
‣   Database replication support
‣   Lower database and session management load
‣   More efficient queries
‣   Testing and optimization by Four Kitchens
    with standard high-performance software
    and hardware configuration
‣   Industry-leading scalability support
    by Four Kitchens and Tag1 Consulting
Four Kitchens + Tag1
‣   Provide the development, support, scalability, and
    performance services behind Pressflow
‣   Comprise most members of the Drupal.org
    infrastructure team
‣   Have the most experience scaling Drupal sites
    of all sizes and all types
Ready to scale?
‣   Learn more about Pressflow:
    ‣   Pick up pamphlets in the lobby
    ‣   Request Pressflow releases at fourkitchens.com
‣   Get the help you need to make it happen:
    ‣   Talk to me (David) or Todd here at DrupalCamp
    ‣   Email shout@fourkitchens.com
Managing the Cluster
The problem
                            Soware and
                            Configuration




Application   Application   Application    Application   Application
  Server        Server        Server         Server        Server


Objectives:
Fast, atomic deployment and rollback
Minimize single points of failure and contention
Restart services
Integrate with version control systems
Manual updates and deployment

   Human         Human         Human         Human         Human




 Application   Application   Application   Application   Application
   Server        Server        Server        Server        Server




Why not: slow deployment,
non-atomic/difficult rollbacks
Shared storage
 Application   Application   Application   Application   Application
   Server        Server        Server        Server        Server




                                NFS




Why not: single point of contention and failure
rsync
                             Synchronized
                              with rsync




 Application   Application   Application    Application   Application
   Server        Server        Server         Server        Server




Why not: non-atomic, does not manage services
Capistrano
                               Deployed with
                                Capistrano




   Application   Application   Application     Application   Application
     Server        Server        Server          Server        Server




Capistrano provides near-atomic deployment,
service restarts, automated rollback, test automation, and
version control integration (tagged releases).
Multistage deployment
                          Deployments
 Deployed with                                               Deployed with
  Capistrano              can be staged.                      Capistrano
                        cap staging deploy
                        cap production deploy

 Development
  Integration                  Deployed with                   Staging
                                Capistrano




Application      Application   Application     Application       Application
  Server           Server        Server          Server            Server
But your application isn’t the only
        thing to manage.
Beneath the application
  Reverse
                             Cluster-level
   Proxy                                                   Database
                             configuration
   Cache




 Application   Application   Application     Application   Application
   Server        Server        Server          Server        Server


Cluster management applies to package management,
updates, and soware configuration.

cfengine and bcfg2 are popular
cluster-level system configuration tools.
System configuration management
‣   Deploys and updates packages, cluster-wide or
    selectively.
‣   Manages arbitrary text configuration files
‣   Analyzes inconsistent configurations (and
    converges them)
‣   Manages device classes (app. servers, database
    servers, etc.)
‣   Allows confident configuration testing on a
    staging server.
All on the management box




                   {
                       Development
                        Integration




                         Staging


      Management

                       Deployment
                          Tools




                        Monitoring
Monitoring
Types of monitoring
        Failure           Capacity/Load

   Analyzing Downtime    Analyzing Trends

    Viewing Failover     Predicting Load

    Troubleshooting     Checking Results of
                         Configuration and
      Notification       Soware Changes
Everyone needs both.
What to use

    Failure/Uptime   Capacity/Load

       Nagios            Cacti

       Hyperic          Munin
Nagios
‣   Highly recommended.
‣   Used by Four Kitchens and Tag1 Consulting for
    client work, Drupal.org, Wikipedia, etc.
‣   Easy to install on CentOS 5 using EPEL packages.
‣   Easy to install nrpe agents to monitor diverse
    services.
‣   Can notify administrators on failure.
‣   We use this on Drupal.org
Hyperic
‣   I haven’t used this much, but it’s fairly popular.
‣   More difficult to set up than Nagios.
Cacti
‣   Highly annoying to set up.
‣   One instance generally collects all statistics.
    (No “agents” on the systems being monitored.)
‣   Provides flexible graphs that can be customized on
    demand.
‣   Optimized database for perpetual statistics collection.
‣   We use this on Drupal.org and for client sites.
Munin
‣   Fairly easy to set up.
‣   One instance generally collects all statistics.
    (No “agents” on the systems being monitored.)
‣   Provides static graphs that cannot be
    customized.
Cluster Problems
Cache/session coherency
‣   Systems that run properly on single boxes may
    lose coherency when run on a networked cluster.
‣   Some caches, like APC’s object cache, have no
    ability to handle network-level coherency. (APC’s
    opcode cache is safe to use on clusters.)
‣   memcached, if misconfigured, can hash values
    inconsistently across the cluster, resulting in
    different servers using different memcached
    instances for the same keys.
‣   Session coherency can be helped with load
    balancer affinity.
Cache regeneration races
‣   Downside to network cache coherency: synched
    expiration
‣   Hard to solve
                     All servers regenerating the item.



           Old Cached Item



                     Expiration
                                  {                  New Cached Item




    Time
Broken replication
‣   MySQL slave servers get out of synch, fall further
    behind
‣   No means of automated recovery
‣   Only solvable with good monitoring and recovery
    procedures
‣   Can automate removal from use, but requires
    cluster management tools
Server failure
‣   Load balancers can remove broken or overloaded
    application reverse proxy caches.
‣   Reverse proxy caches like Varnish can automatically
    use only functional application servers.
‣   Cluster management tools like heartbeat2 can manage
    service IPs on MySQL servers to automate failover.
‣   Conclusion: Each layer intelligently monitors and uses
    the servers beneath it.
All content in this presentation, except where noted otherwise, is Creative Commons Attribution-
ShareAlike 3.0 licensed and copyright 2009 Four Kitchen Studios, LLC.

Weitere ähnliche Inhalte

Andere mochten auch

Top 10 senior technical architect interview questions and answers
Top 10 senior technical architect interview questions and answersTop 10 senior technical architect interview questions and answers
Top 10 senior technical architect interview questions and answers
tonychoper5406
 

Andere mochten auch (11)

PHP at Density and Scale (Lone Star PHP 2014)
PHP at Density and Scale (Lone Star PHP 2014)PHP at Density and Scale (Lone Star PHP 2014)
PHP at Density and Scale (Lone Star PHP 2014)
 
Integrating Drupal into your Enterprise Architecture
Integrating Drupal into your Enterprise ArchitectureIntegrating Drupal into your Enterprise Architecture
Integrating Drupal into your Enterprise Architecture
 
Iksula Drupal Solutions
Iksula Drupal SolutionsIksula Drupal Solutions
Iksula Drupal Solutions
 
Mobile-izing Your Organization with Drupal: Acquia webinar
Mobile-izing Your Organization with Drupal: Acquia webinarMobile-izing Your Organization with Drupal: Acquia webinar
Mobile-izing Your Organization with Drupal: Acquia webinar
 
Scaling Drupal in AWS Using AutoScaling, Cloudformation, RDS and more
Scaling Drupal in AWS Using AutoScaling, Cloudformation, RDS and moreScaling Drupal in AWS Using AutoScaling, Cloudformation, RDS and more
Scaling Drupal in AWS Using AutoScaling, Cloudformation, RDS and more
 
Scaling a High Traffic Web Application: Our Journey from Java to PHP
Scaling a High Traffic Web Application: Our Journey from Java to PHPScaling a High Traffic Web Application: Our Journey from Java to PHP
Scaling a High Traffic Web Application: Our Journey from Java to PHP
 
Amazon Web Services Building Blocks for Drupal Applications and Hosting
Amazon Web Services Building Blocks for Drupal Applications and HostingAmazon Web Services Building Blocks for Drupal Applications and Hosting
Amazon Web Services Building Blocks for Drupal Applications and Hosting
 
Liferay with xebia
Liferay with xebiaLiferay with xebia
Liferay with xebia
 
Top 10 senior technical architect interview questions and answers
Top 10 senior technical architect interview questions and answersTop 10 senior technical architect interview questions and answers
Top 10 senior technical architect interview questions and answers
 
WCM-5 WCM Solutions with Drupal and Alfresco
WCM-5 WCM Solutions with Drupal and AlfrescoWCM-5 WCM Solutions with Drupal and Alfresco
WCM-5 WCM Solutions with Drupal and Alfresco
 
e-Commerce web app Architecture and Scalability
e-Commerce web app Architecture and Scalabilitye-Commerce web app Architecture and Scalability
e-Commerce web app Architecture and Scalability
 

Ähnlich wie Scalable Drupal Infrastructure

What is e market services 2010
What is e market services  2010What is e market services  2010
What is e market services 2010
eMarket Services
 
MobileTechCon 2011 Mainz / Germany
MobileTechCon 2011 Mainz / GermanyMobileTechCon 2011 Mainz / Germany
MobileTechCon 2011 Mainz / Germany
Avenga Germany GmbH
 
Introduction to Continuous Delivery
Introduction to Continuous DeliveryIntroduction to Continuous Delivery
Introduction to Continuous Delivery
Kmanthei
 
KlikEyeDoc User Guide
KlikEyeDoc User GuideKlikEyeDoc User Guide
KlikEyeDoc User Guide
Manohar Vijay
 
30 Minute Expert1
30 Minute Expert130 Minute Expert1
30 Minute Expert1
Ben Wilkoff
 
Designing learning spaces to meet the changing needs and expectations of stud...
Designing learning spaces to meet the changing needs and expectations of stud...Designing learning spaces to meet the changing needs and expectations of stud...
Designing learning spaces to meet the changing needs and expectations of stud...
Dan Munnerley
 
Toolkit eleni katrini
Toolkit eleni katriniToolkit eleni katrini
Toolkit eleni katrini
ekatrini
 

Ähnlich wie Scalable Drupal Infrastructure (20)

What is e market services 2010
What is e market services  2010What is e market services  2010
What is e market services 2010
 
Sfm Washington 20081120
Sfm Washington 20081120Sfm Washington 20081120
Sfm Washington 20081120
 
OpenID Foundation Japan Chapter Announcement
OpenID Foundation Japan Chapter AnnouncementOpenID Foundation Japan Chapter Announcement
OpenID Foundation Japan Chapter Announcement
 
MobileTechCon 2011 Mainz / Germany
MobileTechCon 2011 Mainz / GermanyMobileTechCon 2011 Mainz / Germany
MobileTechCon 2011 Mainz / Germany
 
Asce
AsceAsce
Asce
 
The Singles Lifecycle
The Singles LifecycleThe Singles Lifecycle
The Singles Lifecycle
 
Idenitifying the fit for perennial forage options in a crop-livestock system:...
Idenitifying the fit for perennial forage options in a crop-livestock system:...Idenitifying the fit for perennial forage options in a crop-livestock system:...
Idenitifying the fit for perennial forage options in a crop-livestock system:...
 
Lease Buyout Cost Reduction Six Sigma Case Study
Lease Buyout Cost Reduction Six Sigma Case StudyLease Buyout Cost Reduction Six Sigma Case Study
Lease Buyout Cost Reduction Six Sigma Case Study
 
Introduction to Continuous Delivery
Introduction to Continuous DeliveryIntroduction to Continuous Delivery
Introduction to Continuous Delivery
 
Geography of time and touchpoints time use planning 2012
Geography of time and touchpoints time use planning 2012Geography of time and touchpoints time use planning 2012
Geography of time and touchpoints time use planning 2012
 
KlikEyeDoc User Guide
KlikEyeDoc User GuideKlikEyeDoc User Guide
KlikEyeDoc User Guide
 
Resume Draft
Resume DraftResume Draft
Resume Draft
 
COH Online- The future of screening for distress in cancer settings (February11)
COH Online- The future of screening for distress in cancer settings (February11)COH Online- The future of screening for distress in cancer settings (February11)
COH Online- The future of screening for distress in cancer settings (February11)
 
30 Minute Expert1
30 Minute Expert130 Minute Expert1
30 Minute Expert1
 
Designing learning spaces to meet the changing needs and expectations of stud...
Designing learning spaces to meet the changing needs and expectations of stud...Designing learning spaces to meet the changing needs and expectations of stud...
Designing learning spaces to meet the changing needs and expectations of stud...
 
ASRR Keynote by Barry Dahl
ASRR Keynote by Barry DahlASRR Keynote by Barry Dahl
ASRR Keynote by Barry Dahl
 
STPCon Fall 2011
STPCon Fall 2011STPCon Fall 2011
STPCon Fall 2011
 
6.09 The Job Search Tool Box Presentation
6.09 The Job Search Tool Box Presentation6.09 The Job Search Tool Box Presentation
6.09 The Job Search Tool Box Presentation
 
PowerPoint Design
PowerPoint DesignPowerPoint Design
PowerPoint Design
 
Toolkit eleni katrini
Toolkit eleni katriniToolkit eleni katrini
Toolkit eleni katrini
 

Mehr von David Timothy Strauss

Don't Build "Death Star" Security - O'Reilly Software Architecture Conference...
Don't Build "Death Star" Security - O'Reilly Software Architecture Conference...Don't Build "Death Star" Security - O'Reilly Software Architecture Conference...
Don't Build "Death Star" Security - O'Reilly Software Architecture Conference...
David Timothy Strauss
 

Mehr von David Timothy Strauss (13)

Advanced Drupal 8 Caching
Advanced Drupal 8 CachingAdvanced Drupal 8 Caching
Advanced Drupal 8 Caching
 
LCache DrupalCon Dublin 2016
LCache DrupalCon Dublin 2016LCache DrupalCon Dublin 2016
LCache DrupalCon Dublin 2016
 
Container Security via Monitoring and Orchestration - Container Security Summit
Container Security via Monitoring and Orchestration - Container Security SummitContainer Security via Monitoring and Orchestration - Container Security Summit
Container Security via Monitoring and Orchestration - Container Security Summit
 
Don't Build "Death Star" Security - O'Reilly Software Architecture Conference...
Don't Build "Death Star" Security - O'Reilly Software Architecture Conference...Don't Build "Death Star" Security - O'Reilly Software Architecture Conference...
Don't Build "Death Star" Security - O'Reilly Software Architecture Conference...
 
Effective service and resource management with systemd
Effective service and resource management with systemdEffective service and resource management with systemd
Effective service and resource management with systemd
 
Containers > VMs
Containers > VMsContainers > VMs
Containers > VMs
 
PHP at Density and Scale
PHP at Density and ScalePHP at Density and Scale
PHP at Density and Scale
 
PHP at Density and Scale
PHP at Density and ScalePHP at Density and Scale
PHP at Density and Scale
 
Valhalla at Pantheon
Valhalla at PantheonValhalla at Pantheon
Valhalla at Pantheon
 
Cassandra-Powered Distributed DNS
Cassandra-Powered Distributed DNSCassandra-Powered Distributed DNS
Cassandra-Powered Distributed DNS
 
Planning LAMP infrastructure
Planning LAMP infrastructurePlanning LAMP infrastructure
Planning LAMP infrastructure
 
Is Drupal Secure?
Is Drupal Secure?Is Drupal Secure?
Is Drupal Secure?
 
Cassandra queuing
Cassandra queuingCassandra queuing
Cassandra queuing
 

Kürzlich hochgeladen

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Kürzlich hochgeladen (20)

Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 

Scalable Drupal Infrastructure

  • 1. Designing, Scoping, and Configuring Scalable Drupal Infrastructure Presented 2009-05-30 by David Strauss
  • 3. Predicting peak traffic Traffic over the day can be highly irregular. To plan for peak loads, design as if all traffic were as heavy as the peak hour of load in a typical month -- and then plan for some growth.
  • 4. Analyzing hit distribution 40% 30% Hu man e nt nt 3% icC o 50% t Sta t en W t m eb rea al T Cr 100% ci aw pe s ou S le No r ym 10% on Dy n An am “P i cP ay W ag al l” es By pa ss 70% Auth entic ated 7% 20%
  • 5. Throughput vs. Delivery Methods Green Yellow Red (Static) (Dynamic, Cacheable) (Dynamic) 2 Content Delivery Network ●●●●●●●●●● ✖ ✖ Reverse Proxy Cache ●●●●●●● ●●●●●●● ✖ 1000 req/s 1 Drupal + Page Cache + memcached ●●● ●●● ✖ 1 Drupal + Page Cache ●●● ●● ✖ 1 Drupal ●●● ● ● 10 req/s 1 Delivered by Apache without Drupal More dots = More throughput 2 Some actually can do this.
  • 6. Objective Deliver hits using the fastest, most scalable method available.
  • 7. Layering: Less Traffic at Each Step Your Datacenter Load Reverse Application Traffic Balancer Proxy Server Cache DNS Round Robin CDN Database
  • 8. Offload from the master database Search Your master database is the single greatest limitation on scalability. Application Slave Server Database Master Memory Cache Database
  • 9. Tools to use ‣ Apache Solr for search. (Acquia offers hosting of this now.) ‣ Squid or Varnish for reverse proxy caching. ‣ Any third-party service for CDN.
  • 10. Do the math ‣ All non-CDN traffic travels through your load balancers and reverse proxy caches. Even traffic passed through to application servers must run through the initial layers. Load Reverse Application Traffic Balancer Proxy Server Cache What hit rate is each layer geing? How many servers share the load?
  • 11. Get a management/monitoring box Load (maybe two or three Balancer and have them specialized or redundant) Application Database Management Server Reverse Proxy Cache
  • 13. Infrastructure goals ‣ Redundancy ‣ Scalability ‣ Performance ‣ Manageability
  • 14. Redundancy ‣ When one server fails, the website should be able to recover without taking too long. ‣ This requires N+1, putting a floor on system requirements. ‣ How long can your site be down? ‣ Automatic versus manual failover
  • 15. Performance ‣ Find the “sweet spot” for hardware. This is the best price/performance point. ‣ Avoid overspending on any type of component ‣ Yet, avoid creating bottlenecks ‣ Swapping memory to disk is very dangerous
  • 16. Relative importance Processors/Cores Memory Disk Speed Reverse Proxy Cache ● ●●● ●● Web Server ●●●●● ●● ● Database Server ●● ●●●● ●●●● Monitoring ● ● ●
  • 17. Reverse proxy caches ‣ Squid makes poor use of multiple cores. Focus on getting the highest per-core performance. The best per-core performance is often on dual-core processors with high clock rates and lots of cache. ‣ Varnish is much more multithreaded. ‣ 4-8 GB memory, total ‣ Expect 1000 requests per second, per Squid ‣ 64-bit operating system if more than 2 GB RAM
  • 18. Web servers ‣ Apache 2.2 + mod_php + memcached ‣ Many processors + many cores is best ‣ 25 Apache threads per core ‣ 50 MB memory per thread, system-wide ‣ 1 GB memory for system ‣ 1 GB memory for memcached ‣ Configure MaxClients in Apache to maximum system-wide thread count ‣ Expect 1 request per thread, per second
  • 19. Database servers ‣ MySQL 5.0 cannot use more than eight cores effectively but gets good gains from at least quad- core processors. ‣ Depend on each Apache thread needing one connection, and add another 50. ‣ Each MySQL connection needs around 6 MB. ‣ MySQL with InnoDB needs a buffer pool large enough to cache all indexes. Start by giving the pool most remaining database server memory and working from there. ‣ 64-bit operating system if more than 2 GB RAM
  • 20. Monitoring server ‣ Very low hardware requirements ‣ Choose hardware that is inexpensive but essentially similar to the rest of the cluster to reduce management overhead ‣ Reliability and fast failover are typically low priorities for monitoring services
  • 21. Assembling the numbers ‣ Start with an architecture providing redundancy. ‣ Two servers, each running the whole stack ‣ Increase the number of proxy caches based on anonymous and search engine traffic. ‣ Increase the number of web servers based on authenticated traffic. ‣ Databases are harder to predict, but large sites should run them on at least two separate boxes with replication.
  • 22. Pressflow Make Drupal sites scale by upgrading core with a compatible, powerful replacement.
  • 23. Common large-site issues ‣ Drupal core requires patching to effectively support the advanced scalability techniques discussed here. ‣ Patches often conflict and have to be reapplied with each Drupal upgrade. ‣ The original patches are often unmaintained. ‣ Sites stagnate, running old, insecure versions of Drupal core because updating is too difficult.
  • 24. What is Pressflow? ‣ Pressflow is a derivative of Drupal core that integrates the most popular performance and scalability enhancements. ‣ Pressflow is completely compatible with existing Drupal 5 and 6 modules, both standard and custom. ‣ Pressflow installs as a drop-in replacement for standard Drupal. ‣ Pressflow is free as long as the matching version of Drupal is also supported by the community.
  • 25. What are the enhancements? ‣ Reverse proxy support ‣ Database replication support ‣ Lower database and session management load ‣ More efficient queries ‣ Testing and optimization by Four Kitchens with standard high-performance software and hardware configuration ‣ Industry-leading scalability support by Four Kitchens and Tag1 Consulting
  • 26. Four Kitchens + Tag1 ‣ Provide the development, support, scalability, and performance services behind Pressflow ‣ Comprise most members of the Drupal.org infrastructure team ‣ Have the most experience scaling Drupal sites of all sizes and all types
  • 27. Ready to scale? ‣ Learn more about Pressflow: ‣ Pick up pamphlets in the lobby ‣ Request Pressflow releases at fourkitchens.com ‣ Get the help you need to make it happen: ‣ Talk to me (David) or Todd here at DrupalCamp ‣ Email shout@fourkitchens.com
  • 29. The problem Soware and Configuration Application Application Application Application Application Server Server Server Server Server Objectives: Fast, atomic deployment and rollback Minimize single points of failure and contention Restart services Integrate with version control systems
  • 30. Manual updates and deployment Human Human Human Human Human Application Application Application Application Application Server Server Server Server Server Why not: slow deployment, non-atomic/difficult rollbacks
  • 31. Shared storage Application Application Application Application Application Server Server Server Server Server NFS Why not: single point of contention and failure
  • 32. rsync Synchronized with rsync Application Application Application Application Application Server Server Server Server Server Why not: non-atomic, does not manage services
  • 33. Capistrano Deployed with Capistrano Application Application Application Application Application Server Server Server Server Server Capistrano provides near-atomic deployment, service restarts, automated rollback, test automation, and version control integration (tagged releases).
  • 34. Multistage deployment Deployments Deployed with Deployed with Capistrano can be staged. Capistrano cap staging deploy cap production deploy Development Integration Deployed with Staging Capistrano Application Application Application Application Application Server Server Server Server Server
  • 35. But your application isn’t the only thing to manage.
  • 36. Beneath the application Reverse Cluster-level Proxy Database configuration Cache Application Application Application Application Application Server Server Server Server Server Cluster management applies to package management, updates, and soware configuration. cfengine and bcfg2 are popular cluster-level system configuration tools.
  • 37. System configuration management ‣ Deploys and updates packages, cluster-wide or selectively. ‣ Manages arbitrary text configuration files ‣ Analyzes inconsistent configurations (and converges them) ‣ Manages device classes (app. servers, database servers, etc.) ‣ Allows confident configuration testing on a staging server.
  • 38. All on the management box { Development Integration Staging Management Deployment Tools Monitoring
  • 40. Types of monitoring Failure Capacity/Load Analyzing Downtime Analyzing Trends Viewing Failover Predicting Load Troubleshooting Checking Results of Configuration and Notification Soware Changes
  • 42. What to use Failure/Uptime Capacity/Load Nagios Cacti Hyperic Munin
  • 43. Nagios ‣ Highly recommended. ‣ Used by Four Kitchens and Tag1 Consulting for client work, Drupal.org, Wikipedia, etc. ‣ Easy to install on CentOS 5 using EPEL packages. ‣ Easy to install nrpe agents to monitor diverse services. ‣ Can notify administrators on failure. ‣ We use this on Drupal.org
  • 44. Hyperic ‣ I haven’t used this much, but it’s fairly popular. ‣ More difficult to set up than Nagios.
  • 45. Cacti ‣ Highly annoying to set up. ‣ One instance generally collects all statistics. (No “agents” on the systems being monitored.) ‣ Provides flexible graphs that can be customized on demand. ‣ Optimized database for perpetual statistics collection. ‣ We use this on Drupal.org and for client sites.
  • 46. Munin ‣ Fairly easy to set up. ‣ One instance generally collects all statistics. (No “agents” on the systems being monitored.) ‣ Provides static graphs that cannot be customized.
  • 48. Cache/session coherency ‣ Systems that run properly on single boxes may lose coherency when run on a networked cluster. ‣ Some caches, like APC’s object cache, have no ability to handle network-level coherency. (APC’s opcode cache is safe to use on clusters.) ‣ memcached, if misconfigured, can hash values inconsistently across the cluster, resulting in different servers using different memcached instances for the same keys. ‣ Session coherency can be helped with load balancer affinity.
  • 49. Cache regeneration races ‣ Downside to network cache coherency: synched expiration ‣ Hard to solve All servers regenerating the item. Old Cached Item Expiration { New Cached Item Time
  • 50. Broken replication ‣ MySQL slave servers get out of synch, fall further behind ‣ No means of automated recovery ‣ Only solvable with good monitoring and recovery procedures ‣ Can automate removal from use, but requires cluster management tools
  • 51. Server failure ‣ Load balancers can remove broken or overloaded application reverse proxy caches. ‣ Reverse proxy caches like Varnish can automatically use only functional application servers. ‣ Cluster management tools like heartbeat2 can manage service IPs on MySQL servers to automate failover. ‣ Conclusion: Each layer intelligently monitors and uses the servers beneath it.
  • 52. All content in this presentation, except where noted otherwise, is Creative Commons Attribution- ShareAlike 3.0 licensed and copyright 2009 Four Kitchen Studios, LLC.