SlideShare una empresa de Scribd logo
1 de 75
Descargar para leer sin conexión
© 2014 SOASTA. All rights reserved. 1
© 2014 SOASTA. All rights reserved. 2
o What is the impact of Web Performance?
o Your Web Site and the need for Performance Testing
o Typical Performance Testing
o Issues found in Performance Testing
o Making Performance Testing Continuous
What do users care about?
Survey Says:
Source: http://www.soasta.com/blog/web-performance-mothers-day/
Fast:	they	buy	more.		
Slow:	they	buy	less.
Performance	affects	every	business	KPI
• Revenue
• Conversions
• User	satisfaction
• User	retention
• Time	on	site
• Page	views
• Bounce	rate
• Organic	search	traffic
• Brand	perception
Impact of a 1-second delay
A site that earns $100K per day
could lose $2.5M in sales
in one year
…website slowdowns occur
10X more often than outages.
Source: TRAC Research
Free download:
soasta.io/timeismoneybook
12
Anatomy of Your Web App
Responsive web site Web Servers
• Desktop Users
• Mobile Users
• Same or similar content
o Adapting to different
screen sizes
Mobile optimized
• “m-dot” site for mobile
• Custom built for mobile devices
All have html, images, JavaScript, css, plus third-party content
13
Native App
• Android – Java
• iOS – Objective C/Swift
• Mobile app framework
o Same source code
Hybrid App
• Mix of native code + html
All have backend calls for login/authentication, account
settings, database calls, transactions, plus third-party SDK
calls
Mobile Apps and Back End Services
WebSite/Mobile
Back end
14
The Need for Load Testing
• Everyone runs load testing on their website, right?
o Load and Performance testing is often not done or too late
o Black Friday, Cyber Monday, Holiday failures
• What’s the need for mobile web load testing?
o Mobile is growing faster than desktop
o Responsive sites and mobile sites deliver different content to
mobile devices over mobile network
• What about mobile app load testing?
o Mobile app back ends serve different content to mobile apps
o Remember Pokemon Go? It wasn’t the app that failed.
15
When is your Peak Season?
• Peak is year-round
o Super Bowl Sunday – 110 million viewers
o Bi-weekly or monthly payroll processing
o Valentine’s Day, President’s Day, Mother’s Day, Father’s Day
o Quarterly processing and filing
o U.S. Tax filing
o Spring, Summer, Fall & Winter season sales
o July 4th, Christmas in July
o Back to School
o Olympics
o Halloween
o Election Day
o Singles Day – world’s biggest shopping day, $9B in 12 hours
o Black Friday, Cyber Monday and Holidays
Back to top to repeat again next year!
© 2014 SOASTA. All rights reserved. 16
s
Memory leaks
Scale of Test
Stage/Team
Dev
& Test
Release
& Deploy
Network
& Ops
CDN file placement
Load Balancer configuration
Network bandwidth
Network configuration
DNS routing
Inadequate server resources
Default configuration settings
Unbalanced web serversAuto-scaling failures
Latency between systems
Slow third-party plug-ins
Garbage collection
Database thread counts
Inefficient database queriesSlow pages
Conflict with other apps
Test Lab Staging Production (100% +++)
Search technology limits
Method-level tuning
Max sockets exceeded
Firewall max capacity
Global latency variance
Security bottlenecks
Tuning for full-scale…and well beyond
© 2014 SOASTA. All rights reserved. 17
Testing In General
Linear approaches include delays between testing
Ut
Unit Testing
Ft
Functional
Testing
Development Testing Operations
Pt
Performance
Testing
Mo
Monitoring
Legacy Approach: Silos and waiting
TIME
© 2014 SOASTA. All rights reserved. 18
Eliminating Delays Compresses Time
Enabling more testing to be done earlier and more often
Ut
Unit Testing
Ft
Functional
Testing
Testing
Pt
Performance
Testing
Mo
Monitoring
Legacy Approach: Silos and waiting
Agile Approach: Automation and Continuous Testing
OperationsDevelopment
Dev Ops
Testing
TIME
© 2014 SOASTA. All rights reserved. 19
Load Testing with Specific Objectives
Tests at different stages deliver higher coverage
Component
scalability
Performance
baseline
Integration
testing
End to End
w/ Service
Virtualization
Unit scalability
Database testing
3rd party
services
Live E2E
tests
Stress
testing Soak test
(reliability)
Failover
Capacity
Latency
Performance
Regression
(smoke tests)
Network
Testing (staging) Operations (prod)Development (sandbox)
© 2014 SOASTA. All rights reserved. 20
o Small Batch Sizes
o Comprehensive Version Control
o Simple Branch Strategies
o Automation
o Continuous Feedback
o Emphasis on working builds
o Consistent environments
o Developer – Tester Collaboration
21
Shifting Left
• Agile means shorter development cycles
o Used to be months, now weeks
o Quality sign-off within sprint
• Developers and QA working together
o Developers write unit tests; some teams swap roles
• Performance testing is moving to left
o Meet performance SLA in all new code
• Automation with CI tools including Jenkins
o Code that meets quality goals gets promoted automatically
Testing is moving to the left, including unit, functional, and performance
22
Shifting Right
• Performance testing in development
o Development integrating performance tests into SDLC
o Strong adoption of open source test tools, such as JMeter
• Performance engineers using commercial tools
o Execute performance tests at scale, from multiple geos
o Testing not just software but infrastructure
• Testing tools addressing both sets of users
o Adding JMeter support, Continuous Integration automation
Moving performance tests from development to production
© 2014 SOASTA. All rights reserved. 23
• Scalability issues
• Capacity issues
• Concurrency issues
• Reliability issues
© 2014 SOASTA. All rights reserved. 24
• What does a problem look like?
o Longer response times is a clue
o ”High” CPU / Memory / Storage / Network utilization
• Solutions?
o Ops Problem? Can often be “solved” with hardware
o Tall stacks -> Wirth’s Law: “Software is getting slower more rapidly than
hardware gets faster”
• Testing in development
o Test at loads greater than 1 user
o Monitor resource usage across builds and compare to baseline / acceptable
© 2014 SOASTA. All rights reserved. 25
• What does a problem look like?
o Response times vary related to load on system
o Increasing CPU / Memory / Network utilization
o Increasing I/O latency
• Solutions?
o Cannot be “solved” with hardware
o Re-architect solution for high-capacity
• Testing in development
o Test at loads greater than 1 user, compare as load increases
o Monitor resource usage across builds and compare to baseline / acceptable
© 2014 SOASTA. All rights reserved. 26
• What does a problem look like?
o Infrequent functional issues that seem only to occur under load
o Process crashes and restarts
o Not easily reproducible
• Solutions?
o Cannot be “solved” with hardware
o Re-architect solution for high-concurrency
• Testing in development
o Test at loads greater than 1 user
o Monitor functional results while testing at increasing loads
o Monitor processes for crashes and restarts
© 2014 SOASTA. All rights reserved. 27
• What does a problem look like?
o Process crashes and restarts
o Memory or object leaks
o More frequent garbage collection
o Decaying response times
• Solutions?
o Cannot be “solved” with hardware
o Find resource leaks based on failure points
• Testing in development
o Test at loads greater than 1 user for increasing amounts of time
o Monitor processes for crashes and restarts
o Compare behavior and resource usage as time increases
© 2014 SOASTA. All rights reserved. 28
• Additional measurements and aggregation
o Response Time Average / 90th (92/95/98th) Percentile
o Minimum / Maximum Response Times
o Completion / Error Rate %
o Transactions per second
o Size of Response
o Network Throughput
o Measurement against previous run or baseline
o Use more than one of the above!
© 2014 SOASTA. All rights reserved. 29
• The Path to a Performance Culture
Run load tests via
JenkinsDaily (or more frequent) updates keep
teams “performance focused”
Identify
bottlenecks &
inform teams,
just like unit
and functional
tests in
Jenkins
Jenkins launches
suitable cloud-
based test
environment
Manage with a new metric!
30
Test Continuously at Different Load
Test from Development to Integration to Staging to Production
31
JMeter
• Hosted by Apache Software Foundation
o http://jmeter.apache.org
• Designed to load test functional behavior and measure
performance
o Web – HTTP, HTTPS; SOAP / REST; FTP; Database, more
• GUI design
• Plug-ins
• Tests as xml
Popular Open Source performance testing tool
© 2014 SOASTA. All rights reserved. 32
Have	you	met	Jenkins?
#1 CI/CD Automation Engine
• Open Source
• Highly Extensible
About 8 years old
Easy to install/use
1000+ plugins
Widely adopted
• 100K+ installations
© 2014 SOASTA. All rights reserved. 33
Over 1000 Jenkins Plugins for Tool Integration
Integrated Development Environments
(IDEs), editors/compilers/debuggers, code
review and collaboration tools.
Source code control
systems and related asset
management tools.
Automated API-based
testing frameworks.
Release
management and
release automation
software
Automated API-based
testing frameworks, static
code analysis tools.
Load Testing Tools and
Security Scanning
technology
Automated and
manual UAT tools
Release management,
release automation, and
change control software.
Environment and Configuration
Management SoftwareDevelop
Commit
Build &
Integrate
Unit Tests
Release
(to Test)
Automated
Regression
Tests
Release
(to Prod)
User
Acceptance
Tests
Load &
Security
Tests
© 2014 SOASTA. All rights reserved. 34
Jenkins is the Hub of the CD Ecosystem
On-premise or
in the cloud
Plug-ins for all
your tools
RunDeployStageTestBuildCommit
© 2014 SOASTA. All rights reserved. 35
SOASTA	Jenkins	Plug-in
o Open	Source:	online	at	jenkins-ci.org
o Automatically	available	on	CloudBees	DEV@cloud
o Complete	control	over	test	automation	from	within	your	Jenkins	builds:
o Totally	integrated	into	Jenkins	environment
o Similar	plug-ins	available	for	HP	LoadRunner,	BlazeMeter,	JMeter,	Load.io,	etc.
36
Automate Your Testing and Promotion
Use Continuous Integration tools to automate testing
37
Results of Shifting Performance Testing Left
Using Continuous Integration tools to automate testing
• Run incremental performance tests automatically with
each iteration
• Establish a trend line for performance early
• Developers find code and architecture issues early
• Performance teams focus on end-to-end infrastructure
and user related testing
• Minimize production escapes and implement
production testing
38
Questions, Resources & Next Steps
• Holiday Readiness
o soasta.com/holiday-readiness
• The Performance Beacon
o soasta.com/blog
o soasta.com/blog/2015-popular-posts-web-performance
• Webinars
o soasta.com/webinars
o Load Testing for Peak; RUM-Based Testing
• CloudTest Lite
o soasta.com/cloudtest: Free community version for 100 VUs
Resources
© 2014 SOASTA. All rights reserved. 39
© 2014 SOASTA. All rights reserved. 40
How fast should your site be?
© 2014 SOASTA. All rights reserved. 41
Speed costs money…
© 2014 SOASTA. All rights reserved. 42
…and how much load should it handle?
© 2014 SOASTA. All rights reserved. 43
Your customers will be your guide…
© 2014 SOASTA. All rights reserved. 44
RUM
How fast is my site?
What locations?
From where?
Which pages?
Which flows?
Test
Full scale load
From any location
Going through
real user flows
With real-time
analytics
Real-Time Analytics with Real User Measurement
© 2014 SOASTA. All rights reserved. 45
• Tying Business Metrics to (ROI) with website
performance metrics and real user data
CONFIDENTIAL – Not for Distribution © 2015 SOASTA. All rights reserved. January 13, 2015
Building performance tests that model user
behavior on your site
First you need to determine the workload for the test.
How are companies doing that today?
• Guessing.
• Logs.
• 3rd Party tools.
What if I have a new system?
© 2014 SOASTA. All rights reserved. 47
o What information I need?
● When is your peak second/minute/hour/day?
● What is your peak volume? (active sessions, unique users, page
visits, orders, ...)
● What is the median session length?
● What is the distribution of user paths?
● What is the distribution of devices?
● What is the distribution of locations?
o Good Test Data
● Search Terms
● Product Distribution
● Browse Distribution
● Cart Size
● Order Size
How to get a realistic load test
Factors to consider
© 2014 SOASTA. All rights reserved. 48
Use real user data to model real user tests
ROI of Performance
Focus on the ROI of Performance
CONFIDENTIAL – Not for Distribution © 2015 SOASTA. All rights reserved. January 13, 2015
“What If” : Why we test
Predict the future with mPulse!
© 2014 SOASTA. All rights reserved. 52
Test how you want, when you want,
where you want
© 2014 SOASTA. All rights reserved. 53
• Real Users (RUM) provide deep data about your visitors
o No other way to know everything about your users on your site,
from desktop and mobile
• Virtual Users tell you how your site or app will do at scale
o You can’t get a million friends to visit your site or app at the same
time!
JMeter, Load.io, LoadRunner, SOASTA CloudTest let you build and
execute load tests at scales from hundreds to millions of virtual users
© 2014 SOASTA. All rights reserved. 54
• Session paths
o How are your users going through your site
• Mobile App Performance
o How are your mobile apps performing?
o What are users doing in your mobile apps?
• Revenue
o How much money are you making from each user and where?
© 2014 SOASTA. All rights reserved. 55
© 2014 SOASTA. All rights reserved. 56
© 2014 SOASTA. All rights reserved. 57
What was the busiest Day, Hour, Minute, Second?
© 2014 SOASTA. All rights reserved. 58
What were most popular page flows with think times? Which APIs?
© 2014 SOASTA. All rights reserved. 59
• Testing to match realistic situations
o Users are not all from one location on a fast network
o Packets get delayed, lost, re-ordered
• Apps perform differently as network conditions worsen
o Reduced throughput
o Timeouts occur, connections are lost
o Transactions take longer, longer sessions
Adding real network modeling to load and performance testing
© 2014 SOASTA. All rights reserved. 60
Walmart found…
Converted shoppers were served pages
that were 2X faster than pages served to
non-converted shoppers.
Non-buyers were served category pages that
were 2-3 seconds slower than category pages
served to buyers.
For every 100 milliseconds of improvement,
incremental revenue increased by up to 1%.
http://www.soasta.com/blog/mobile-web-performance-monitoring-conversion-rate/
Conversion rate barely decreases
when load times for “checkout” pages degrade
Conversion rate shrinks by about 50%
when load time for “browse” pages
increases from 1 to 6 seconds
What is the Conversion Impact Score?
The Conversion Impact Score (CIS) is a relative score that ranks
page groups by their propensity to negatively impact conversions
due to high load times. For each page group, the Conversion
Impact Score is calculated using the proportion of overall requests
that are associated with that group, along with the Spearman
Ranked Correlation between its load times and number of
conversions. The Conversion Impact Score will always be a
number between -1 and 1, though scores much greater than zero
should be very rare. The more negative the score, the more
detrimental to conversions that high load times for that page
group are, relative to the other page groups.
How much impact does the performance of this
page have on conversions?
1. Product
2. Category
3. Shopping cart
4. Home
5. Search results
http://www.soasta.com/blog/website-monitoring-conversion-impact-score/
69
Test in Production
Some issues will only be found at scale load on production systems
Don’t forget your third party providers: CDNs, external scripts
70
Measure Mobile App Performance Under
Load
All mobile apps perform well when there is no load
71
Now That the Test is Over
• Analyze results for future areas to address
o Weak or stress areas that aren’t likely this time but …
• Identify third parties that were affected by load
o Coordinate with suppliers to address issues
o Align schedules or at least be aware of their changes
Even if the test passed, you’re not done
72
Issues Will Happen
• “I am 100% confident that everything we tested will work
just fine.” – Nordstrom Performance Leader
o When loads are different than what you modeled, may have
problems
o E.g. At Nordstrom, during a recent anniversary sale, mobile
sign-ins were 9x greater than anticipated
o Used RUM to get to the root cause of the issue
Realize that Issues Will Happen Where You Can’t Predict Them
Q & A
Resources
Next Steps
74
CloudTest – Load Testing for mobile web, apps
• Load testing from development to production
o Continuous testing at any scale, on-prem or in the cloud
• Real-time analytics with customizable dashboards
o Safely test in production with full visibility
• Run tests live or automatically
o Full hands-on control or hands-off automation
• Full end-to-end view
o Front-end performance to back-end systems
Fast, scalable, affordable load testing for performance optimization
75
Questions, Resources & Next Steps
• Holiday Readiness
o soasta.com/holiday-readiness
• The Performance Beacon
o soasta.com/blog
o soasta.com/blog/2015-popular-posts-web-performance
• Webinars
o soasta.com/webinars
o Load Testing for Peak; RUM-Based Testing
• CloudTest Lite
o soasta.com/cloudtest: Free community version for 100 VUs
Resources

Más contenido relacionado

La actualidad más candente

DOES16 London - Better Faster Cheaper .. How?
DOES16 London - Better Faster Cheaper .. How? DOES16 London - Better Faster Cheaper .. How?
DOES16 London - Better Faster Cheaper .. How? John Willis
 
A Better, Faster Pipeline for Software Delivery
A Better, Faster Pipeline for Software DeliveryA Better, Faster Pipeline for Software Delivery
A Better, Faster Pipeline for Software DeliveryGene Gotimer
 
All daydevops 2016 - Turning Human Capital into High Performance Organizati...
All daydevops   2016 - Turning Human Capital into High Performance Organizati...All daydevops   2016 - Turning Human Capital into High Performance Organizati...
All daydevops 2016 - Turning Human Capital into High Performance Organizati...John Willis
 
Continuous Delivery: better software, faster.
Continuous Delivery: better software, faster.Continuous Delivery: better software, faster.
Continuous Delivery: better software, faster.Bert Jan Schrijver
 
Challenges and best practices of database continuous delivery
Challenges and best practices of database continuous deliveryChallenges and best practices of database continuous delivery
Challenges and best practices of database continuous deliveryDBmaestro - Database DevOps
 
The Challenges & Pitfalls of Database Continuous Delivery
The Challenges & Pitfalls of Database Continuous DeliveryThe Challenges & Pitfalls of Database Continuous Delivery
The Challenges & Pitfalls of Database Continuous DeliveryPerforce
 
Diving Deeper into DevOps Deployments
Diving Deeper into DevOps DeploymentsDiving Deeper into DevOps Deployments
Diving Deeper into DevOps DeploymentsJules Pierre-Louis
 
App Dynamics & SOASTA Testing & Monitoring Converge, March 2012
App Dynamics & SOASTA Testing & Monitoring Converge, March 2012App Dynamics & SOASTA Testing & Monitoring Converge, March 2012
App Dynamics & SOASTA Testing & Monitoring Converge, March 2012SOASTA
 
Leverage DevOps & Agile Development to Transform Your Application Testing Pro...
Leverage DevOps & Agile Development to Transform Your Application Testing Pro...Leverage DevOps & Agile Development to Transform Your Application Testing Pro...
Leverage DevOps & Agile Development to Transform Your Application Testing Pro...Deborah Schalm
 
Dev ops != Dev+Ops
Dev ops != Dev+OpsDev ops != Dev+Ops
Dev ops != Dev+OpsShalu Ahuja
 
Continuous testing in agile projects 2015
Continuous testing in agile projects 2015Continuous testing in agile projects 2015
Continuous testing in agile projects 2015Fabricio Epaminondas
 
Extending VuGen 11.5 with custom add-ins
Extending VuGen 11.5 with custom add-insExtending VuGen 11.5 with custom add-ins
Extending VuGen 11.5 with custom add-insstuartmoncrieff
 
Devoxx Belgium 2019 - Better software, faster: Principles of Continuous Deliv...
Devoxx Belgium 2019 - Better software, faster: Principles of Continuous Deliv...Devoxx Belgium 2019 - Better software, faster: Principles of Continuous Deliv...
Devoxx Belgium 2019 - Better software, faster: Principles of Continuous Deliv...Bert Jan Schrijver
 
A Day in the Life of a Test Architect
A Day in the Life of a Test ArchitectA Day in the Life of a Test Architect
A Day in the Life of a Test ArchitectTechWell
 
OpenValue Vienna meetup september 2020 - Better software, faster: Principles ...
OpenValue Vienna meetup september 2020 - Better software, faster: Principles ...OpenValue Vienna meetup september 2020 - Better software, faster: Principles ...
OpenValue Vienna meetup september 2020 - Better software, faster: Principles ...Bert Jan Schrijver
 
Moving to Continuous Delivery Without Breaking Your Code
Moving to Continuous Delivery Without Breaking Your CodeMoving to Continuous Delivery Without Breaking Your Code
Moving to Continuous Delivery Without Breaking Your CodeXebiaLabs
 
Scaling Enterprise DevOps with CloudBees
Scaling Enterprise DevOps with CloudBeesScaling Enterprise DevOps with CloudBees
Scaling Enterprise DevOps with CloudBeesDeborah Schalm
 

La actualidad más candente (20)

DOES16 London - Better Faster Cheaper .. How?
DOES16 London - Better Faster Cheaper .. How? DOES16 London - Better Faster Cheaper .. How?
DOES16 London - Better Faster Cheaper .. How?
 
A Better, Faster Pipeline for Software Delivery
A Better, Faster Pipeline for Software DeliveryA Better, Faster Pipeline for Software Delivery
A Better, Faster Pipeline for Software Delivery
 
All daydevops 2016 - Turning Human Capital into High Performance Organizati...
All daydevops   2016 - Turning Human Capital into High Performance Organizati...All daydevops   2016 - Turning Human Capital into High Performance Organizati...
All daydevops 2016 - Turning Human Capital into High Performance Organizati...
 
Continuous Delivery: better software, faster.
Continuous Delivery: better software, faster.Continuous Delivery: better software, faster.
Continuous Delivery: better software, faster.
 
DevOps Overview
DevOps OverviewDevOps Overview
DevOps Overview
 
Challenges and best practices of database continuous delivery
Challenges and best practices of database continuous deliveryChallenges and best practices of database continuous delivery
Challenges and best practices of database continuous delivery
 
DevOps 101
DevOps 101DevOps 101
DevOps 101
 
The Challenges & Pitfalls of Database Continuous Delivery
The Challenges & Pitfalls of Database Continuous DeliveryThe Challenges & Pitfalls of Database Continuous Delivery
The Challenges & Pitfalls of Database Continuous Delivery
 
Diving Deeper into DevOps Deployments
Diving Deeper into DevOps DeploymentsDiving Deeper into DevOps Deployments
Diving Deeper into DevOps Deployments
 
App Dynamics & SOASTA Testing & Monitoring Converge, March 2012
App Dynamics & SOASTA Testing & Monitoring Converge, March 2012App Dynamics & SOASTA Testing & Monitoring Converge, March 2012
App Dynamics & SOASTA Testing & Monitoring Converge, March 2012
 
Leverage DevOps & Agile Development to Transform Your Application Testing Pro...
Leverage DevOps & Agile Development to Transform Your Application Testing Pro...Leverage DevOps & Agile Development to Transform Your Application Testing Pro...
Leverage DevOps & Agile Development to Transform Your Application Testing Pro...
 
Dev ops != Dev+Ops
Dev ops != Dev+OpsDev ops != Dev+Ops
Dev ops != Dev+Ops
 
Continuous testing in agile projects 2015
Continuous testing in agile projects 2015Continuous testing in agile projects 2015
Continuous testing in agile projects 2015
 
Extending VuGen 11.5 with custom add-ins
Extending VuGen 11.5 with custom add-insExtending VuGen 11.5 with custom add-ins
Extending VuGen 11.5 with custom add-ins
 
Devoxx Belgium 2019 - Better software, faster: Principles of Continuous Deliv...
Devoxx Belgium 2019 - Better software, faster: Principles of Continuous Deliv...Devoxx Belgium 2019 - Better software, faster: Principles of Continuous Deliv...
Devoxx Belgium 2019 - Better software, faster: Principles of Continuous Deliv...
 
A Day in the Life of a Test Architect
A Day in the Life of a Test ArchitectA Day in the Life of a Test Architect
A Day in the Life of a Test Architect
 
OpenValue Vienna meetup september 2020 - Better software, faster: Principles ...
OpenValue Vienna meetup september 2020 - Better software, faster: Principles ...OpenValue Vienna meetup september 2020 - Better software, faster: Principles ...
OpenValue Vienna meetup september 2020 - Better software, faster: Principles ...
 
Moving to Continuous Delivery Without Breaking Your Code
Moving to Continuous Delivery Without Breaking Your CodeMoving to Continuous Delivery Without Breaking Your Code
Moving to Continuous Delivery Without Breaking Your Code
 
DevOps for Database webinar
DevOps for Database webinarDevOps for Database webinar
DevOps for Database webinar
 
Scaling Enterprise DevOps with CloudBees
Scaling Enterprise DevOps with CloudBeesScaling Enterprise DevOps with CloudBees
Scaling Enterprise DevOps with CloudBees
 

Similar a ConFoo: Moving web performance testing to the left

WE-06-Testing.ppt
WE-06-Testing.pptWE-06-Testing.ppt
WE-06-Testing.pptjaved281701
 
A Three-Tier Load Testing Program Saved Our Bacon
A Three-Tier Load Testing Program Saved Our BaconA Three-Tier Load Testing Program Saved Our Bacon
A Three-Tier Load Testing Program Saved Our BaconTechWell
 
Listen to Your Machines: DevOps Analytics for Better Feedback Loops
Listen to Your Machines: DevOps Analytics for Better Feedback LoopsListen to Your Machines: DevOps Analytics for Better Feedback Loops
Listen to Your Machines: DevOps Analytics for Better Feedback LoopsSplunk
 
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...Keys To World-Class Retail Web Performance - Expert tips for holiday web read...
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...SOASTA
 
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...Keys To World-Class Retail Web Performance - Expert tips for holiday web read...
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...SOASTA
 
No Devops Without Continuous Testing
No Devops Without Continuous TestingNo Devops Without Continuous Testing
No Devops Without Continuous TestingParasoft
 
Delivering Better Software Faster (Without Breaking Everything)
Delivering Better Software Faster (Without Breaking Everything)Delivering Better Software Faster (Without Breaking Everything)
Delivering Better Software Faster (Without Breaking Everything)XebiaLabs
 
Innovate Better Through Machine data Analytics
Innovate Better Through Machine data AnalyticsInnovate Better Through Machine data Analytics
Innovate Better Through Machine data AnalyticsHal Rottenberg
 
Continuous Performance Testing and Monitoring in Agile Development
Continuous Performance Testing and Monitoring in Agile DevelopmentContinuous Performance Testing and Monitoring in Agile Development
Continuous Performance Testing and Monitoring in Agile DevelopmentDynatrace
 
Untangling Continuous Delivery
Untangling Continuous DeliveryUntangling Continuous Delivery
Untangling Continuous DeliveryPerforce
 
Il paradigma DevOps e Continuous Delivery Automation
Il paradigma DevOps e Continuous Delivery Automation Il paradigma DevOps e Continuous Delivery Automation
Il paradigma DevOps e Continuous Delivery Automation HP Enterprise Italia
 
5 Steps to Jump Start Your Test Automation
5 Steps to Jump Start Your Test Automation5 Steps to Jump Start Your Test Automation
5 Steps to Jump Start Your Test AutomationSauce Labs
 
Lessons Learned from Large Scale Adoption of DevOps for IBM z Systems Software
Lessons Learned from Large Scale Adoption of DevOps for IBM z Systems SoftwareLessons Learned from Large Scale Adoption of DevOps for IBM z Systems Software
Lessons Learned from Large Scale Adoption of DevOps for IBM z Systems SoftwareDevOps for Enterprise Systems
 
SplunkLive! London 2016 Splunk for Devops
SplunkLive! London 2016 Splunk for DevopsSplunkLive! London 2016 Splunk for Devops
SplunkLive! London 2016 Splunk for DevopsSplunk
 
Pivotal korea transformation_strategy_seminar_enterprise_dev_ops_20160630_v1.0
Pivotal korea transformation_strategy_seminar_enterprise_dev_ops_20160630_v1.0Pivotal korea transformation_strategy_seminar_enterprise_dev_ops_20160630_v1.0
Pivotal korea transformation_strategy_seminar_enterprise_dev_ops_20160630_v1.0minseok kim
 
Best Practices In Load And Stress Testing Cmg Seminar[1]
Best Practices In Load And Stress Testing Cmg Seminar[1]Best Practices In Load And Stress Testing Cmg Seminar[1]
Best Practices In Load And Stress Testing Cmg Seminar[1]Munirathnam Naidu
 
Continuous Load Testing with CloudTest and Jenkins
Continuous Load Testing with CloudTest and JenkinsContinuous Load Testing with CloudTest and Jenkins
Continuous Load Testing with CloudTest and JenkinsSOASTA
 

Similar a ConFoo: Moving web performance testing to the left (20)

WE-06-Testing.ppt
WE-06-Testing.pptWE-06-Testing.ppt
WE-06-Testing.ppt
 
A Three-Tier Load Testing Program Saved Our Bacon
A Three-Tier Load Testing Program Saved Our BaconA Three-Tier Load Testing Program Saved Our Bacon
A Three-Tier Load Testing Program Saved Our Bacon
 
Listen to Your Machines: DevOps Analytics for Better Feedback Loops
Listen to Your Machines: DevOps Analytics for Better Feedback LoopsListen to Your Machines: DevOps Analytics for Better Feedback Loops
Listen to Your Machines: DevOps Analytics for Better Feedback Loops
 
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...Keys To World-Class Retail Web Performance - Expert tips for holiday web read...
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...
 
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...Keys To World-Class Retail Web Performance - Expert tips for holiday web read...
Keys To World-Class Retail Web Performance - Expert tips for holiday web read...
 
No Devops Without Continuous Testing
No Devops Without Continuous TestingNo Devops Without Continuous Testing
No Devops Without Continuous Testing
 
Delivering Better Software Faster (Without Breaking Everything)
Delivering Better Software Faster (Without Breaking Everything)Delivering Better Software Faster (Without Breaking Everything)
Delivering Better Software Faster (Without Breaking Everything)
 
Innovate Better Through Machine data Analytics
Innovate Better Through Machine data AnalyticsInnovate Better Through Machine data Analytics
Innovate Better Through Machine data Analytics
 
What is DevOps?
What is DevOps?What is DevOps?
What is DevOps?
 
Musharraf_Syed_Resume
Musharraf_Syed_ResumeMusharraf_Syed_Resume
Musharraf_Syed_Resume
 
Continuous Performance Testing and Monitoring in Agile Development
Continuous Performance Testing and Monitoring in Agile DevelopmentContinuous Performance Testing and Monitoring in Agile Development
Continuous Performance Testing and Monitoring in Agile Development
 
Untangling Continuous Delivery
Untangling Continuous DeliveryUntangling Continuous Delivery
Untangling Continuous Delivery
 
Il paradigma DevOps e Continuous Delivery Automation
Il paradigma DevOps e Continuous Delivery Automation Il paradigma DevOps e Continuous Delivery Automation
Il paradigma DevOps e Continuous Delivery Automation
 
5 Steps to Jump Start Your Test Automation
5 Steps to Jump Start Your Test Automation5 Steps to Jump Start Your Test Automation
5 Steps to Jump Start Your Test Automation
 
Lessons Learned from Large Scale Adoption of DevOps for IBM z Systems Software
Lessons Learned from Large Scale Adoption of DevOps for IBM z Systems SoftwareLessons Learned from Large Scale Adoption of DevOps for IBM z Systems Software
Lessons Learned from Large Scale Adoption of DevOps for IBM z Systems Software
 
SplunkLive! London 2016 Splunk for Devops
SplunkLive! London 2016 Splunk for DevopsSplunkLive! London 2016 Splunk for Devops
SplunkLive! London 2016 Splunk for Devops
 
Pivotal korea transformation_strategy_seminar_enterprise_dev_ops_20160630_v1.0
Pivotal korea transformation_strategy_seminar_enterprise_dev_ops_20160630_v1.0Pivotal korea transformation_strategy_seminar_enterprise_dev_ops_20160630_v1.0
Pivotal korea transformation_strategy_seminar_enterprise_dev_ops_20160630_v1.0
 
Best Practices In Load And Stress Testing Cmg Seminar[1]
Best Practices In Load And Stress Testing Cmg Seminar[1]Best Practices In Load And Stress Testing Cmg Seminar[1]
Best Practices In Load And Stress Testing Cmg Seminar[1]
 
Continuous Load Testing with CloudTest and Jenkins
Continuous Load Testing with CloudTest and JenkinsContinuous Load Testing with CloudTest and Jenkins
Continuous Load Testing with CloudTest and Jenkins
 
Devops
DevopsDevops
Devops
 

Más de Tom Chavez

Getting Started with Big Data and Splunk
Getting Started with Big Data and SplunkGetting Started with Big Data and Splunk
Getting Started with Big Data and SplunkTom Chavez
 
Top 10 mobile and web perf lessons-Toronto
Top 10 mobile and web perf lessons-TorontoTop 10 mobile and web perf lessons-Toronto
Top 10 mobile and web perf lessons-TorontoTom Chavez
 
AnDevCon: Building Automated Android App Tests
AnDevCon: Building Automated Android App TestsAnDevCon: Building Automated Android App Tests
AnDevCon: Building Automated Android App TestsTom Chavez
 
7 steps to pragmatic mobile testing Vancouver
7 steps to pragmatic mobile testing   Vancouver7 steps to pragmatic mobile testing   Vancouver
7 steps to pragmatic mobile testing VancouverTom Chavez
 
Top 10 Mobile and Web Perf Lessons
Top 10 Mobile and Web Perf LessonsTop 10 Mobile and Web Perf Lessons
Top 10 Mobile and Web Perf LessonsTom Chavez
 
7 Steps to Pragmatic Mobile Testing
7 Steps to Pragmatic Mobile Testing7 Steps to Pragmatic Mobile Testing
7 Steps to Pragmatic Mobile TestingTom Chavez
 
Top 10 mobile and web perf lessons 2014 web perf-jan 2015
Top 10 mobile and web perf lessons 2014   web perf-jan 2015Top 10 mobile and web perf lessons 2014   web perf-jan 2015
Top 10 mobile and web perf lessons 2014 web perf-jan 2015Tom Chavez
 

Más de Tom Chavez (7)

Getting Started with Big Data and Splunk
Getting Started with Big Data and SplunkGetting Started with Big Data and Splunk
Getting Started with Big Data and Splunk
 
Top 10 mobile and web perf lessons-Toronto
Top 10 mobile and web perf lessons-TorontoTop 10 mobile and web perf lessons-Toronto
Top 10 mobile and web perf lessons-Toronto
 
AnDevCon: Building Automated Android App Tests
AnDevCon: Building Automated Android App TestsAnDevCon: Building Automated Android App Tests
AnDevCon: Building Automated Android App Tests
 
7 steps to pragmatic mobile testing Vancouver
7 steps to pragmatic mobile testing   Vancouver7 steps to pragmatic mobile testing   Vancouver
7 steps to pragmatic mobile testing Vancouver
 
Top 10 Mobile and Web Perf Lessons
Top 10 Mobile and Web Perf LessonsTop 10 Mobile and Web Perf Lessons
Top 10 Mobile and Web Perf Lessons
 
7 Steps to Pragmatic Mobile Testing
7 Steps to Pragmatic Mobile Testing7 Steps to Pragmatic Mobile Testing
7 Steps to Pragmatic Mobile Testing
 
Top 10 mobile and web perf lessons 2014 web perf-jan 2015
Top 10 mobile and web perf lessons 2014   web perf-jan 2015Top 10 mobile and web perf lessons 2014   web perf-jan 2015
Top 10 mobile and web perf lessons 2014 web perf-jan 2015
 

Último

Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...OnePlan Solutions
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionSolGuruz
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️anilsa9823
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceanilsa9823
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 

Último (20)

Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 

ConFoo: Moving web performance testing to the left

  • 1. © 2014 SOASTA. All rights reserved. 1
  • 2. © 2014 SOASTA. All rights reserved. 2 o What is the impact of Web Performance? o Your Web Site and the need for Performance Testing o Typical Performance Testing o Issues found in Performance Testing o Making Performance Testing Continuous
  • 3. What do users care about? Survey Says:
  • 4.
  • 5.
  • 6.
  • 8. Performance affects every business KPI • Revenue • Conversions • User satisfaction • User retention • Time on site • Page views • Bounce rate • Organic search traffic • Brand perception
  • 9. Impact of a 1-second delay A site that earns $100K per day could lose $2.5M in sales in one year
  • 10. …website slowdowns occur 10X more often than outages. Source: TRAC Research
  • 12. 12 Anatomy of Your Web App Responsive web site Web Servers • Desktop Users • Mobile Users • Same or similar content o Adapting to different screen sizes Mobile optimized • “m-dot” site for mobile • Custom built for mobile devices All have html, images, JavaScript, css, plus third-party content
  • 13. 13 Native App • Android – Java • iOS – Objective C/Swift • Mobile app framework o Same source code Hybrid App • Mix of native code + html All have backend calls for login/authentication, account settings, database calls, transactions, plus third-party SDK calls Mobile Apps and Back End Services WebSite/Mobile Back end
  • 14. 14 The Need for Load Testing • Everyone runs load testing on their website, right? o Load and Performance testing is often not done or too late o Black Friday, Cyber Monday, Holiday failures • What’s the need for mobile web load testing? o Mobile is growing faster than desktop o Responsive sites and mobile sites deliver different content to mobile devices over mobile network • What about mobile app load testing? o Mobile app back ends serve different content to mobile apps o Remember Pokemon Go? It wasn’t the app that failed.
  • 15. 15 When is your Peak Season? • Peak is year-round o Super Bowl Sunday – 110 million viewers o Bi-weekly or monthly payroll processing o Valentine’s Day, President’s Day, Mother’s Day, Father’s Day o Quarterly processing and filing o U.S. Tax filing o Spring, Summer, Fall & Winter season sales o July 4th, Christmas in July o Back to School o Olympics o Halloween o Election Day o Singles Day – world’s biggest shopping day, $9B in 12 hours o Black Friday, Cyber Monday and Holidays Back to top to repeat again next year!
  • 16. © 2014 SOASTA. All rights reserved. 16 s Memory leaks Scale of Test Stage/Team Dev & Test Release & Deploy Network & Ops CDN file placement Load Balancer configuration Network bandwidth Network configuration DNS routing Inadequate server resources Default configuration settings Unbalanced web serversAuto-scaling failures Latency between systems Slow third-party plug-ins Garbage collection Database thread counts Inefficient database queriesSlow pages Conflict with other apps Test Lab Staging Production (100% +++) Search technology limits Method-level tuning Max sockets exceeded Firewall max capacity Global latency variance Security bottlenecks Tuning for full-scale…and well beyond
  • 17. © 2014 SOASTA. All rights reserved. 17 Testing In General Linear approaches include delays between testing Ut Unit Testing Ft Functional Testing Development Testing Operations Pt Performance Testing Mo Monitoring Legacy Approach: Silos and waiting TIME
  • 18. © 2014 SOASTA. All rights reserved. 18 Eliminating Delays Compresses Time Enabling more testing to be done earlier and more often Ut Unit Testing Ft Functional Testing Testing Pt Performance Testing Mo Monitoring Legacy Approach: Silos and waiting Agile Approach: Automation and Continuous Testing OperationsDevelopment Dev Ops Testing TIME
  • 19. © 2014 SOASTA. All rights reserved. 19 Load Testing with Specific Objectives Tests at different stages deliver higher coverage Component scalability Performance baseline Integration testing End to End w/ Service Virtualization Unit scalability Database testing 3rd party services Live E2E tests Stress testing Soak test (reliability) Failover Capacity Latency Performance Regression (smoke tests) Network Testing (staging) Operations (prod)Development (sandbox)
  • 20. © 2014 SOASTA. All rights reserved. 20 o Small Batch Sizes o Comprehensive Version Control o Simple Branch Strategies o Automation o Continuous Feedback o Emphasis on working builds o Consistent environments o Developer – Tester Collaboration
  • 21. 21 Shifting Left • Agile means shorter development cycles o Used to be months, now weeks o Quality sign-off within sprint • Developers and QA working together o Developers write unit tests; some teams swap roles • Performance testing is moving to left o Meet performance SLA in all new code • Automation with CI tools including Jenkins o Code that meets quality goals gets promoted automatically Testing is moving to the left, including unit, functional, and performance
  • 22. 22 Shifting Right • Performance testing in development o Development integrating performance tests into SDLC o Strong adoption of open source test tools, such as JMeter • Performance engineers using commercial tools o Execute performance tests at scale, from multiple geos o Testing not just software but infrastructure • Testing tools addressing both sets of users o Adding JMeter support, Continuous Integration automation Moving performance tests from development to production
  • 23. © 2014 SOASTA. All rights reserved. 23 • Scalability issues • Capacity issues • Concurrency issues • Reliability issues
  • 24. © 2014 SOASTA. All rights reserved. 24 • What does a problem look like? o Longer response times is a clue o ”High” CPU / Memory / Storage / Network utilization • Solutions? o Ops Problem? Can often be “solved” with hardware o Tall stacks -> Wirth’s Law: “Software is getting slower more rapidly than hardware gets faster” • Testing in development o Test at loads greater than 1 user o Monitor resource usage across builds and compare to baseline / acceptable
  • 25. © 2014 SOASTA. All rights reserved. 25 • What does a problem look like? o Response times vary related to load on system o Increasing CPU / Memory / Network utilization o Increasing I/O latency • Solutions? o Cannot be “solved” with hardware o Re-architect solution for high-capacity • Testing in development o Test at loads greater than 1 user, compare as load increases o Monitor resource usage across builds and compare to baseline / acceptable
  • 26. © 2014 SOASTA. All rights reserved. 26 • What does a problem look like? o Infrequent functional issues that seem only to occur under load o Process crashes and restarts o Not easily reproducible • Solutions? o Cannot be “solved” with hardware o Re-architect solution for high-concurrency • Testing in development o Test at loads greater than 1 user o Monitor functional results while testing at increasing loads o Monitor processes for crashes and restarts
  • 27. © 2014 SOASTA. All rights reserved. 27 • What does a problem look like? o Process crashes and restarts o Memory or object leaks o More frequent garbage collection o Decaying response times • Solutions? o Cannot be “solved” with hardware o Find resource leaks based on failure points • Testing in development o Test at loads greater than 1 user for increasing amounts of time o Monitor processes for crashes and restarts o Compare behavior and resource usage as time increases
  • 28. © 2014 SOASTA. All rights reserved. 28 • Additional measurements and aggregation o Response Time Average / 90th (92/95/98th) Percentile o Minimum / Maximum Response Times o Completion / Error Rate % o Transactions per second o Size of Response o Network Throughput o Measurement against previous run or baseline o Use more than one of the above!
  • 29. © 2014 SOASTA. All rights reserved. 29 • The Path to a Performance Culture Run load tests via JenkinsDaily (or more frequent) updates keep teams “performance focused” Identify bottlenecks & inform teams, just like unit and functional tests in Jenkins Jenkins launches suitable cloud- based test environment Manage with a new metric!
  • 30. 30 Test Continuously at Different Load Test from Development to Integration to Staging to Production
  • 31. 31 JMeter • Hosted by Apache Software Foundation o http://jmeter.apache.org • Designed to load test functional behavior and measure performance o Web – HTTP, HTTPS; SOAP / REST; FTP; Database, more • GUI design • Plug-ins • Tests as xml Popular Open Source performance testing tool
  • 32. © 2014 SOASTA. All rights reserved. 32 Have you met Jenkins? #1 CI/CD Automation Engine • Open Source • Highly Extensible About 8 years old Easy to install/use 1000+ plugins Widely adopted • 100K+ installations
  • 33. © 2014 SOASTA. All rights reserved. 33 Over 1000 Jenkins Plugins for Tool Integration Integrated Development Environments (IDEs), editors/compilers/debuggers, code review and collaboration tools. Source code control systems and related asset management tools. Automated API-based testing frameworks. Release management and release automation software Automated API-based testing frameworks, static code analysis tools. Load Testing Tools and Security Scanning technology Automated and manual UAT tools Release management, release automation, and change control software. Environment and Configuration Management SoftwareDevelop Commit Build & Integrate Unit Tests Release (to Test) Automated Regression Tests Release (to Prod) User Acceptance Tests Load & Security Tests
  • 34. © 2014 SOASTA. All rights reserved. 34 Jenkins is the Hub of the CD Ecosystem On-premise or in the cloud Plug-ins for all your tools RunDeployStageTestBuildCommit
  • 35. © 2014 SOASTA. All rights reserved. 35 SOASTA Jenkins Plug-in o Open Source: online at jenkins-ci.org o Automatically available on CloudBees DEV@cloud o Complete control over test automation from within your Jenkins builds: o Totally integrated into Jenkins environment o Similar plug-ins available for HP LoadRunner, BlazeMeter, JMeter, Load.io, etc.
  • 36. 36 Automate Your Testing and Promotion Use Continuous Integration tools to automate testing
  • 37. 37 Results of Shifting Performance Testing Left Using Continuous Integration tools to automate testing • Run incremental performance tests automatically with each iteration • Establish a trend line for performance early • Developers find code and architecture issues early • Performance teams focus on end-to-end infrastructure and user related testing • Minimize production escapes and implement production testing
  • 38. 38 Questions, Resources & Next Steps • Holiday Readiness o soasta.com/holiday-readiness • The Performance Beacon o soasta.com/blog o soasta.com/blog/2015-popular-posts-web-performance • Webinars o soasta.com/webinars o Load Testing for Peak; RUM-Based Testing • CloudTest Lite o soasta.com/cloudtest: Free community version for 100 VUs Resources
  • 39. © 2014 SOASTA. All rights reserved. 39
  • 40. © 2014 SOASTA. All rights reserved. 40 How fast should your site be?
  • 41. © 2014 SOASTA. All rights reserved. 41 Speed costs money…
  • 42. © 2014 SOASTA. All rights reserved. 42 …and how much load should it handle?
  • 43. © 2014 SOASTA. All rights reserved. 43 Your customers will be your guide…
  • 44. © 2014 SOASTA. All rights reserved. 44 RUM How fast is my site? What locations? From where? Which pages? Which flows? Test Full scale load From any location Going through real user flows With real-time analytics Real-Time Analytics with Real User Measurement
  • 45. © 2014 SOASTA. All rights reserved. 45 • Tying Business Metrics to (ROI) with website performance metrics and real user data
  • 46. CONFIDENTIAL – Not for Distribution © 2015 SOASTA. All rights reserved. January 13, 2015 Building performance tests that model user behavior on your site First you need to determine the workload for the test. How are companies doing that today? • Guessing. • Logs. • 3rd Party tools. What if I have a new system?
  • 47. © 2014 SOASTA. All rights reserved. 47 o What information I need? ● When is your peak second/minute/hour/day? ● What is your peak volume? (active sessions, unique users, page visits, orders, ...) ● What is the median session length? ● What is the distribution of user paths? ● What is the distribution of devices? ● What is the distribution of locations? o Good Test Data ● Search Terms ● Product Distribution ● Browse Distribution ● Cart Size ● Order Size How to get a realistic load test Factors to consider
  • 48. © 2014 SOASTA. All rights reserved. 48 Use real user data to model real user tests
  • 50. Focus on the ROI of Performance
  • 51. CONFIDENTIAL – Not for Distribution © 2015 SOASTA. All rights reserved. January 13, 2015 “What If” : Why we test Predict the future with mPulse!
  • 52. © 2014 SOASTA. All rights reserved. 52 Test how you want, when you want, where you want
  • 53. © 2014 SOASTA. All rights reserved. 53 • Real Users (RUM) provide deep data about your visitors o No other way to know everything about your users on your site, from desktop and mobile • Virtual Users tell you how your site or app will do at scale o You can’t get a million friends to visit your site or app at the same time! JMeter, Load.io, LoadRunner, SOASTA CloudTest let you build and execute load tests at scales from hundreds to millions of virtual users
  • 54. © 2014 SOASTA. All rights reserved. 54 • Session paths o How are your users going through your site • Mobile App Performance o How are your mobile apps performing? o What are users doing in your mobile apps? • Revenue o How much money are you making from each user and where?
  • 55. © 2014 SOASTA. All rights reserved. 55
  • 56. © 2014 SOASTA. All rights reserved. 56
  • 57. © 2014 SOASTA. All rights reserved. 57 What was the busiest Day, Hour, Minute, Second?
  • 58. © 2014 SOASTA. All rights reserved. 58 What were most popular page flows with think times? Which APIs?
  • 59. © 2014 SOASTA. All rights reserved. 59 • Testing to match realistic situations o Users are not all from one location on a fast network o Packets get delayed, lost, re-ordered • Apps perform differently as network conditions worsen o Reduced throughput o Timeouts occur, connections are lost o Transactions take longer, longer sessions Adding real network modeling to load and performance testing
  • 60. © 2014 SOASTA. All rights reserved. 60
  • 61. Walmart found… Converted shoppers were served pages that were 2X faster than pages served to non-converted shoppers. Non-buyers were served category pages that were 2-3 seconds slower than category pages served to buyers. For every 100 milliseconds of improvement, incremental revenue increased by up to 1%.
  • 63. Conversion rate barely decreases when load times for “checkout” pages degrade
  • 64. Conversion rate shrinks by about 50% when load time for “browse” pages increases from 1 to 6 seconds
  • 65.
  • 66. What is the Conversion Impact Score? The Conversion Impact Score (CIS) is a relative score that ranks page groups by their propensity to negatively impact conversions due to high load times. For each page group, the Conversion Impact Score is calculated using the proportion of overall requests that are associated with that group, along with the Spearman Ranked Correlation between its load times and number of conversions. The Conversion Impact Score will always be a number between -1 and 1, though scores much greater than zero should be very rare. The more negative the score, the more detrimental to conversions that high load times for that page group are, relative to the other page groups.
  • 67. How much impact does the performance of this page have on conversions? 1. Product 2. Category 3. Shopping cart 4. Home 5. Search results
  • 69. 69 Test in Production Some issues will only be found at scale load on production systems Don’t forget your third party providers: CDNs, external scripts
  • 70. 70 Measure Mobile App Performance Under Load All mobile apps perform well when there is no load
  • 71. 71 Now That the Test is Over • Analyze results for future areas to address o Weak or stress areas that aren’t likely this time but … • Identify third parties that were affected by load o Coordinate with suppliers to address issues o Align schedules or at least be aware of their changes Even if the test passed, you’re not done
  • 72. 72 Issues Will Happen • “I am 100% confident that everything we tested will work just fine.” – Nordstrom Performance Leader o When loads are different than what you modeled, may have problems o E.g. At Nordstrom, during a recent anniversary sale, mobile sign-ins were 9x greater than anticipated o Used RUM to get to the root cause of the issue Realize that Issues Will Happen Where You Can’t Predict Them
  • 74. 74 CloudTest – Load Testing for mobile web, apps • Load testing from development to production o Continuous testing at any scale, on-prem or in the cloud • Real-time analytics with customizable dashboards o Safely test in production with full visibility • Run tests live or automatically o Full hands-on control or hands-off automation • Full end-to-end view o Front-end performance to back-end systems Fast, scalable, affordable load testing for performance optimization
  • 75. 75 Questions, Resources & Next Steps • Holiday Readiness o soasta.com/holiday-readiness • The Performance Beacon o soasta.com/blog o soasta.com/blog/2015-popular-posts-web-performance • Webinars o soasta.com/webinars o Load Testing for Peak; RUM-Based Testing • CloudTest Lite o soasta.com/cloudtest: Free community version for 100 VUs Resources