Scaling Sitecore for Load

Size: px
Start display at page:

Download "Scaling Sitecore for Load"

Transcription

1 Scaling Sitecore for Load introduction In 2012, SolutionSet rebuilt the California Lottery website from the ground up and learned a great deal about building a Sitecore infrastructure to withstand targeted bursts of traffic. Being one of the largest state-run lotteries in the world and having heavy spikes in traffic due to large jackpots, the California Lottery needed a platform that would be steady and stable through the ebbs and flows. Before implementing Sitecore, the California Lottery website would go down every time user traffic became too heavy. Their traffic profile was somewhat atypical in that while their baseline traffic level was reasonably high, jackpot nights presented an exponentially higher level of traffic. We needed to build a platform that could handle their multifaceted scalability challenge the site not only had to scale for high traffic days, but also for the precise high traffic times and high traffic pages. In this white paper we share factors key to successfully scaling with Sitecore and our learnings along the way, with the hope that this will serve as a framework for thinking about scaling a website for bursts in traffic. M AY Robert Balmaseda, Eric Bradford, Alex Kaplinsky, Peter Montgomery

2 1. comprehensive caching is vital Sitecore provides a very sophisticated and flexible caching infrastructure with four primary layers of caching: Prefetch Caching, which pulls specified segments of raw data from the database. The Data Cache, which converts the data to a structured representation in memory when required. The Item Cache, which converts these structures to Sitecore items in memory. Output Caching, which caches the rendered output from the rendering or sub-layouts that reference those items. You can specify maximum sizes for each of these layers, but we focused our cache tuning efforts on the first and last layers. When we started going through the exercise of modifying the California Lottery s cache settings in web.config, we quickly realized that the total size of the Lottery s Sitecore content was at a level that we could prefetch the entire content tree without taxing the memory on our origin Content Delivery servers. So we set our max cache sizes and load factor at levels that let us load all site content into memory when the site first spun up. This means that regardless of the load placed on the servers, the database activity on our Sitecore web databases is limited to system operations, such as checking the event queue. REQUEST Figure 1: Sitecore s Caching Layers Contains rendered markup as invoked under various conditions, which are defined in caching configuration for each rendering. For a given request, if an entry is found for a rendering meeting that request s conditions (ie. language, querystring, etc.), the rendering is served from the Output Cache. Otherwise, the rendering engine looks to the Item Cache. Effective use of output caching can greatly reduce CPU utilization. Output Cache Contains a single version of an item in a single language, stored as an instance of the Sitecore.Data.Items.Item class. If a cache entry exists for a request for an item, either by the rendering engine or directly from code, the cached item will be returned. Otherwise, the framework will attempt to create a corresponding cache entry derived from the Data Cache. Item Cache Contains an XML representation of one version of an item. A cache entry will be provided in response to a request from the Item Cache if possible; otherwise the framework will attempt to create a corresponding entry derived from the Prefetch Cache. Data Cache Contains data underlying items in the content hierarchy. By default, this cache is populated from the database on application startup, as specified in a dedicated configuration file. If the Prefetch Cache cannot provide an entry in response to a request from the Data Cache, it will create one after retrieving the appropriate data from the database. The Prefetch Cache can significantly alleviate database usage when configured correctly. Prefetch Cache DATABASE

3 comprehensive caching is vital (continued...) This is a beautiful thing because it eliminates the database as a potential bottleneck, regardless of traffic patterns. If the volume of content on your site doesn t lend itself to being fully preloaded, the prefetch configuration file will let you specify that the data underlying the most heavily visited pages should be prefetched, and when you dig into it you might find that you can simply exclude old press releases, for example, and preload everything else. If you can take the database out of the equation and set aside memory consumption considerations around session usage which has solutions that are well documented and not specific to Sitecore our scalability challenge was essentially reduced to pushing down CPU utilization, most of which was driven by output rendering. This is where the rubber met the road for us, because there were sections of our pages that had information whose freshness was independent of Sitecore publishes. This meant that we couldn t take advantage of Sitecore s output cache for a few small, but important, page sections on our key pages. We made heavy use of a Content Delivery Network (CDN), to the point where only the base pages were being served from the origin servers, and everything else images, CSS, JavaScript, everything came off of the CDN. First, this gave us better predictability if a user uploads and links to an enormous.pdf file from the winning numbers page an hour before a big jackpot, it s not going to bog the site it s just going to make their CDN bill skyrocket. It also allowed for using single-threaded virtual users in load testing because a real user s browser is only going to be dedicating one thread to the origin server, so a VU load test allowed us to model real world usage. This made identifying issues through load testing much less complex and if you re using a third party service, it s also a lot less expensive. Then, we had a situation where we only served markup from our origin servers and each server was serving its content from memory without the secondary dependency on a database. This meant that we were able to scale linearly if we knew that a single server, in this case a VM, could spit out key pages at 250 pps and we had a sense of what a particularly heavy night would bring in terms of traffic, say 1500 pps, then we knew that we could spin up three additional VMs on top of the three we typically had running and handle the traffic for that night.

4 2. know your bottlenecks: profile, profile, profile profile against the code We used BrowserMob (now called Neustar) for load testing. We maintained a staging instance of the site that was identical in every way to production; we did this for a variety of reasons, but one of the more important ones was that it allowed us to get reliable load test results at any time without bogging the main site. BrowserMob offered a simple interface for firing off load tests and the ability to view both high-level results of the tests as well as extract very detailed information using a SQL-ish query language. Knowing full well that we weren t going to be able to infer every trick in the book from the documentation, we worked with Sitecore on scalability tuning. It can be tempting to make assumptions and profile pages based on a hunch, but using empirical data is critical. We presented Sitecore with our load test results at that point and together we went through the process of profiling the site using Red Gate s ANTS performance profiler and determining where our bottlenecks were. Figure 2: Segment of ANTS Analysis Tree

5 profile against the code (continued...) Figure 2 includes a section of the ANTS analysis tree that gave us the processing time, consumed by every call made during the process of rendering a page. These trees clearly showed where the current bottlenecks were for a given page, so you could optimize those, re-run the test, and focus on the next bottleneck. During this process we found a few items that were lowhanging fruit, such as disabling certain counters, optimizing inefficient content queries, and output caching page segments that had been overlooked. We were able to meet our site-wide targets after a couple of days of this, but we wanted to squeeze as much performance out of the three key pages the home, MEGA Millions, and winning numbers pages as we could. As mentioned earlier, we had certain sub-layouts that contained a mixture of Sitecore content and text, such as winning numbers. This data needed to be displayed within seconds of its arrival for obvious reasons, so we were not able to rely on any of Sitecore s cache clearing mechanisms for sub-layouts that contained this type of data. Once we started drilling into the remaining performance bottlenecks on these key pages, all of which happened to contain a lot of this non-sitecore data, we realized that we needed to cache individual controls such as text controls. Sitecore s text controls appeared to support caching as they would accept a cacheable attribute without complaint, but in reality they couldn t be output cached out of the box. This was also true for link controls and a few others. So we sub-classed the text control, overriding GetCacheKey to return a string identifying a unique instance of the control. This change allowed us to output cache every bit of markup that originated from Sitecore. This may seem like a really nitpicky level of optimization, but given the number of these mixed-content sub-layouts we have on the site, it made a big difference for us. At the end of a few days of work, we were successfully serving our key pages at pps in our go-live hardware infrastructure without noticeable performance degradation.

6 profile against user behavior What we learned most out of this detailed profiling experience is that it s always valuable to take a step back, dig into logs, and even talk to users to get a sense of whether assumptions about site usage hold true under typical and atypical usage patterns. In our case, there was a large MEGA Millions jackpot on March 27, just prior to our highest traffic night, which allowed us to challenge some of our assumptions and adjust accordingly. The CA Lottery s MEGA Millions page is in the middle of the first page of results if you Google mega millions, so it was no surprise that this page saw a majority of the traffic on these high traffic nights, and as such invited renewed scrutiny. On this page there is a side module that says, Are your favorite numbers lucky?. It lets you type numbers in and see how often they had won in the past at least that was the intent. When we looked at the logs after the first of our heavy traffic nights it was noted that this functionality, which by necessity executes a real-time database query, was getting hammered at the times when people would be looking for that night s winning numbers. We realized that visitors were using this functionality to look for that night s winning numbers hitting it once for every number they had played and they were doing it within the window of heaviest traffic, rather than checking once and then waiting for a few minutes. As a result, we removed the check your numbers box and tweaked our messaging, and our page views -to-visits ratio dropped way off, as did the frustration level of site users, I m sure. There were also some non-essential areas on the page that couldn t be output cached; luckily we had built a mechanism to allow those modules to be removed temporarily and replaced after the party was over, so two of the three key pages were 100% output cached by the time things got rough.

7 summary In summary, we learned that having static pages and elements ready and continuing to parse logs and talk to real users to find bottlenecks are critical actions to take to ensure a website can scale for heavy bursts in traffic. In doing this, we enabled the California Lottery to handle a world-record 640 MEGA Millions jackpot and the traffic that came with it more than 3,000 requests per second at the peak just one month after launch. To this day, we continue to fine-tune our caching, page structure, and hardware infrastructure as the site evolves to deliver up-to-the-second information to lottery players. To learn more about SolutionSet and how we can partner with you to build scalable platforms that serve your business needs, please contact robert. balmaseda@solutionset.com. about solutionset SolutionSet is an award-winning digital consultancy and a Sitecore Certified Solution Partner in CEP, CRM, and E-Commerce. We have 17+ Sitecore Certified Developers on staff who have worked to complete 14 Sitecore implementations to date. We earned two North American Sitecore Site of the Year awards in 2012 for California Lottery and American Express Global Corporate Payments website implementations. SolutionSet was built from the ground up to combine the thinking, creativity, and passion of a digital agency with the strategy, process, and engineering depth of a technology consultancy. We design and develop web, mobile, social and digital marketing solutions that help leading companies better engage and serve customers. SolutionSet clients include American Express, California Lottery, Cisco, Cord Blood Registry, Dell, Duke University, and TXU Energy. Visit us at: solutionset.com M AY Robert Balmaseda, Eric Bradford, Alex Kaplinsky, Peter Montgomery

Data Driven Success. Comparing Log Analytics Tools: Flowerfire s Sawmill vs. Google Analytics (GA)

Data Driven Success. Comparing Log Analytics Tools: Flowerfire s Sawmill vs. Google Analytics (GA) Data Driven Success Comparing Log Analytics Tools: Flowerfire s Sawmill vs. Google Analytics (GA) In business, data is everything. Regardless of the products or services you sell or the systems you support,

More information

CMS Performance Tuning Guide

CMS Performance Tuning Guide CMS Performance Tuning Guide Rev: 12 February 2013 Sitecore CMS 6.0-6.5 CMS Performance Tuning Guide A developer's guide to optimizing the performance of Sitecore CMS Table of Contents Chapter 1 Introduction...

More information

Cache Configuration Reference

Cache Configuration Reference Sitecore CMS 6.2 Cache Configuration Reference Rev: 2009-11-20 Sitecore CMS 6.2 Cache Configuration Reference Tips and Techniques for Administrators and Developers Table of Contents Chapter 1 Introduction...

More information

Case Study: Load Testing and Tuning to Improve SharePoint Website Performance

Case Study: Load Testing and Tuning to Improve SharePoint Website Performance Case Study: Load Testing and Tuning to Improve SharePoint Website Performance Abstract: Initial load tests revealed that the capacity of a customized Microsoft Office SharePoint Server (MOSS) website cluster

More information

Sitecore Health. Christopher Wojciech. netzkern AG. christopher.wojciech@netzkern.de. Sitecore User Group Conference 2015

Sitecore Health. Christopher Wojciech. netzkern AG. christopher.wojciech@netzkern.de. Sitecore User Group Conference 2015 Sitecore Health Christopher Wojciech netzkern AG christopher.wojciech@netzkern.de Sitecore User Group Conference 2015 1 Hi, % Increase in Page Abondonment 40% 30% 20% 10% 0% 2 sec to 4 2 sec to 6 2 sec

More information

Accelerating Web-Based SQL Server Applications with SafePeak Plug and Play Dynamic Database Caching

Accelerating Web-Based SQL Server Applications with SafePeak Plug and Play Dynamic Database Caching Accelerating Web-Based SQL Server Applications with SafePeak Plug and Play Dynamic Database Caching A SafePeak Whitepaper February 2014 www.safepeak.com Copyright. SafePeak Technologies 2014 Contents Objective...

More information

Accelerating Wordpress for Pagerank and Profit

Accelerating Wordpress for Pagerank and Profit Slide No. 1 Accelerating Wordpress for Pagerank and Profit Practical tips and tricks to increase the speed of your site, improve conversions and climb the search rankings By: Allan Jude November 2011 Vice

More information

Tableau Server Scalability Explained

Tableau Server Scalability Explained Tableau Server Scalability Explained Author: Neelesh Kamkolkar Tableau Software July 2013 p2 Executive Summary In March 2013, we ran scalability tests to understand the scalability of Tableau 8.0. We wanted

More information

Databases Going Virtual? Identifying the Best Database Servers for Virtualization

Databases Going Virtual? Identifying the Best Database Servers for Virtualization Identifying the Best Database Servers for Virtualization By Confio Software Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 www.confio.com Many companies are turning to virtualization in

More information

A Comparison of Oracle Performance on Physical and VMware Servers

A Comparison of Oracle Performance on Physical and VMware Servers A Comparison of Oracle Performance on Physical and VMware Servers By Confio Software Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 www.confio.com Introduction Of all the tier one applications

More information

Network Instruments white paper

Network Instruments white paper Network Instruments white paper ANALYZING FULL-DUPLEX NETWORKS There are a number ways to access full-duplex traffic on a network for analysis: SPAN or mirror ports, aggregation TAPs (Test Access Ports),

More information

Product Review: James F. Koopmann Pine Horse, Inc. Quest Software s Foglight Performance Analysis for Oracle

Product Review: James F. Koopmann Pine Horse, Inc. Quest Software s Foglight Performance Analysis for Oracle Product Review: James F. Koopmann Pine Horse, Inc. Quest Software s Foglight Performance Analysis for Oracle Introduction I ve always been interested and intrigued by the processes DBAs use to monitor

More information

New Relic & JMeter - Perfect Performance Testing

New Relic & JMeter - Perfect Performance Testing TUTORIAL New Relic & JMeter - Perfect Performance Testing by David Sale Contents Introduction 3 Demo Application 4 Hooking Into New Relic 4 What Is JMeter? 6 Installation and Usage 6 Analysis In New Relic

More information

Paper 064-2014. Robert Bonham, Gregory A. Smith, SAS Institute Inc., Cary NC

Paper 064-2014. Robert Bonham, Gregory A. Smith, SAS Institute Inc., Cary NC Paper 064-2014 Log entries, Events, Performance Measures, and SLAs: Understanding and Managing your SAS Deployment by Leveraging the SAS Environment Manager Data Mart ABSTRACT Robert Bonham, Gregory A.

More information

Cargoh Website - A Social Marketplace

Cargoh Website - A Social Marketplace Cargoh Website - A Social Marketplace www.appnovation.com Cargoh Website - A Social Marketplace Contents 1.0 Background P. 3 2.0 Project Overview P. 4 3.0 Modules P. 6 4.0 Roles & Responsibilities P. 8

More information

Winning the J2EE Performance Game Presented to: JAVA User Group-Minnesota

Winning the J2EE Performance Game Presented to: JAVA User Group-Minnesota Winning the J2EE Performance Game Presented to: JAVA User Group-Minnesota Michelle Pregler Ball Emerging Markets Account Executive Shahrukh Niazi Sr.System Consultant Java Solutions Quest Background Agenda

More information

Tableau Server 7.0 scalability

Tableau Server 7.0 scalability Tableau Server 7.0 scalability February 2012 p2 Executive summary In January 2012, we performed scalability tests on Tableau Server to help our customers plan for large deployments. We tested three different

More information

PERFORMANCE TUNING FOR PEOPLESOFT APPLICATIONS

PERFORMANCE TUNING FOR PEOPLESOFT APPLICATIONS PERFORMANCE TUNING FOR PEOPLESOFT APPLICATIONS 1.Introduction: It is a widely known fact that 80% of performance problems are a direct result of the to poor performance, such as server configuration, resource

More information

5 Pillars for Oracle WCM Optimization: Supercharged Web Content Management BILLY CRIPE WITH STEVE FAHEY & MARIAH BAILEY FISHBOWL SOLUTIONS, INC.

5 Pillars for Oracle WCM Optimization: Supercharged Web Content Management BILLY CRIPE WITH STEVE FAHEY & MARIAH BAILEY FISHBOWL SOLUTIONS, INC. 5 Pillars for Oracle WCM Optimization: Supercharged Web Content Management BILLY CRIPE WITH STEVE FAHEY & MARIAH BAILEY FISHBOWL SOLUTIONS, INC. i Fishbowl Solutions Notice The information contained in

More information

Response Time Analysis

Response Time Analysis Response Time Analysis A Pragmatic Approach for Tuning and Optimizing Oracle Database Performance By Dean Richards Confio Software, a member of the SolarWinds family 4772 Walnut Street, Suite 100 Boulder,

More information

Application Performance Testing Basics

Application Performance Testing Basics Application Performance Testing Basics ABSTRACT Todays the web is playing a critical role in all the business domains such as entertainment, finance, healthcare etc. It is much important to ensure hassle-free

More information

Tuning Tableau Server for High Performance

Tuning Tableau Server for High Performance Tuning Tableau Server for High Performance I wanna go fast PRESENT ED BY Francois Ajenstat Alan Doerhoefer Daniel Meyer Agenda What are the things that can impact performance? Tips and tricks to improve

More information

Monitoring Databases on VMware

Monitoring Databases on VMware Monitoring Databases on VMware Ensure Optimum Performance with the Correct Metrics By Dean Richards, Manager, Sales Engineering Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 www.confio.com

More information

Enhancing SQL Server Performance

Enhancing SQL Server Performance Enhancing SQL Server Performance Bradley Ball, Jason Strate and Roger Wolter In the ever-evolving data world, improving database performance is a constant challenge for administrators. End user satisfaction

More information

DMS Performance Tuning Guide for SQL Server

DMS Performance Tuning Guide for SQL Server DMS Performance Tuning Guide for SQL Server Rev: February 13, 2014 Sitecore CMS 6.5 DMS Performance Tuning Guide for SQL Server A system administrator's guide to optimizing the performance of Sitecore

More information

White Paper. Java versus Ruby Frameworks in Practice STATE OF THE ART SOFTWARE DEVELOPMENT 1

White Paper. Java versus Ruby Frameworks in Practice STATE OF THE ART SOFTWARE DEVELOPMENT 1 White Paper Java versus Ruby Frameworks in Practice STATE OF THE ART SOFTWARE DEVELOPMENT 1 INTRODUCTION...3 FRAMEWORKS AND LANGUAGES...3 SECURITY AND UPGRADES...4 Major Upgrades...4 Minor Upgrades...5

More information

Magento & Zend Benchmarks Version 1.2, 1.3 (with & without Flat Catalogs)

Magento & Zend Benchmarks Version 1.2, 1.3 (with & without Flat Catalogs) Magento & Zend Benchmarks Version 1.2, 1.3 (with & without Flat Catalogs) 1. Foreword Magento is a PHP/Zend application which intensively uses the CPU. Since version 1.1.6, each new version includes some

More information

Front-End Performance Testing and Optimization

Front-End Performance Testing and Optimization Front-End Performance Testing and Optimization Abstract Today, web user turnaround starts from more than 3 seconds of response time. This demands performance optimization on all application levels. Client

More information

SiteCelerate white paper

SiteCelerate white paper SiteCelerate white paper Arahe Solutions SITECELERATE OVERVIEW As enterprises increases their investment in Web applications, Portal and websites and as usage of these applications increase, performance

More information

Web Application Deployment in the Cloud Using Amazon Web Services From Infancy to Maturity

Web Application Deployment in the Cloud Using Amazon Web Services From Infancy to Maturity P3 InfoTech Solutions Pvt. Ltd http://www.p3infotech.in July 2013 Created by P3 InfoTech Solutions Pvt. Ltd., http://p3infotech.in 1 Web Application Deployment in the Cloud Using Amazon Web Services From

More information

Evaluation of Nagios for Real-time Cloud Virtual Machine Monitoring

Evaluation of Nagios for Real-time Cloud Virtual Machine Monitoring University of Victoria Faculty of Engineering Fall 2009 Work Term Report Evaluation of Nagios for Real-time Cloud Virtual Machine Monitoring Department of Physics University of Victoria Victoria, BC Michael

More information

Performance White Paper

Performance White Paper Sitecore Experience Platform 8.1 Performance White Paper Rev: March 11, 2016 Sitecore Experience Platform 8.1 Performance White Paper Sitecore Experience Platform 8.1 Table of contents Table of contents...

More information

A Talk ForApacheCon Europe 2008

A Talk ForApacheCon Europe 2008 a talk for ApacheCon Europe 2008 by Jeremy Quinn Break My Site practical stress testing and tuning photo credit: Môsieur J This is designed as a beginner s talk. I am the beginner. 1 I will present two

More information

Performance Optimization Guide

Performance Optimization Guide Performance Optimization Guide Publication Date: July 06, 2016 Copyright Metalogix International GmbH, 2001-2016. All Rights Reserved. This software is protected by copyright law and international treaties.

More information

TELECOM FIRM ELIMINATES BOTTLENECKS AND GUARANTEES HIGH AVAILABILITY

TELECOM FIRM ELIMINATES BOTTLENECKS AND GUARANTEES HIGH AVAILABILITY CLIENT INFO AT A GLANCE CASE STUDY TELECOM FIRM ELIMINATES BOTTLENECKS AND GUARANTEES HIGH AVAILABILITY TeamQuest specializes in IT Service Optimization CLIENT INFO AT A GLANCE Company: Business Services

More information

Simple Tips to Improve Drupal Performance: No Coding Required. By Erik Webb, Senior Technical Consultant, Acquia

Simple Tips to Improve Drupal Performance: No Coding Required. By Erik Webb, Senior Technical Consultant, Acquia Simple Tips to Improve Drupal Performance: No Coding Required By Erik Webb, Senior Technical Consultant, Acquia Table of Contents Introduction................................................ 3 Types of

More information

Serving 4 million page requests an hour with Magento Enterprise

Serving 4 million page requests an hour with Magento Enterprise 1 Serving 4 million page requests an hour with Magento Enterprise Introduction In order to better understand Magento Enterprise s capacity to serve the needs of some of our larger clients, Session Digital

More information

Response Time Analysis

Response Time Analysis Response Time Analysis A Pragmatic Approach for Tuning and Optimizing SQL Server Performance By Dean Richards Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 866.CONFIO.1 www.confio.com

More information

Test Run Analysis Interpretation (AI) Made Easy with OpenLoad

Test Run Analysis Interpretation (AI) Made Easy with OpenLoad Test Run Analysis Interpretation (AI) Made Easy with OpenLoad OpenDemand Systems, Inc. Abstract / Executive Summary As Web applications and services become more complex, it becomes increasingly difficult

More information

A Comparison of Oracle Performance on Physical and VMware Servers

A Comparison of Oracle Performance on Physical and VMware Servers A Comparison of Oracle Performance on Physical and VMware Servers By Confio Software Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 303-938-8282 www.confio.com Comparison of Physical and

More information

Conversion Rate Optimisation Guide

Conversion Rate Optimisation Guide Conversion Rate Optimisation Guide Improve the lead generation performance of your website - Conversion Rate Optimisation in a B2B environment Why read this guide? Work out how much revenue CRO could increase

More information

Microsoft Dynamics CRM Campaign Integration - New features

Microsoft Dynamics CRM Campaign Integration - New features Sitecore CMS Modules Microsoft Dynamics CRM Campaign Integration Rev: 2011-03-29 Sitecore CMS Modules Microsoft Dynamics CRM Campaign Integration - New features Table of Contents Chapter 1 Microsoft Dynamics

More information

Analyzing Full-Duplex Networks

Analyzing Full-Duplex Networks Analyzing Full-Duplex Networks There are a number ways to access full-duplex traffic on a network for analysis: SPAN or mirror ports, aggregation TAPs (Test Access Ports), or full-duplex TAPs are the three

More information

Liferay Portal Performance. Benchmark Study of Liferay Portal Enterprise Edition

Liferay Portal Performance. Benchmark Study of Liferay Portal Enterprise Edition Liferay Portal Performance Benchmark Study of Liferay Portal Enterprise Edition Table of Contents Executive Summary... 3 Test Scenarios... 4 Benchmark Configuration and Methodology... 5 Environment Configuration...

More information

WebSphere Performance Monitoring & Tuning For Webtop Version 5.3 on WebSphere 5.1.x

WebSphere Performance Monitoring & Tuning For Webtop Version 5.3 on WebSphere 5.1.x Frequently Asked Questions WebSphere Performance Monitoring & Tuning For Webtop Version 5.3 on WebSphere 5.1.x FAQ Version 1.0 External FAQ1. Q. How do I monitor Webtop performance in WebSphere? 1 Enabling

More information

Throughput Capacity Planning and Application Saturation

Throughput Capacity Planning and Application Saturation Throughput Capacity Planning and Application Saturation Alfred J. Barchi ajb@ajbinc.net http://www.ajbinc.net/ Introduction Applications have a tendency to be used more heavily by users over time, as the

More information

Resource Monitoring During Performance Testing. Experience Report by Johann du Plessis. Introduction. Planning for Monitoring

Resource Monitoring During Performance Testing. Experience Report by Johann du Plessis. Introduction. Planning for Monitoring Resource Monitoring During Performance Testing Experience Report by Johann du Plessis Introduction During a recent review of performance testing projects I completed over the past 8 years, one of the goals

More information

Hands-On Microsoft Windows Server 2008

Hands-On Microsoft Windows Server 2008 Hands-On Microsoft Windows Server 2008 Chapter 9 Server and Network Monitoring Objectives Understand the importance of server monitoring Monitor server services and solve problems with services Use Task

More information

BASICS OF SCALING: LOAD BALANCERS

BASICS OF SCALING: LOAD BALANCERS BASICS OF SCALING: LOAD BALANCERS Lately, I ve been doing a lot of work on systems that require a high degree of scalability to handle large traffic spikes. This has led to a lot of questions from friends

More information

Q: What is the difference between the other load testing tools which enables the wan emulation, location based load testing and Gomez load testing?

Q: What is the difference between the other load testing tools which enables the wan emulation, location based load testing and Gomez load testing? PorposalPPP Q: Gomez is standlone web application testing tool? Gomez provides an on demand platform that you can use for both testing and monitoring your Web applications from the outside in across your

More information

STeP-IN SUMMIT 2014. June 2014 at Bangalore, Hyderabad, Pune - INDIA. Mobile Performance Testing

STeP-IN SUMMIT 2014. June 2014 at Bangalore, Hyderabad, Pune - INDIA. Mobile Performance Testing STeP-IN SUMMIT 2014 11 th International Conference on Software Testing June 2014 at Bangalore, Hyderabad, Pune - INDIA Mobile Performance Testing by Sahadevaiah Kola, Senior Test Lead and Sachin Goyal

More information

MONITORING A WEBCENTER CONTENT DEPLOYMENT WITH ENTERPRISE MANAGER

MONITORING A WEBCENTER CONTENT DEPLOYMENT WITH ENTERPRISE MANAGER MONITORING A WEBCENTER CONTENT DEPLOYMENT WITH ENTERPRISE MANAGER Andrew Bennett, TEAM Informatics, Inc. Why We Monitor During any software implementation there comes a time where a question is raised

More information

SGN Consolidates Cloud Footprint on Dedicated Servers And Saves 60%

SGN Consolidates Cloud Footprint on Dedicated Servers And Saves 60% SGN Consolidates Cloud Footprint on Dedicated Servers And Saves 60% INDUSTRY: MOBILE, SOCIAL AND WEB - BASED GAMES This case study provides a high-level overview of: Challenges SGN endured while using

More information

Performance Test Report KENTICO CMS 5.5. Prepared by Kentico Software in July 2010

Performance Test Report KENTICO CMS 5.5. Prepared by Kentico Software in July 2010 KENTICO CMS 5.5 Prepared by Kentico Software in July 21 1 Table of Contents Disclaimer... 3 Executive Summary... 4 Basic Performance and the Impact of Caching... 4 Database Server Performance... 6 Web

More information

Performance Tuning and Optimizing SQL Databases 2016

Performance Tuning and Optimizing SQL Databases 2016 Performance Tuning and Optimizing SQL Databases 2016 http://www.homnick.com marketing@homnick.com +1.561.988.0567 Boca Raton, Fl USA About this course This four-day instructor-led course provides students

More information

Throwing Hardware at SQL Server Performance problems?

Throwing Hardware at SQL Server Performance problems? Throwing Hardware at SQL Server Performance problems? Think again, there s a better way! Written By: Jason Strate, Pragmatic Works Roger Wolter, Pragmatic Works Bradley Ball, Pragmatic Works Contents Contents

More information

Enterprise Edition Scalability. ecommerce Framework Built to Scale Reading Time: 10 minutes

Enterprise Edition Scalability. ecommerce Framework Built to Scale Reading Time: 10 minutes Enterprise Edition Scalability ecommerce Framework Built to Scale Reading Time: 10 minutes Broadleaf Commerce Scalability About the Broadleaf Commerce Framework Test Methodology Test Results Test 1: High

More information

McAfee Enterprise Mobility Management 12.0. Performance and Scalability Guide

McAfee Enterprise Mobility Management 12.0. Performance and Scalability Guide McAfee Enterprise Mobility Management 12.0 Performance and Scalability Guide Contents Purpose... 1 Executive Summary... 1 Testing Process... 1 Test Scenarios... 2 Scenario 1 Basic Provisioning and Email

More information

Response Time Analysis

Response Time Analysis Response Time Analysis A Pragmatic Approach for Tuning and Optimizing Database Performance By Dean Richards Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 866.CONFIO.1 www.confio.com Introduction

More information

MORE DATA - MORE PROBLEMS

MORE DATA - MORE PROBLEMS July 2014 MORE DATA - MORE PROBLEMS HOW CAN SMBs ADDRESS DATA ISSUES? Data Source In this report, Mint Jutras references data collected from its 2014 Enterprise Solution Study, which investigated goals,

More information

SQL Server Performance Tuning for DBAs

SQL Server Performance Tuning for DBAs ASPE IT Training SQL Server Performance Tuning for DBAs A WHITE PAPER PREPARED FOR ASPE BY TOM CARPENTER www.aspe-it.com toll-free: 877-800-5221 SQL Server Performance Tuning for DBAs DBAs are often tasked

More information

WHITE PAPER WORK PROCESS AND TECHNOLOGIES FOR MAGENTO PERFORMANCE (BASED ON FLIGHT CLUB) June, 2014. Project Background

WHITE PAPER WORK PROCESS AND TECHNOLOGIES FOR MAGENTO PERFORMANCE (BASED ON FLIGHT CLUB) June, 2014. Project Background WHITE PAPER WORK PROCESS AND TECHNOLOGIES FOR MAGENTO PERFORMANCE (BASED ON FLIGHT CLUB) June, 2014 Project Background Flight Club is the world s leading sneaker marketplace specialising in storing, shipping,

More information

Optimizing Your Database Performance the Easy Way

Optimizing Your Database Performance the Easy Way Optimizing Your Database Performance the Easy Way by Diane Beeler, Consulting Product Marketing Manager, BMC Software and Igy Rodriguez, Technical Product Manager, BMC Software Customers and managers of

More information

White paper: Unlocking the potential of load testing to maximise ROI and reduce risk.

White paper: Unlocking the potential of load testing to maximise ROI and reduce risk. White paper: Unlocking the potential of load testing to maximise ROI and reduce risk. Executive Summary Load testing can be used in a range of business scenarios to deliver numerous benefits. At its core,

More information

Performance Tuning Guide for ECM 2.0

Performance Tuning Guide for ECM 2.0 Performance Tuning Guide for ECM 2.0 Rev: 20 December 2012 Sitecore ECM 2.0 Performance Tuning Guide for ECM 2.0 A developer's guide to optimizing the performance of Sitecore ECM The information contained

More information

Tech Tip: Understanding Server Memory Counters

Tech Tip: Understanding Server Memory Counters Tech Tip: Understanding Server Memory Counters Written by Bill Bach, President of Goldstar Software Inc. This tech tip is the second in a series of tips designed to help you understand the way that your

More information

WHAT WE NEED TO START THE PERFORMANCE TESTING?

WHAT WE NEED TO START THE PERFORMANCE TESTING? ABSTRACT Crystal clear requirements before starting an activity are always helpful in achieving the desired goals. Achieving desired results are quite difficult when there is vague or incomplete information

More information

Update logo and logo link on A Master. Update Date and Product on B Master

Update logo and logo link on A Master. Update Date and Product on B Master Cover Be sure to: Update META data Update logo and logo link on A Master Update Date and Product on B Master Web Performance Metrics 101 Contents Preface...3 Response Time...4 DNS Resolution Time... 4

More information

separate the content technology display or delivery technology

separate the content technology display or delivery technology Good Morning. In the mobile development space, discussions are often focused on whose winning the mobile technology wars how Android has the greater share of the mobile market or how Apple is has the greatest

More information

Kentico CMS 6.0 Performance Test Report. Kentico CMS 6.0. Performance Test Report February 2012 ANOTHER SUBTITLE

Kentico CMS 6.0 Performance Test Report. Kentico CMS 6.0. Performance Test Report February 2012 ANOTHER SUBTITLE Kentico CMS 6. Performance Test Report Kentico CMS 6. Performance Test Report February 212 ANOTHER SUBTITLE 1 Kentico CMS 6. Performance Test Report Table of Contents Disclaimer... 3 Executive Summary...

More information

LYONSCG ECOMMERCE ACCELERATOR (LEA) FOR MAGENTO. Discussion of Features

LYONSCG ECOMMERCE ACCELERATOR (LEA) FOR MAGENTO. Discussion of Features LYONSCG ECOMMERCE ACCELERATOR (LEA) FOR MAGENTO Discussion of Features Eric Marsh July 2015 1 AN INNOVATIVE ecommerce SOLUTION The LYONSCG ecommerce Accelerator (LEA) for Magento was developed for small

More information

SharePoint Integration Framework Developers Cookbook

SharePoint Integration Framework Developers Cookbook Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook Rev: 2013-11-28 Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook A Guide

More information

Linode NodeBalancer and Longview allow Dark Sky to keep their systems chugging and fix issues quickly under maximum traffic.

Linode NodeBalancer and Longview allow Dark Sky to keep their systems chugging and fix issues quickly under maximum traffic. Case Study Linode enables Dark Sky founders to spend more time on business functions and less on system administration, as the popular weather-predicting ios app hits 8 million API calls every day. Dark

More information

Sitecore Performance. Technical Deep Dive. Steve Green, Solution Architect sgr@sitecore.net

Sitecore Performance. Technical Deep Dive. Steve Green, Solution Architect sgr@sitecore.net Sitecore Performance Technical Deep Dive Steve Green, Solution Architect sgr@sitecore.net Webinar Agenda Technical Introduction Divide and conquer Starting on a solid footing General improvements Sitecore

More information

SQL Sentry Essentials

SQL Sentry Essentials Master the extensive capabilities of SQL Sentry Overview This virtual instructor-led, three day class for up to 12 students provides the knowledge and skills needed to master the extensive performance

More information

Using Google Analytics for Improving User Experience and Performance

Using Google Analytics for Improving User Experience and Performance ILS 534 Reaction Paper #2 Jennifer B. Gardner Southern CT State University November 13, 2012 1 Introduction This paper discusses the article by Wei Fang, "Using Google Analytics for Improving Library Website

More information

SharePoint 2013 Best Practices

SharePoint 2013 Best Practices SharePoint 2013 Best Practices SharePoint 2013 Best Practices When you work as a consultant or as a SharePoint administrator, there are many things that you need to set up to get the best SharePoint performance.

More information

Identify and control performance and capacity risks. Introduction... 2

Identify and control performance and capacity risks. Introduction... 2 Application performance testing in VMware environments Identify and control performance and capacity risks Table of contents Introduction... 2 Performance and capacity planning techniques... 2 Rough sizing

More information

Using WebLOAD to Monitor Your Production Environment

Using WebLOAD to Monitor Your Production Environment Using WebLOAD to Monitor Your Production Environment Your pre launch performance test scripts can be reused for post launch monitoring to verify application performance. This reuse can save time, money

More information

Siebel & Portal Performance Testing and Tuning GCP - IT Performance Practice

Siebel & Portal Performance Testing and Tuning GCP - IT Performance Practice & Portal Performance Testing and Tuning GCP - IT Performance Practice By Zubair Syed (zubair.syed@tcs.com) April 2014 Copyright 2012 Tata Consultancy Services Limited Overview A large insurance company

More information

HOW IS WEB APPLICATION DEVELOPMENT AND DELIVERY CHANGING?

HOW IS WEB APPLICATION DEVELOPMENT AND DELIVERY CHANGING? WHITE PAPER : WEB PERFORMANCE TESTING Why Load Test at all? The reason we load test is to ensure that people using your web site can successfully access the pages and complete whatever kind of transaction

More information

Windows Server Performance Monitoring

Windows Server Performance Monitoring Spot server problems before they are noticed The system s really slow today! How often have you heard that? Finding the solution isn t so easy. The obvious questions to ask are why is it running slowly

More information

Load Testing. How to Make Sure Your Site is Available When Your Users Want it Most WHITEPAPER

Load Testing. How to Make Sure Your Site is Available When Your Users Want it Most WHITEPAPER Load Testing How to Make Sure Your Site is Available When Your Users Want it Most WHITEPAPER I ntroduction The stories hit the news every year shortly after Black Friday, Cyber Monday and Super Bowl Sunday

More information

#9011 GeoMedia WebMap Performance Analysis and Tuning (a quick guide to improving system performance)

#9011 GeoMedia WebMap Performance Analysis and Tuning (a quick guide to improving system performance) #9011 GeoMedia WebMap Performance Analysis and Tuning (a quick guide to improving system performance) Messina Thursday, 1:30 PM - 2:15 PM Paul F. Deaver, Sr. Consultant Security, Government & Infrastructure

More information

BridgeWays Management Pack for VMware ESX

BridgeWays Management Pack for VMware ESX Bridgeways White Paper: Management Pack for VMware ESX BridgeWays Management Pack for VMware ESX Ensuring smooth virtual operations while maximizing your ROI. Published: July 2009 For the latest information,

More information

Kentico 8 Performance. Kentico 8. Performance June 2014 ELSE. 1 www.kentico.com

Kentico 8 Performance. Kentico 8. Performance June 2014 ELSE. 1 www.kentico.com Kentico 8 Performance June 2014 ELSE 1 www.kentico.com Table of Contents Disclaimer... 3 Executive Summary... 4 Basic Performance and the Impact of Caching... 4 Database Server Separation... 5 Web Farm

More information

OpenLoad - Rapid Performance Optimization Tools & Techniques for CF Developers

OpenLoad - Rapid Performance Optimization Tools & Techniques for CF Developers OpenDemand Systems, Inc. OpenLoad - Rapid Performance Optimization Tools & Techniques for CF Developers Speed Application Development & Improve Performance November 11, 2003 True or False? Exposing common

More information

Building Scalable Applications Using Microsoft Technologies

Building Scalable Applications Using Microsoft Technologies Building Scalable Applications Using Microsoft Technologies Padma Krishnan Senior Manager Introduction CIOs lay great emphasis on application scalability and performance and rightly so. As business grows,

More information

Power Tools for Pivotal Tracker

Power Tools for Pivotal Tracker Power Tools for Pivotal Tracker Pivotal Labs Dezmon Fernandez Victoria Kay Eric Dattore June 16th, 2015 Power Tools for Pivotal Tracker 1 Client Description Pivotal Labs is an agile software development

More information

Developing a Load Testing Strategy

Developing a Load Testing Strategy Developing a Load Testing Strategy Michele Ruel St.George Bank CMGA 2005 Page 1 Overview... 3 What is load testing?... 4 Scalability Test... 4 Sustainability/Soak Test... 4 Comparison Test... 4 Worst Case...

More information

never 20X spike ClustrixDB 2nd Choxi (Formally nomorerack.com) Customer Success Story Reliability and Availability with fast growth in the cloud

never 20X spike ClustrixDB 2nd Choxi (Formally nomorerack.com) Customer Success Story Reliability and Availability with fast growth in the cloud Choxi (Formally nomorerack.com) Reliability and Availability with fast growth in the cloud Customer Success Story 2nd fastest growing e-tailer on Internet Retailer Top 100 600% increase in sales on Cyber

More information

Google Analytics for Robust Website Analytics. Deepika Verma, Depanwita Seal, Atul Pandey

Google Analytics for Robust Website Analytics. Deepika Verma, Depanwita Seal, Atul Pandey 1 Google Analytics for Robust Website Analytics Deepika Verma, Depanwita Seal, Atul Pandey 2 Table of Contents I. INTRODUCTION...3 II. Method for obtaining data for web analysis...3 III. Types of metrics

More information

Simply type the id# in the search mechanism of ACS Skills Online to access the learning assets outlined below.

Simply type the id# in the search mechanism of ACS Skills Online to access the learning assets outlined below. Programming Practices Learning assets Simply type the id# in the search mechanism of ACS Skills Online to access the learning assets outlined below. Titles Debugging: Attach the Visual Studio Debugger

More information

Case Study - I. Industry: Social Networking Website Technology : J2EE AJAX, Spring, MySQL, Weblogic, Windows Server 2008.

Case Study - I. Industry: Social Networking Website Technology : J2EE AJAX, Spring, MySQL, Weblogic, Windows Server 2008. Case Study - I Industry: Social Networking Website Technology : J2EE AJAX, Spring, MySQL, Weblogic, Windows Server 2008 Challenges The scalability of the database servers to execute batch processes under

More information

my forecasted needs. The constraint of asymmetrical processing was offset two ways. The first was by configuring the SAN and all hosts to utilize

my forecasted needs. The constraint of asymmetrical processing was offset two ways. The first was by configuring the SAN and all hosts to utilize 1) Disk performance When factoring in disk performance, one of the larger impacts on a VM is determined by the type of disk you opt to use for your VMs in Hyper-v manager/scvmm such as fixed vs dynamic.

More information

MEASURING WORKLOAD PERFORMANCE IS THE INFRASTRUCTURE A PROBLEM?

MEASURING WORKLOAD PERFORMANCE IS THE INFRASTRUCTURE A PROBLEM? MEASURING WORKLOAD PERFORMANCE IS THE INFRASTRUCTURE A PROBLEM? Ashutosh Shinde Performance Architect ashutosh_shinde@hotmail.com Validating if the workload generated by the load generating tools is applied

More information

Microsoft Dynamics CRM Security Provider Module

Microsoft Dynamics CRM Security Provider Module Microsoft Dynamics CRM Security Provider Module for Sitecore 6.6-8.0 CRM Security Provider Rev: 2015-04-15 Microsoft Dynamics CRM Security Provider Module for Sitecore 6.6-8.0 Developer's Guide A developer's

More information

Terms and Definitions for CMS Administrators, Architects, and Developers

Terms and Definitions for CMS Administrators, Architects, and Developers Sitecore CMS 6 Glossary Rev. 081028 Sitecore CMS 6 Glossary Terms and Definitions for CMS Administrators, Architects, and Developers Table of Contents Chapter 1 Introduction... 3 1.1 Glossary... 4 Page

More information

MAGENTO HOSTING Progressive Server Performance Improvements

MAGENTO HOSTING Progressive Server Performance Improvements MAGENTO HOSTING Progressive Server Performance Improvements Simple Helix, LLC 4092 Memorial Parkway Ste 202 Huntsville, AL 35802 sales@simplehelix.com 1.866.963.0424 www.simplehelix.com 2 Table of Contents

More information

Web Performance, Inc. Testing Services Sample Performance Analysis

Web Performance, Inc. Testing Services Sample Performance Analysis Web Performance, Inc. Testing Services Sample Performance Analysis Overview This document contains two performance analysis reports created for actual web testing clients, and are a good example of the

More information