SlideShare a Scribd company logo
Apache Performance Tuning

        Part 1: Scaling Up

   Sander Temme <sander@temme.net>
http://httpd.apache.org/docs/1.3/misc/perf-tuning.html
                          says:



“Apache is a general webserver, which is designed to be correct
first, and fast second. Even so, its performance is quite
satisfactory. Most sites have less than 10Mbits of outgoing
bandwidth, which Apache can fill using only a low end Pentium-
based webserver.”




                                                              2
3
The Silver Bullet

“Make my web server go
     fast, please”
5
Sorry

There is No Silver Bullet
No Silver Bullet
• Every site is different
  – Dynamic Content
  – Static Content
• Different Traffic Patterns
• SSL or Plaintext
• No Cookie Cutter Approach



                               7
Performance Tuning
•   Ready
•   Aim
•   Fire
•   Aim some more
•   Understand
•   Aim even more
•   Fire

                            8
In practice
•   Setup for analysis
•   Monitor and analyse
•   Tune configuration
•   Lather, rinse, repeat




                             9
Monitoring Your Server




                         10
Purposes of Monitoring
•   Observation
•   Extrapolation
•   Signals/Alerts
•   Testing




                               11
Monitoring Apache




                    12
Monitoring: Ganglia
• Long term logging
• Trend Watching
• Free




                            14
Other Monitoring Tools
•   vmstat
•   iostat
•   top
•   free
•   netstat -s




                               15
Web Server Logs
• ErrorLog
  – LogLevel:
    debug, info, notice, warn, error, crit
• Access Log: TransferLog or
  CustomLog
  – Common Log Format




                                             16
Combined Log Format
222.127.111.234 - - [09/Apr/2008:07:46:54 +0000] "GET /sander/SanderMugshot2.jpg
HTTP/1.1" 200 22992 "http://people.apache.org/gallery.html" "Mozilla/5.0 (Windows; U;
Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13"

Client IP           222.127.111.234
RFC 1413 ident      -
username            -
timestamp           [09/Apr/2008:07:46:54 +0000]
Request             "GET /sander/SanderMugshot2.jpg HTTP/1.1"
Status Code         200
Content Bytes       22992
Referer             "http://people.apache.org/gallery.html"
User-Agent          "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US;
                    rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13"

            "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i""


                                                                                   17
Log Analysis
• Analyse Apache log files
• Periodically run vmstat, iostat
  – Set up a script
• Watch for Trends
  – Tells you when to buy new kit
• Watch for Peaks
  – And how your system behaves


                                    18
Log Analysis – Webalizer




                           19
Configuring for Performance
• Configuring Apache
• Tuning the Operating System




                                20
Apache Configuration
•   Process/Thread Management
•   DNS Lookups
•   Avoid .htaccess Files
•   Disable unused modules
•   Tune your App Tier




                                21
DNS Lookups
• HostnameLookups
• Access Control
  – Bad: Deny from example.com
  – Good: Deny from 172.160.234.5




                                    22
.htaccess Files
• Per-directory configuration files
• Accessed for every request
• Best performance: AllowOverride
  none

  GET /dir1/dir2/restricted.html HTTP/1.0




                                            23
MaxClients
• Configuration file directive
• Maximum number of workers
• Apache 1.3, 2 Prefork: processes
• Apache 2 Worker: threads *
  processes
• Limit according to resources
  (memory, CPU)


                                     24
Server-side Includes
• We Love Them!
  – Easy to implement
  – Easy to manage
• We Hate Them!
  – They break sendfile()
  – They may break cacheability
• X-bit hack


                                  25
The X-Bit Hack
• Directive: XBitHack on|off|full
  – Default: off
• On:
  – Every text/html document that has User
    Execute bit set is parsed
• Full:
  – If Group Execute bit is set, send Last-
    Modified of file on disk


                                              26
Sizing MaxClients
• Take total RAM
• Subtract OS allowance
  – look at free value without Apache, etc.
• Subtract external program allowance
  – JVM, cgi programs, MySQL?
• Divide by httpd process size
  – Read process size from top


                                              27
Top




      28
Selecting Your MPM
• Processes and Threads
• Differences between platforms
• Thread-safety issues




                                  29
Processes and Threads
• Process:
  – Own copy of data structures
  – Shares: program code, shared memory
  – Context switches expensive
• Thread:
  – Runs within process
  – Shares process environment
  – No context switch


                                          30
Platforms and Threading
•   Context switches expensive on Solaris, AIX
•   Context switches cheaper on Linux
•   Solaris uses M:N threading
•   Linux uses 1 process per thread




                                             31
Thread-safety
• Third-party modules and libraries
  – mod_perl: experimental threading in Perl
    5.6; more mature in Perl 5.8
  – PHP: uses many third-party libraries
• FreeBSD: threading not reliable until
  5.x
  – Apache 2.2 Worker MPM runs on
    FreeBSD


                                           32
Tune your App Tier
• Tomcat
  – Edit server.xml, tune
    minProcessors, maxProcessors
  – Use APR -> Persistent connections
  – Tune JVM (Heap, Garbage Collection)
• MySQL
  – Ships with various scenarios in support-files:
     • my-{small,medium,large,huge}.conf
  – PHP & prefork: every child makes a connection
  – Tune max_connections variable in my.cnf


                                                     33
System Tuning Tips
• RAM and swap space
• ulimit: files and processes
• Turn off unused services and
  modules




                                 34
RAM and Swap
•   Swap is disk-based Extension of RAM
•   Excessive swapping kills performance
•   Tune MaxClients
•   Never have more memory than swap
    – Upgrade RAM -> add more swap space




                                           35
ulimit
• Per-process resource limits
• Built-in command of sh, bash
• Important limits:
   – processes (-u)
   – open files (-n)
• Set in invoking shell
• Code in Apache 2 startup script
   – ulimit -S -n `ulimit -H -n`
• Linux: /etc/security/limits.conf


                                     36
SSL Performance
• SSL Processing: a Perfect Storm
  – Crypto is hard
  – Multi-stage handshake
  – Copying and rebuffering
• Effects in many spots
  – CPU load
  – Network latency
  – I/O Contention


                                    37
SSL Performance Tips
• Add more servers
• Re-use SSL Sessions
  – “Sticky” load balancing
• Have Load Balancer process SSL
  – Plaintext to web servers
• Use accelerator card



                                   38
Caching Content
• Dynamic Content is Expensive
• Static Content Relatively Cheap
• Several Approaches:
  – Dynamic caching
  – Pre-rendering popular pages
    (index.rss…)




                                    39
mod_cache Configuration
<IfModule mod_cache.c>
<IfModule mod_disk_cache.c>

      CacheRoot /raid1/cacheroot
      CacheEnable disk /

      # A page modified 100 min. ago will expire in 10 min.
      CacheLastModifiedFactor .1
      # Always check again after 6 hours
      CacheMaxExpire 21600
</IfModule>

</IfModule>




                                                        40
Make Popular Pages Static
• RSS Feeds
• Popular catalog queries
• … (Check your access log)




                              41
Static Page Substitution
<Directory "/home/sctemme/inst/blog/httpd/htdocs">

    Options +Indexes

    Order allow,deny
    Allow from all

    RewriteEngine on

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /cgi-bin/blosxom.cgi/$1 [L,QSA]

</Directory>




                                                     42
Tips
• Observe Before You Act
• Act on Monitoring Results
• Don’t Overload Your System




                               43
Q&A
Conference Roadmap
• Apache Web Server Cookbook (Training)
• Break My Site
• Apache Performance Tuning Part 2:
  Scaling Out




                                          45
Current Version

http://people.apache.org/~sctemme/ApconEU2008/
Thank You

More Related Content

What's hot

How To Set Up SQL Load Balancing with HAProxy - Slides
How To Set Up SQL Load Balancing with HAProxy - SlidesHow To Set Up SQL Load Balancing with HAProxy - Slides
How To Set Up SQL Load Balancing with HAProxy - Slides
Severalnines
 
Web Server Load Balancer
Web Server Load BalancerWeb Server Load Balancer
Web Server Load Balancer
MobME Technical
 
Roy foubister (hosting high traffic sites on a tight budget)
Roy foubister (hosting high traffic sites on a tight budget)Roy foubister (hosting high traffic sites on a tight budget)
Roy foubister (hosting high traffic sites on a tight budget)WordCamp Cape Town
 
Caching with Varnish
Caching with VarnishCaching with Varnish
Caching with Varnishschoefmax
 
Performance all teh things
Performance all teh thingsPerformance all teh things
Performance all teh things
Marcus Deglos
 
Integrated Cache on Netscaler
Integrated Cache on NetscalerIntegrated Cache on Netscaler
Integrated Cache on Netscaler
Mark Hillick
 
Apache Traffic Server
Apache Traffic ServerApache Traffic Server
Apache Traffic Server
supertom
 
Australian OpenStack User Group August 2012: Chef for OpenStack
Australian OpenStack User Group August 2012: Chef for OpenStackAustralian OpenStack User Group August 2012: Chef for OpenStack
Australian OpenStack User Group August 2012: Chef for OpenStack
Matt Ray
 
cache concepts and varnish-cache
cache concepts and varnish-cachecache concepts and varnish-cache
cache concepts and varnish-cache
Marc Cortinas Val
 
Velocity 2010 - ATS
Velocity 2010 - ATSVelocity 2010 - ATS
Velocity 2010 - ATS
Leif Hedstrom
 
Zendcon scaling magento
Zendcon scaling magentoZendcon scaling magento
Zendcon scaling magento
Mathew Beane
 
Oscon 2010 - ATS
Oscon 2010 - ATSOscon 2010 - ATS
Oscon 2010 - ATS
Leif Hedstrom
 
Nginx
NginxNginx
Moxi - Memcached Proxy
Moxi - Memcached ProxyMoxi - Memcached Proxy
Moxi - Memcached Proxy
NorthScale
 
WE18_Performance_Up.ppt
WE18_Performance_Up.pptWE18_Performance_Up.ppt
WE18_Performance_Up.pptwebhostingguy
 
Aem maintenance
Aem maintenanceAem maintenance
Aem maintenance
Ashokkumar T A
 
[MathWorks] Versioning Infrastructure
[MathWorks] Versioning Infrastructure[MathWorks] Versioning Infrastructure
[MathWorks] Versioning InfrastructurePerforce
 
The State of HBase Replication
The State of HBase ReplicationThe State of HBase Replication
The State of HBase Replication
HBaseCon
 

What's hot (20)

How To Set Up SQL Load Balancing with HAProxy - Slides
How To Set Up SQL Load Balancing with HAProxy - SlidesHow To Set Up SQL Load Balancing with HAProxy - Slides
How To Set Up SQL Load Balancing with HAProxy - Slides
 
Web Server Load Balancer
Web Server Load BalancerWeb Server Load Balancer
Web Server Load Balancer
 
Roy foubister (hosting high traffic sites on a tight budget)
Roy foubister (hosting high traffic sites on a tight budget)Roy foubister (hosting high traffic sites on a tight budget)
Roy foubister (hosting high traffic sites on a tight budget)
 
ReplacingSquidWithATS
ReplacingSquidWithATSReplacingSquidWithATS
ReplacingSquidWithATS
 
Caching with Varnish
Caching with VarnishCaching with Varnish
Caching with Varnish
 
Performance all teh things
Performance all teh thingsPerformance all teh things
Performance all teh things
 
Integrated Cache on Netscaler
Integrated Cache on NetscalerIntegrated Cache on Netscaler
Integrated Cache on Netscaler
 
Apache Traffic Server
Apache Traffic ServerApache Traffic Server
Apache Traffic Server
 
Australian OpenStack User Group August 2012: Chef for OpenStack
Australian OpenStack User Group August 2012: Chef for OpenStackAustralian OpenStack User Group August 2012: Chef for OpenStack
Australian OpenStack User Group August 2012: Chef for OpenStack
 
cache concepts and varnish-cache
cache concepts and varnish-cachecache concepts and varnish-cache
cache concepts and varnish-cache
 
Velocity 2010 - ATS
Velocity 2010 - ATSVelocity 2010 - ATS
Velocity 2010 - ATS
 
Zendcon scaling magento
Zendcon scaling magentoZendcon scaling magento
Zendcon scaling magento
 
Oscon 2010 - ATS
Oscon 2010 - ATSOscon 2010 - ATS
Oscon 2010 - ATS
 
are available here
are available hereare available here
are available here
 
Nginx
NginxNginx
Nginx
 
Moxi - Memcached Proxy
Moxi - Memcached ProxyMoxi - Memcached Proxy
Moxi - Memcached Proxy
 
WE18_Performance_Up.ppt
WE18_Performance_Up.pptWE18_Performance_Up.ppt
WE18_Performance_Up.ppt
 
Aem maintenance
Aem maintenanceAem maintenance
Aem maintenance
 
[MathWorks] Versioning Infrastructure
[MathWorks] Versioning Infrastructure[MathWorks] Versioning Infrastructure
[MathWorks] Versioning Infrastructure
 
The State of HBase Replication
The State of HBase ReplicationThe State of HBase Replication
The State of HBase Replication
 

Viewers also liked

Web Performance Part 3 "Server-side tips"
Web Performance Part 3  "Server-side tips"Web Performance Part 3  "Server-side tips"
Web Performance Part 3 "Server-side tips"
Binary Studio
 
Tomcat server
 Tomcat server Tomcat server
Tomcat server
Utkarsh Agarwal
 
Apache Tomcat 8 Application Server
Apache Tomcat 8 Application ServerApache Tomcat 8 Application Server
Apache Tomcat 8 Application Servermohamedmoharam
 
Introduction to Apache Tomcat 7 Presentation
Introduction to Apache Tomcat 7 PresentationIntroduction to Apache Tomcat 7 Presentation
Introduction to Apache Tomcat 7 Presentation
Tomcat Expert
 
Keynote apertura Dominopoint Days 2013, #dd13
Keynote apertura Dominopoint Days 2013, #dd13Keynote apertura Dominopoint Days 2013, #dd13
Keynote apertura Dominopoint Days 2013, #dd13
Dominopoint - Italian Lotus User Group
 
Tomcat Server
Tomcat ServerTomcat Server
Tomcat Server
Anirban Majumdar
 
Tomcat and apache httpd training
Tomcat and apache httpd trainingTomcat and apache httpd training
Tomcat and apache httpd training
Franck SIMON
 
Apache
ApacheApache

Viewers also liked (9)

Web Performance Part 3 "Server-side tips"
Web Performance Part 3  "Server-side tips"Web Performance Part 3  "Server-side tips"
Web Performance Part 3 "Server-side tips"
 
Tomcat server
 Tomcat server Tomcat server
Tomcat server
 
Hacking Tomcat
Hacking TomcatHacking Tomcat
Hacking Tomcat
 
Apache Tomcat 8 Application Server
Apache Tomcat 8 Application ServerApache Tomcat 8 Application Server
Apache Tomcat 8 Application Server
 
Introduction to Apache Tomcat 7 Presentation
Introduction to Apache Tomcat 7 PresentationIntroduction to Apache Tomcat 7 Presentation
Introduction to Apache Tomcat 7 Presentation
 
Keynote apertura Dominopoint Days 2013, #dd13
Keynote apertura Dominopoint Days 2013, #dd13Keynote apertura Dominopoint Days 2013, #dd13
Keynote apertura Dominopoint Days 2013, #dd13
 
Tomcat Server
Tomcat ServerTomcat Server
Tomcat Server
 
Tomcat and apache httpd training
Tomcat and apache httpd trainingTomcat and apache httpd training
Tomcat and apache httpd training
 
Apache
ApacheApache
Apache
 

Similar to Apache Performance Tuning: Scaling Up

Performance_Out.pptx
Performance_Out.pptxPerformance_Out.pptx
Performance_Out.pptx
sanjanabal
 
Performance out
Performance outPerformance out
Performance outJack Huang
 
Performance out
Performance outPerformance out
Performance out
Jack Huang
 
Performance out
Performance outPerformance out
Performance out
Dragan Kolarevic
 
Performance out
Performance outPerformance out
Performance out
test account
 
Performance out
Performance outPerformance out
Performance out
Moderator_kursa
 
Performance out
Performance outPerformance out
Performance outJack Huang
 
Performance out
Performance outPerformance out
Performance outJack Huang
 
Performance out
Performance outPerformance out
Performance outJack Huang
 
Performance out
Performance outPerformance out
Performance out
Andrea Martinez
 
Making MySQL Administration a Breeze - A look into a MySQL DBA's toolchest
Making MySQL Administration a Breeze - A look into a MySQL DBA's toolchest Making MySQL Administration a Breeze - A look into a MySQL DBA's toolchest
Making MySQL Administration a Breeze - A look into a MySQL DBA's toolchest Lenz Grimmer
 
Best And Worst Practices Deploying IBM Connections
Best And Worst Practices Deploying IBM ConnectionsBest And Worst Practices Deploying IBM Connections
Best And Worst Practices Deploying IBM Connections
LetsConnect
 
(ATS4-PLAT08) Server Pool Management
(ATS4-PLAT08) Server Pool Management(ATS4-PLAT08) Server Pool Management
(ATS4-PLAT08) Server Pool Management
BIOVIA
 
OSDC 2016 - Tuning Linux for your Database by Colin Charles
OSDC 2016 - Tuning Linux for your Database by Colin CharlesOSDC 2016 - Tuning Linux for your Database by Colin Charles
OSDC 2016 - Tuning Linux for your Database by Colin Charles
NETWAYS
 

Similar to Apache Performance Tuning: Scaling Up (20)

Performance out
Performance outPerformance out
Performance out
 
Performance_Out.pptx
Performance_Out.pptxPerformance_Out.pptx
Performance_Out.pptx
 
2 7
2 72 7
2 7
 
Performance out
Performance outPerformance out
Performance out
 
title
titletitle
title
 
Performance out
Performance outPerformance out
Performance out
 
Performance out
Performance outPerformance out
Performance out
 
Performance out
Performance outPerformance out
Performance out
 
Performance out
Performance outPerformance out
Performance out
 
Performance out
Performance outPerformance out
Performance out
 
Performance out
Performance outPerformance out
Performance out
 
Performance out
Performance outPerformance out
Performance out
 
Performance out
Performance outPerformance out
Performance out
 
Performance_Up.ppt
Performance_Up.pptPerformance_Up.ppt
Performance_Up.ppt
 
Drupal performance
Drupal performanceDrupal performance
Drupal performance
 
Performance out
Performance outPerformance out
Performance out
 
Making MySQL Administration a Breeze - A look into a MySQL DBA's toolchest
Making MySQL Administration a Breeze - A look into a MySQL DBA's toolchest Making MySQL Administration a Breeze - A look into a MySQL DBA's toolchest
Making MySQL Administration a Breeze - A look into a MySQL DBA's toolchest
 
Best And Worst Practices Deploying IBM Connections
Best And Worst Practices Deploying IBM ConnectionsBest And Worst Practices Deploying IBM Connections
Best And Worst Practices Deploying IBM Connections
 
(ATS4-PLAT08) Server Pool Management
(ATS4-PLAT08) Server Pool Management(ATS4-PLAT08) Server Pool Management
(ATS4-PLAT08) Server Pool Management
 
OSDC 2016 - Tuning Linux for your Database by Colin Charles
OSDC 2016 - Tuning Linux for your Database by Colin CharlesOSDC 2016 - Tuning Linux for your Database by Colin Charles
OSDC 2016 - Tuning Linux for your Database by Colin Charles
 

Recently uploaded

Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Nexer Digital
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
Product School
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
mikeeftimakis1
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Aggregage
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
Product School
 
Quantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsQuantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIs
Vlad Stirbu
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
DianaGray10
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
Ralf Eggert
 

Recently uploaded (20)

Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
 
Quantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsQuantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIs
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
 

Apache Performance Tuning: Scaling Up

  • 1. Apache Performance Tuning Part 1: Scaling Up Sander Temme <sander@temme.net>
  • 2. http://httpd.apache.org/docs/1.3/misc/perf-tuning.html says: “Apache is a general webserver, which is designed to be correct first, and fast second. Even so, its performance is quite satisfactory. Most sites have less than 10Mbits of outgoing bandwidth, which Apache can fill using only a low end Pentium- based webserver.” 2
  • 3. 3
  • 4. The Silver Bullet “Make my web server go fast, please”
  • 5. 5
  • 6. Sorry There is No Silver Bullet
  • 7. No Silver Bullet • Every site is different – Dynamic Content – Static Content • Different Traffic Patterns • SSL or Plaintext • No Cookie Cutter Approach 7
  • 8. Performance Tuning • Ready • Aim • Fire • Aim some more • Understand • Aim even more • Fire 8
  • 9. In practice • Setup for analysis • Monitor and analyse • Tune configuration • Lather, rinse, repeat 9
  • 11. Purposes of Monitoring • Observation • Extrapolation • Signals/Alerts • Testing 11
  • 13. Monitoring: Ganglia • Long term logging • Trend Watching • Free 14
  • 14. Other Monitoring Tools • vmstat • iostat • top • free • netstat -s 15
  • 15. Web Server Logs • ErrorLog – LogLevel: debug, info, notice, warn, error, crit • Access Log: TransferLog or CustomLog – Common Log Format 16
  • 16. Combined Log Format 222.127.111.234 - - [09/Apr/2008:07:46:54 +0000] "GET /sander/SanderMugshot2.jpg HTTP/1.1" 200 22992 "http://people.apache.org/gallery.html" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13" Client IP 222.127.111.234 RFC 1413 ident - username - timestamp [09/Apr/2008:07:46:54 +0000] Request "GET /sander/SanderMugshot2.jpg HTTP/1.1" Status Code 200 Content Bytes 22992 Referer "http://people.apache.org/gallery.html" User-Agent "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13" "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i"" 17
  • 17. Log Analysis • Analyse Apache log files • Periodically run vmstat, iostat – Set up a script • Watch for Trends – Tells you when to buy new kit • Watch for Peaks – And how your system behaves 18
  • 18. Log Analysis – Webalizer 19
  • 19. Configuring for Performance • Configuring Apache • Tuning the Operating System 20
  • 20. Apache Configuration • Process/Thread Management • DNS Lookups • Avoid .htaccess Files • Disable unused modules • Tune your App Tier 21
  • 21. DNS Lookups • HostnameLookups • Access Control – Bad: Deny from example.com – Good: Deny from 172.160.234.5 22
  • 22. .htaccess Files • Per-directory configuration files • Accessed for every request • Best performance: AllowOverride none GET /dir1/dir2/restricted.html HTTP/1.0 23
  • 23. MaxClients • Configuration file directive • Maximum number of workers • Apache 1.3, 2 Prefork: processes • Apache 2 Worker: threads * processes • Limit according to resources (memory, CPU) 24
  • 24. Server-side Includes • We Love Them! – Easy to implement – Easy to manage • We Hate Them! – They break sendfile() – They may break cacheability • X-bit hack 25
  • 25. The X-Bit Hack • Directive: XBitHack on|off|full – Default: off • On: – Every text/html document that has User Execute bit set is parsed • Full: – If Group Execute bit is set, send Last- Modified of file on disk 26
  • 26. Sizing MaxClients • Take total RAM • Subtract OS allowance – look at free value without Apache, etc. • Subtract external program allowance – JVM, cgi programs, MySQL? • Divide by httpd process size – Read process size from top 27
  • 27. Top 28
  • 28. Selecting Your MPM • Processes and Threads • Differences between platforms • Thread-safety issues 29
  • 29. Processes and Threads • Process: – Own copy of data structures – Shares: program code, shared memory – Context switches expensive • Thread: – Runs within process – Shares process environment – No context switch 30
  • 30. Platforms and Threading • Context switches expensive on Solaris, AIX • Context switches cheaper on Linux • Solaris uses M:N threading • Linux uses 1 process per thread 31
  • 31. Thread-safety • Third-party modules and libraries – mod_perl: experimental threading in Perl 5.6; more mature in Perl 5.8 – PHP: uses many third-party libraries • FreeBSD: threading not reliable until 5.x – Apache 2.2 Worker MPM runs on FreeBSD 32
  • 32. Tune your App Tier • Tomcat – Edit server.xml, tune minProcessors, maxProcessors – Use APR -> Persistent connections – Tune JVM (Heap, Garbage Collection) • MySQL – Ships with various scenarios in support-files: • my-{small,medium,large,huge}.conf – PHP & prefork: every child makes a connection – Tune max_connections variable in my.cnf 33
  • 33. System Tuning Tips • RAM and swap space • ulimit: files and processes • Turn off unused services and modules 34
  • 34. RAM and Swap • Swap is disk-based Extension of RAM • Excessive swapping kills performance • Tune MaxClients • Never have more memory than swap – Upgrade RAM -> add more swap space 35
  • 35. ulimit • Per-process resource limits • Built-in command of sh, bash • Important limits: – processes (-u) – open files (-n) • Set in invoking shell • Code in Apache 2 startup script – ulimit -S -n `ulimit -H -n` • Linux: /etc/security/limits.conf 36
  • 36. SSL Performance • SSL Processing: a Perfect Storm – Crypto is hard – Multi-stage handshake – Copying and rebuffering • Effects in many spots – CPU load – Network latency – I/O Contention 37
  • 37. SSL Performance Tips • Add more servers • Re-use SSL Sessions – “Sticky” load balancing • Have Load Balancer process SSL – Plaintext to web servers • Use accelerator card 38
  • 38. Caching Content • Dynamic Content is Expensive • Static Content Relatively Cheap • Several Approaches: – Dynamic caching – Pre-rendering popular pages (index.rss…) 39
  • 39. mod_cache Configuration <IfModule mod_cache.c> <IfModule mod_disk_cache.c> CacheRoot /raid1/cacheroot CacheEnable disk / # A page modified 100 min. ago will expire in 10 min. CacheLastModifiedFactor .1 # Always check again after 6 hours CacheMaxExpire 21600 </IfModule> </IfModule> 40
  • 40. Make Popular Pages Static • RSS Feeds • Popular catalog queries • … (Check your access log) 41
  • 41. Static Page Substitution <Directory "/home/sctemme/inst/blog/httpd/htdocs"> Options +Indexes Order allow,deny Allow from all RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /cgi-bin/blosxom.cgi/$1 [L,QSA] </Directory> 42
  • 42. Tips • Observe Before You Act • Act on Monitoring Results • Don’t Overload Your System 43
  • 43. Q&A
  • 44. Conference Roadmap • Apache Web Server Cookbook (Training) • Break My Site • Apache Performance Tuning Part 2: Scaling Out 45