SlideShare a Scribd company logo
1 of 40
The Importance of Performance & Security
and Simple Steps to Achieve Them
CHRIS WELLS – CEO – NEXCESS.NET LLC
WEST
SOUTH
NORTH
MID-WEST???
NORTH-EAST
NORTH?
NORTH-CENTRAL?
MIDDLE?
Detroit, MI USA
Quick Facts About Michigan
• Michigan has the longest fresh water shoreline in the U.S. (world?) at
3,126 miles.
• Four flags have flown over Michigan: French, English, Spanish and
U.S.
• Michigan is split into an “upper” and “lower” peninsula
• The upper is dubbed the “U.P.”
• Detroit, MI is called The “Motor City” in the U.S.
• 1st mile of concrete road laid in 1909
• Detroit is the potato chip (crisp) capital of the world
• Based on consumption .
Notes About This Talk
• Lessons learned from MagentoLive Australia 2013
• Lessons learned from MagentoLive UK 2013
Why Care About Performance and Security?
They Both Affect Your Bottom Line DIRECTLY!
Anecdotal Notes on Performance
• Just think about it...
• slow….means….frustrating….
• Metrics aside - you know slow when you see it!
• There’s rarely an upside to a site loading slow
• Unless it’s your competitors 
• Mobile adds a new variable (3G is essentially dial-up)
• An un-optimized Magento Enterprise is slow out-of-the-box
• ~3 second load times are typical before adding extensions
Performance Wins (Part 1)
• Firefox Browser
• Slow page loaders downloaded less often
• 1 second of increased performance increased downloads by 2.7%
• Shopzilla.com
• Had page load times of ~7 seconds
• 5 second decrease in page load time (7s  2s)
• 25% increase in page views
• 7 – 12% increase in revenue
• 50% decrease in physical hardware (and hardware costs)
Performance Wins (Part 2)
• Google
• Tested a longer page 1 (30 entries instead of 10) and found a
25% drop-off in clicks
• The addition of a shopping cart icon:
• Added 2% delay in loading
• Resulted in 2% less searches/user
• Wal-Mart noted:
• Every 1 second improvement equated to 2% increased CVR
• Every 100 milliseconds improvement equated to 1% in
incremental revenue
Where to Start?
• Start simple – how does the site feel?
• Gather metrics
• Web Page Test (http://www.webpagetest.org/)
• Google Analytics
• Yahoo’s Yslow (browser plug-in)
• New Relic & other paid tools
• Tackle one issue at a time, test, repeat
• Big gains are possible with targeted optimization
• Remember Pareto’s Principal (the 80/20 rule)
-- “80% of the effects come from 20% of the causes”
Performance Step #1 – Tune the Environment
Tune the Environment
• Hardware and software choices matter!
• Choose a hosting provider that fits within your workflow and
requirements.
• Ensure that your hosting provider:
• Configures the PHP interpreter correctly (this runs Magento)
• Uses PHP 5.4 if at all possible (patch may be required)
• Configures the database server correctly (typically MySQL)
• Uses Percona Server instead of MySQL (1.14.1 supports
5.5/5.6)
• Implements the Magento best practices (at a minimum)
Effect of Database Software Choice
Percona Server
hits ~1800
transactions/sec
Standard MySQL
tops out at ~1200
transactions/sec
Effect of PHP Software Choice #1
0
100
200
300
400
500
600
700
800
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 20 25 30 35 40 45 50 55 60
Siegetransacons/second
Dura on (in minutes)
PHP 5.3.24
PHP 5.4.28
~615 t/sec
(~12% increase!!)
Effect of PHP Software Choice #2
0
100
200
300
400
500
600
700
800
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 20 25 30 35 40 45 50 55 60
Siegetransacons/second
Dura on (in minutes)
PHP 5.3.24
PHP 5.4.14
PHP 5.4.28
Even upgrading
from 5.4.14 shows
gains of ~4%
Effect of PHP Software Choice #3
0
100
200
300
400
500
600
700
800
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 20 25 30 35 40 45 50 55 60
Siegetransacons/second
Dura on (in minutes)
PHP 5.4.28
PHP 5.5.12
~781 t/sec
~25% better than 5.4
~41% better than 5.3
WOW 
Performance Step #2 – Tune Magento
Notes on Magento
• Magento is very CPU heavy
• The bulk of this heaviness is within PHP code
• MySQL CPU usage is typically bound by PHP’s CPU usage
(speaking in single server terms)
• Magento is not very I/O heavy
• I know, I know this sounds like heresy – I’ll explain
• I/O is bound by PHP’s CPU usage
• PHP is often the bottleneck!
Tune Magento
• Make full use of Magento’s built-in features!
• The two-level memory-based cache
• Session memory-based caching
• The Magento memory-based full page cache (FPC)
• HUGE performance gains instantly
• 1.13+ has smarter cache invalidation than prior versions
• 1.14+ supports PHP 5.4 out of the box
• Use available domain-based optimizations (SOLR, etc)
Performance Step #3 – Tune The Edge
Tune the Edge
• Host where your customers are
• Put your site on the same continent as your audience (or closer)
• Use a global content delivery network (CDN)
• 75% of all e-commerce sites do not use a CDN
• Turn on compression for JavaScript, CSS, HTML, images, etc
• 22% of all e-commerce sites do not use compression
• Turn on HTTP Keep-alives (keeps per-client connections open)
• 13% of all e-commerce sites do not use the keep-alive setting
• Beware of too many (or just plain bad) external resources
(JavaScript, CSS, images, ads and other external assets)
Performance Step #4 – Extensions…
Extension Choices Matter
• Make use of good 3rd party extensions
• You have to define “good”
• Beware of bad 3rd party extensions
• May induce slowness (complex or non-optimal queries)
• May include slow off-server content
• Test all extensions for performance before using in production!
• Don’t assume that 3rd party developers have tested for
performance
• Strike a usability balance between performance and features
Bringing It All Together
We’re at about 3 seconds to start
Not a great start…
Ignore these for now.
Remember - one thing at a time!
TTFB is ~¾ of a second
TTFB (Time to First Byte)
BUT… Repeat views are not bad!
The Power of the Full Page Cache
And we’ve gained a full ½ second (was 2.8)
From “F” to “B” with a
single config change
Repeat pages are served at just over ½ a second!
(was ~1)
TTFB is only .36 seconds! (was .75)
Edge Tuning Still a ‘C’. Image
compression is
best done by your
design team
CDN configured
We’ve gained another full second (was 2.4)
The second was largely gained here (was 1.6)
TTFB largely unaffected (as expected)
Simple server-side
changes make these
perform
(These were both Fs)
Overall – Very good!
Page Load: 2.8s -> 1.2
TTFB: 0.75 -> 0.38
Turpentine/Varnish Caching & Response Time
FPC yields ~.5
second page
load times
(under optimal
conditions)
Turpentine
can cut this
down quite a
bit!
Adding Nexcess/Turpentine
Down to almost 1 second!
From “B” to “A”
with a single free
extension
Even with all optimizations ON there is still
variance (was 0.593)
Our lowest TTFB yet! (was .38)
On to Security!
Security Reality Check
• Security is costly
• Maintaining a high level of security takes effort
• Breaches absorb time/energy that could be spent more profitably
• Breaches cause a loss of customer goodwill
• Security is hard
• It’s like dieting…
• Security is multi-faceted
• Many key players with diverse responsibilities
• Security never ends
• There are no diet breaks 
• Sorry…
Security Step #1 – Secure the Environment
Security Step #2 – Secure Magento
Basic Magento Security
• Keep Magento up to date
• I know I know – easier said than done … but do it
• Maintain unique user accounts per user
• This is also a PCI requirement!
• Simple admin area tweaks
• Use a unique admin URL
• Require SSL (network encryption)
• Restrict access to known allowed IP addresses
• Extensions add new variables – don’t ignore them!
Security Step #3 – Secure Your Workflow
Basic Security
• Password security
• Passwords do not necessarily need to be complex
• PillowCarpetTelevision  22 characters!
• Don’t reuse passwords on other sites
• Use LastPass (or something like it)
• Use a secure means to publish content (*not* FTP)
• Practice the principle of “least privilege”
• Ensure backups exist (and are recent)
• Trust but verify your hosting arrangements
Performance and Security are NOT spectator
sports!
Thank You!!
P.S. I had a bag of chips for each audience member but I ate them all because
I’m from Detroit .
Sorry…
But not really…
Sorry that is.
References
• http://www.nexcess.net/magento-best-practices-whitepaper
• http://blog.kissmetrics.com/loading-time/
• http://blog.mozilla.org/metrics/category/website-optimization/
• http://www.webperformancetoday.com/2012/02/28/4-awesome-
slides-showing-how-page-speed-correlates-to-business-metrics-at-
walmart-com/
• http://programming.oreilly.com/2009/07/velocity-making-your-site-
fast.html

More Related Content

Similar to MagentoLive Australia 2014 - The Importance of Performance & Security and Simple Steps to Achieve Them

Mage uk-2013-1345-chris-wells-131030120920-phpapp01
Mage uk-2013-1345-chris-wells-131030120920-phpapp01Mage uk-2013-1345-chris-wells-131030120920-phpapp01
Mage uk-2013-1345-chris-wells-131030120920-phpapp01Karla Mae Tejon
 
The Importance of Site Performance and Simple Steps to Achieve It
The Importance of Site Performance and Simple Steps to Achieve ItThe Importance of Site Performance and Simple Steps to Achieve It
The Importance of Site Performance and Simple Steps to Achieve ItNexcess.net LLC
 
Back from the Dead: When Bad Code Kills a Good Server
Back from the Dead: When Bad Code Kills a Good ServerBack from the Dead: When Bad Code Kills a Good Server
Back from the Dead: When Bad Code Kills a Good ServerTeamstudio
 
FMK2016 - HOunz Koudelka - Audit and Optimization
FMK2016 - HOunz Koudelka - Audit and OptimizationFMK2016 - HOunz Koudelka - Audit and Optimization
FMK2016 - HOunz Koudelka - Audit and OptimizationVerein FM Konferenz
 
Why retail companies can't afford database downtime
Why retail companies can't afford database downtimeWhy retail companies can't afford database downtime
Why retail companies can't afford database downtimeDBmaestro - Database DevOps
 
Stored Procedure Superpowers: A Developer’s Guide
Stored Procedure Superpowers: A Developer’s GuideStored Procedure Superpowers: A Developer’s Guide
Stored Procedure Superpowers: A Developer’s GuideVoltDB
 
DBmaestro's State of the Database Continuous Delivery Survey- Findings Revealed
DBmaestro's State of the Database Continuous Delivery Survey- Findings RevealedDBmaestro's State of the Database Continuous Delivery Survey- Findings Revealed
DBmaestro's State of the Database Continuous Delivery Survey- Findings RevealedDBmaestro - Database DevOps
 
FMK2016 - HOunza Koudelka - Audit and Performance (Sponsored Session)
FMK2016 - HOunza Koudelka - Audit and Performance (Sponsored Session)FMK2016 - HOunza Koudelka - Audit and Performance (Sponsored Session)
FMK2016 - HOunza Koudelka - Audit and Performance (Sponsored Session)Verein FM Konferenz
 
Continuous delivery @wcap 5-09-2013
Continuous delivery   @wcap 5-09-2013Continuous delivery   @wcap 5-09-2013
Continuous delivery @wcap 5-09-2013David Funaro
 
2010 11 pubcon_hendison-hosting
2010 11 pubcon_hendison-hosting2010 11 pubcon_hendison-hosting
2010 11 pubcon_hendison-hostingshendison
 
Adm02 Be a Domino Detective: Tackling Your Toughest Performance Problems
Adm02 Be a Domino Detective: Tackling Your Toughest Performance ProblemsAdm02 Be a Domino Detective: Tackling Your Toughest Performance Problems
Adm02 Be a Domino Detective: Tackling Your Toughest Performance ProblemsKim Greene
 
IBM Connect 2017: Back from the Dead: When Bad Code Kills a Good Server
IBM Connect 2017: Back from the Dead: When Bad Code Kills a Good ServerIBM Connect 2017: Back from the Dead: When Bad Code Kills a Good Server
IBM Connect 2017: Back from the Dead: When Bad Code Kills a Good ServerSerdar Basegmez
 
Jeremy Edberg (MinOps ) - How to build a solid infrastructure for a startup t...
Jeremy Edberg (MinOps ) - How to build a solid infrastructure for a startup t...Jeremy Edberg (MinOps ) - How to build a solid infrastructure for a startup t...
Jeremy Edberg (MinOps ) - How to build a solid infrastructure for a startup t...Startupfest
 
Cvcc performance tuning
Cvcc performance tuningCvcc performance tuning
Cvcc performance tuningJohn McCaffrey
 
Single Page Applications: Your Browser is the OS!
Single Page Applications: Your Browser is the OS!Single Page Applications: Your Browser is the OS!
Single Page Applications: Your Browser is the OS!Jeremy Likness
 
The challenges of live events scalability
The challenges of live events scalabilityThe challenges of live events scalability
The challenges of live events scalabilityGuy Tomer
 
IWMW 1999: Browser management
IWMW 1999: Browser managementIWMW 1999: Browser management
IWMW 1999: Browser managementIWMW
 

Similar to MagentoLive Australia 2014 - The Importance of Performance & Security and Simple Steps to Achieve Them (20)

Mage uk-2013-1345-chris-wells-131030120920-phpapp01
Mage uk-2013-1345-chris-wells-131030120920-phpapp01Mage uk-2013-1345-chris-wells-131030120920-phpapp01
Mage uk-2013-1345-chris-wells-131030120920-phpapp01
 
The Importance of Site Performance and Simple Steps to Achieve It
The Importance of Site Performance and Simple Steps to Achieve ItThe Importance of Site Performance and Simple Steps to Achieve It
The Importance of Site Performance and Simple Steps to Achieve It
 
Back from the Dead: When Bad Code Kills a Good Server
Back from the Dead: When Bad Code Kills a Good ServerBack from the Dead: When Bad Code Kills a Good Server
Back from the Dead: When Bad Code Kills a Good Server
 
FMK2016 - HOunz Koudelka - Audit and Optimization
FMK2016 - HOunz Koudelka - Audit and OptimizationFMK2016 - HOunz Koudelka - Audit and Optimization
FMK2016 - HOunz Koudelka - Audit and Optimization
 
Why retail companies can't afford database downtime
Why retail companies can't afford database downtimeWhy retail companies can't afford database downtime
Why retail companies can't afford database downtime
 
Stored Procedure Superpowers: A Developer’s Guide
Stored Procedure Superpowers: A Developer’s GuideStored Procedure Superpowers: A Developer’s Guide
Stored Procedure Superpowers: A Developer’s Guide
 
DBmaestro's State of the Database Continuous Delivery Survey- Findings Revealed
DBmaestro's State of the Database Continuous Delivery Survey- Findings RevealedDBmaestro's State of the Database Continuous Delivery Survey- Findings Revealed
DBmaestro's State of the Database Continuous Delivery Survey- Findings Revealed
 
FMK2016 - HOunza Koudelka - Audit and Performance (Sponsored Session)
FMK2016 - HOunza Koudelka - Audit and Performance (Sponsored Session)FMK2016 - HOunza Koudelka - Audit and Performance (Sponsored Session)
FMK2016 - HOunza Koudelka - Audit and Performance (Sponsored Session)
 
Continuous delivery @wcap 5-09-2013
Continuous delivery   @wcap 5-09-2013Continuous delivery   @wcap 5-09-2013
Continuous delivery @wcap 5-09-2013
 
2010 11 pubcon_hendison-hosting
2010 11 pubcon_hendison-hosting2010 11 pubcon_hendison-hosting
2010 11 pubcon_hendison-hosting
 
Adm02 Be a Domino Detective: Tackling Your Toughest Performance Problems
Adm02 Be a Domino Detective: Tackling Your Toughest Performance ProblemsAdm02 Be a Domino Detective: Tackling Your Toughest Performance Problems
Adm02 Be a Domino Detective: Tackling Your Toughest Performance Problems
 
In (database) automation we trust
In (database) automation we trustIn (database) automation we trust
In (database) automation we trust
 
Web Performance Optimization (WPO)
Web Performance Optimization (WPO)Web Performance Optimization (WPO)
Web Performance Optimization (WPO)
 
IBM Connect 2017: Back from the Dead: When Bad Code Kills a Good Server
IBM Connect 2017: Back from the Dead: When Bad Code Kills a Good ServerIBM Connect 2017: Back from the Dead: When Bad Code Kills a Good Server
IBM Connect 2017: Back from the Dead: When Bad Code Kills a Good Server
 
Enterprise-Scale WordPress
Enterprise-Scale WordPressEnterprise-Scale WordPress
Enterprise-Scale WordPress
 
Jeremy Edberg (MinOps ) - How to build a solid infrastructure for a startup t...
Jeremy Edberg (MinOps ) - How to build a solid infrastructure for a startup t...Jeremy Edberg (MinOps ) - How to build a solid infrastructure for a startup t...
Jeremy Edberg (MinOps ) - How to build a solid infrastructure for a startup t...
 
Cvcc performance tuning
Cvcc performance tuningCvcc performance tuning
Cvcc performance tuning
 
Single Page Applications: Your Browser is the OS!
Single Page Applications: Your Browser is the OS!Single Page Applications: Your Browser is the OS!
Single Page Applications: Your Browser is the OS!
 
The challenges of live events scalability
The challenges of live events scalabilityThe challenges of live events scalability
The challenges of live events scalability
 
IWMW 1999: Browser management
IWMW 1999: Browser managementIWMW 1999: Browser management
IWMW 1999: Browser management
 

Recently uploaded

Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Lucknow
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012rehmti665
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Roomdivyansh0kumar0
 
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITMgdsc13
 
Gram Darshan PPT cyber rural in villages of india
Gram Darshan PPT cyber rural  in villages of indiaGram Darshan PPT cyber rural  in villages of india
Gram Darshan PPT cyber rural in villages of indiaimessage0108
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Roomdivyansh0kumar0
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts servicesonalikaur4
 
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Delivery
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on DeliveryCall Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Delivery
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Deliverybabeytanya
 
AlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsAlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsThierry TROUIN ☁
 
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Roomgirls4nights
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)Damian Radcliffe
 
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With RoomVIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Roomdivyansh0kumar0
 
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一3sw2qly1
 
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)Christopher H Felton
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girlsstephieert
 

Recently uploaded (20)

Call Girls In South Ex 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
Call Girls In South Ex 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICECall Girls In South Ex 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
Call Girls In South Ex 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
 
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
 
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITM
 
Gram Darshan PPT cyber rural in villages of india
Gram Darshan PPT cyber rural  in villages of indiaGram Darshan PPT cyber rural  in villages of india
Gram Darshan PPT cyber rural in villages of india
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
 
sasti delhi Call Girls in munirka 🔝 9953056974 🔝 escort Service-
sasti delhi Call Girls in munirka 🔝 9953056974 🔝 escort Service-sasti delhi Call Girls in munirka 🔝 9953056974 🔝 escort Service-
sasti delhi Call Girls in munirka 🔝 9953056974 🔝 escort Service-
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
 
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Delivery
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on DeliveryCall Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Delivery
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Delivery
 
AlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsAlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with Flows
 
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)
 
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With RoomVIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
 
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一
 
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
 
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girls
 

MagentoLive Australia 2014 - The Importance of Performance & Security and Simple Steps to Achieve Them

  • 1.
  • 2. The Importance of Performance & Security and Simple Steps to Achieve Them CHRIS WELLS – CEO – NEXCESS.NET LLC
  • 4. Quick Facts About Michigan • Michigan has the longest fresh water shoreline in the U.S. (world?) at 3,126 miles. • Four flags have flown over Michigan: French, English, Spanish and U.S. • Michigan is split into an “upper” and “lower” peninsula • The upper is dubbed the “U.P.” • Detroit, MI is called The “Motor City” in the U.S. • 1st mile of concrete road laid in 1909 • Detroit is the potato chip (crisp) capital of the world • Based on consumption .
  • 5. Notes About This Talk • Lessons learned from MagentoLive Australia 2013 • Lessons learned from MagentoLive UK 2013
  • 6. Why Care About Performance and Security?
  • 7. They Both Affect Your Bottom Line DIRECTLY!
  • 8. Anecdotal Notes on Performance • Just think about it... • slow….means….frustrating…. • Metrics aside - you know slow when you see it! • There’s rarely an upside to a site loading slow • Unless it’s your competitors  • Mobile adds a new variable (3G is essentially dial-up) • An un-optimized Magento Enterprise is slow out-of-the-box • ~3 second load times are typical before adding extensions
  • 9. Performance Wins (Part 1) • Firefox Browser • Slow page loaders downloaded less often • 1 second of increased performance increased downloads by 2.7% • Shopzilla.com • Had page load times of ~7 seconds • 5 second decrease in page load time (7s  2s) • 25% increase in page views • 7 – 12% increase in revenue • 50% decrease in physical hardware (and hardware costs)
  • 10. Performance Wins (Part 2) • Google • Tested a longer page 1 (30 entries instead of 10) and found a 25% drop-off in clicks • The addition of a shopping cart icon: • Added 2% delay in loading • Resulted in 2% less searches/user • Wal-Mart noted: • Every 1 second improvement equated to 2% increased CVR • Every 100 milliseconds improvement equated to 1% in incremental revenue
  • 11. Where to Start? • Start simple – how does the site feel? • Gather metrics • Web Page Test (http://www.webpagetest.org/) • Google Analytics • Yahoo’s Yslow (browser plug-in) • New Relic & other paid tools • Tackle one issue at a time, test, repeat • Big gains are possible with targeted optimization • Remember Pareto’s Principal (the 80/20 rule) -- “80% of the effects come from 20% of the causes”
  • 12. Performance Step #1 – Tune the Environment
  • 13. Tune the Environment • Hardware and software choices matter! • Choose a hosting provider that fits within your workflow and requirements. • Ensure that your hosting provider: • Configures the PHP interpreter correctly (this runs Magento) • Uses PHP 5.4 if at all possible (patch may be required) • Configures the database server correctly (typically MySQL) • Uses Percona Server instead of MySQL (1.14.1 supports 5.5/5.6) • Implements the Magento best practices (at a minimum)
  • 14. Effect of Database Software Choice Percona Server hits ~1800 transactions/sec Standard MySQL tops out at ~1200 transactions/sec
  • 15. Effect of PHP Software Choice #1 0 100 200 300 400 500 600 700 800 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 20 25 30 35 40 45 50 55 60 Siegetransacons/second Dura on (in minutes) PHP 5.3.24 PHP 5.4.28 ~615 t/sec (~12% increase!!)
  • 16. Effect of PHP Software Choice #2 0 100 200 300 400 500 600 700 800 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 20 25 30 35 40 45 50 55 60 Siegetransacons/second Dura on (in minutes) PHP 5.3.24 PHP 5.4.14 PHP 5.4.28 Even upgrading from 5.4.14 shows gains of ~4%
  • 17. Effect of PHP Software Choice #3 0 100 200 300 400 500 600 700 800 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 20 25 30 35 40 45 50 55 60 Siegetransacons/second Dura on (in minutes) PHP 5.4.28 PHP 5.5.12 ~781 t/sec ~25% better than 5.4 ~41% better than 5.3 WOW 
  • 18. Performance Step #2 – Tune Magento
  • 19. Notes on Magento • Magento is very CPU heavy • The bulk of this heaviness is within PHP code • MySQL CPU usage is typically bound by PHP’s CPU usage (speaking in single server terms) • Magento is not very I/O heavy • I know, I know this sounds like heresy – I’ll explain • I/O is bound by PHP’s CPU usage • PHP is often the bottleneck!
  • 20. Tune Magento • Make full use of Magento’s built-in features! • The two-level memory-based cache • Session memory-based caching • The Magento memory-based full page cache (FPC) • HUGE performance gains instantly • 1.13+ has smarter cache invalidation than prior versions • 1.14+ supports PHP 5.4 out of the box • Use available domain-based optimizations (SOLR, etc)
  • 21. Performance Step #3 – Tune The Edge
  • 22. Tune the Edge • Host where your customers are • Put your site on the same continent as your audience (or closer) • Use a global content delivery network (CDN) • 75% of all e-commerce sites do not use a CDN • Turn on compression for JavaScript, CSS, HTML, images, etc • 22% of all e-commerce sites do not use compression • Turn on HTTP Keep-alives (keeps per-client connections open) • 13% of all e-commerce sites do not use the keep-alive setting • Beware of too many (or just plain bad) external resources (JavaScript, CSS, images, ads and other external assets)
  • 23. Performance Step #4 – Extensions…
  • 24. Extension Choices Matter • Make use of good 3rd party extensions • You have to define “good” • Beware of bad 3rd party extensions • May induce slowness (complex or non-optimal queries) • May include slow off-server content • Test all extensions for performance before using in production! • Don’t assume that 3rd party developers have tested for performance • Strike a usability balance between performance and features
  • 25. Bringing It All Together
  • 26. We’re at about 3 seconds to start Not a great start… Ignore these for now. Remember - one thing at a time! TTFB is ~¾ of a second TTFB (Time to First Byte) BUT… Repeat views are not bad!
  • 27. The Power of the Full Page Cache And we’ve gained a full ½ second (was 2.8) From “F” to “B” with a single config change Repeat pages are served at just over ½ a second! (was ~1) TTFB is only .36 seconds! (was .75)
  • 28. Edge Tuning Still a ‘C’. Image compression is best done by your design team CDN configured We’ve gained another full second (was 2.4) The second was largely gained here (was 1.6) TTFB largely unaffected (as expected) Simple server-side changes make these perform (These were both Fs) Overall – Very good! Page Load: 2.8s -> 1.2 TTFB: 0.75 -> 0.38
  • 29. Turpentine/Varnish Caching & Response Time FPC yields ~.5 second page load times (under optimal conditions) Turpentine can cut this down quite a bit!
  • 30. Adding Nexcess/Turpentine Down to almost 1 second! From “B” to “A” with a single free extension Even with all optimizations ON there is still variance (was 0.593) Our lowest TTFB yet! (was .38)
  • 32. Security Reality Check • Security is costly • Maintaining a high level of security takes effort • Breaches absorb time/energy that could be spent more profitably • Breaches cause a loss of customer goodwill • Security is hard • It’s like dieting… • Security is multi-faceted • Many key players with diverse responsibilities • Security never ends • There are no diet breaks  • Sorry…
  • 33. Security Step #1 – Secure the Environment
  • 34. Security Step #2 – Secure Magento
  • 35. Basic Magento Security • Keep Magento up to date • I know I know – easier said than done … but do it • Maintain unique user accounts per user • This is also a PCI requirement! • Simple admin area tweaks • Use a unique admin URL • Require SSL (network encryption) • Restrict access to known allowed IP addresses • Extensions add new variables – don’t ignore them!
  • 36. Security Step #3 – Secure Your Workflow
  • 37. Basic Security • Password security • Passwords do not necessarily need to be complex • PillowCarpetTelevision  22 characters! • Don’t reuse passwords on other sites • Use LastPass (or something like it) • Use a secure means to publish content (*not* FTP) • Practice the principle of “least privilege” • Ensure backups exist (and are recent) • Trust but verify your hosting arrangements
  • 38. Performance and Security are NOT spectator sports!
  • 39. Thank You!! P.S. I had a bag of chips for each audience member but I ate them all because I’m from Detroit . Sorry… But not really… Sorry that is.
  • 40. References • http://www.nexcess.net/magento-best-practices-whitepaper • http://blog.kissmetrics.com/loading-time/ • http://blog.mozilla.org/metrics/category/website-optimization/ • http://www.webperformancetoday.com/2012/02/28/4-awesome- slides-showing-how-page-speed-correlates-to-business-metrics-at- walmart-com/ • http://programming.oreilly.com/2009/07/velocity-making-your-site- fast.html

Editor's Notes

  1. JOKE ABOUT SOCCER
  2. U.S. IS DIVIDED INTO 4 SECTIONS
  3. 8 MILE JOKE (HAS NOTHING TO DO WITH 8 MILE)