Posts tagged ‘performance’

Performance bottleneck symptoms

CPU Bottleneck Symptoms:

Symptoms for CPU bottlenecks include the following,
The Processor(_Total)\% Processor Time(measures the total utilization of your processor by all running processes) will be high. If the server typically runs at around 70% or 80% processor utilization then this is normally a good sign and means your machine is handling its load effectively and not underutilized. Average processor utilization of around 20% or 30% on the other hand suggests that your machine is underutilized and may be a good candidate for server consolidation using Virtual Server or VMWare.
Further to breakdown this %processor Time, monitor the counters – Processor(_Total)\% Privileged Time and Processor(_Total)\% User Time, which respectively show processor utilization for kernel- and user-mode processes on your machine. If kernel mode utilization is high, your machine is likely underpowered as it’s too busy handling basic OS housekeeping functions to be able to effectively run other applications. And if user mode utilization is high, it may be you have your server running too many specific roles and you should either beef hardware up by adding another processor or migrate an application or role to another box. The System\Processor Queue Length(indication of how many threads are waiting for execution) consistently greater than 2 or more for a single processor CPU is a clear indication of processor bottleneck . Also look at other counters like ASP\Requests Queued or ASP.NET\Requests Queued as well.

Tips to find out Application server bottlenecks:

  1. A high increase in application server processing time when the load is increased.
  2. One or more page components take more time when the same request db call is taking less execution time.
  3. The Static files are having less response time whereas the dynamic contents (servlets, jsp, etc) take more time.
  4. Network delay is negligible.
  5. Home Page gets displayed in few seconds even during the stress period(as it is fetched from the web server).
  6. Hits/sec & Throughput remains less.
  7. If the CPU/ Memory/Disk of the App server has any bottleneck symptoms.
  8. If the HTTP / HTTPS connections established doesn’t increase proportionally with the load.
  9. If the new connections established is very higher & the reused connections are very less.

Tips to find out Web server bottlenecks:

  1. Increased ‘Server Time’ breakup
  2. One or more page components of transaction takes more time where in the DB query is having less execution time.
  3. The static files are having high response time than the dynamic contents (servlets, jsp, etc)
  4. Network delay is negligible.
  5. Home Page takes more time for display.
  6. Hits/sec in the web server is very less.
  7. If the CPU/ Memory/Disk of the web server has any bottleneck symptoms.

Hardware Malfunctioning Symptoms:

  1. System\Context Switches/sec (measures how frequently the processor has to switch from user- to kernel-mode to handle a request from a thread running in user mode). If this counter suddenly starts increasing however, it may be an indicating of a malfunctioning device, especially if you are seeing a similar jump in the Processor(_Total)\Interrupts/sec counter on your machine.
  2. You may also want to check Processor(_Total)\% Privileged Time Counter and see if this counter shows a similar unexplained increase, as this may indicate problems with a device driver that is causing an additional hit on kernel mode processor utilization.
  3. If Processor(_Total)\Interrupts/sec does not correlate well with System\Context Switches/sec however, your sudden jump in context switches may instead mean that your application is hitting its scalability limit on your particular machine and you may need to scale out your application (for example by clustering) or possibly redesign how it handles user mode requests. In any case, it’s a good idea to monitor System\Context Switches/sec over a period of time to establish a baseline for this counter, and once you’ve done this then create a perfmon alert that will trigger when this counter deviates significantly from its observed mean value.

Memory Bottleneck Symptoms:

When it comes to the System memory, there are 3 things to monitor:

  1. Monitor Cache (Hits/Misses),
  2. Monitor Memory (Memory Available/sec, Process/Working Set),
  3. Monitor Paging (Pages Read/Sec, Pages Input/Sec, Page Faults/Sec, % Disk Processing)Memory\Available Bytes,

If this counter is greater than 10% of the actual RAM in your machine then you probably have more than enough RAM and don’t need to worry. The Memory\Pages/sec counter indicates the number of paging operations to disk during the measuring interval, and this is the primary counter to watch for indication of possible insufficient RAM to meet your server’s needs. You can monitor Process(instance)\Working Set for each process instance to determine which process is consuming larger and larger amounts of RAM. Process(instance)\Working Set measures the size of the working set for each process, which indicates the number of allocated pages the process can address without generating a page fault. A related counter is Memory\Cache Bytes, which measures the working set for the system i.e. the number of allocated pages kernel threads can address without generating a page fault. Finally, another corroborating indicator of insufficient RAM is Memory\Transition Faults/sec, which measures how often recently trimmed page on the standby list are re-referenced. If this counter slowly starts to rise over time then it could also indicating you’re reaching a point where you no longer have enough RAM for your server to function well.

Disk Bottleneck Symptoms:

A bottleneck from a disk can significantly impact response time for applications running on your system. Physical Disk (instance)\Disk Transfers/sec counter for each physical disk and if it goes above 25 disk I/Os per second then you’ve got poor response time for your disk. By tracking Physical Disk(instance)\% Idle Time, which measures the percent time that your hard disk is idle during the measurement interval, and if you see this counter fall below 20% then you’ve likely got read/write requests queuing up for your disk which is unable to service these requests in a timely fashion. In this case it’s time to upgrade your hardware to use faster disks or scale out your application to better handle the load. Look for the Physical Disk (instance)\Average Disk Queue length & Physical Disk (instance)\Current Disk Queue length parameters to get more details on the queued up requests.

Network Performance/Bottlenecks:

The first step in monitoring is to monitor the network performance, to make sure your network performance is good. There are some simple ways to do so. First monitor whether you are getting the same bandwidth which you are supposed to get. The easiest way to find out is to check the current bandwidth counter with your expected bandwidth. Also verify the rate at which the server sends and receives the data. Network performance depends on 2 factors, network cards and interfaces (Switches/Routers) configured on the servers.

Here are some of the counters to find network bottlenecks:

Network Interface: Current Bandwidth
This counter determines your current bandwidth of the network interface. Capture this counter value and correlate with bytes receives/sec, bytes send/sec and bytes total/sec.
If the bytes total should be at least half of your total bandwidth .If not so then we can confirm a network bottle neck

Network Interface: Bytes Total/sec:
To determine if your network connection is creating a bottleneck, compare the Network Interface: Bytes Total/sec counter to the total bandwidth of your network adapter card. To allow headroom for spikes in traffic, you should usually be using no more than 50 percent of capacity. If this number is very close to the capacity of the connection, and processor and memory use are moderate, then the connection may well be a problem. To determine the network utilization (throughput on a server’s network cards), you can check the following counters:

  1. Network\Bytes Received/sec
  2. Network\Bytes Sent/sec
  3. Network\Bytes Total/sec
  4. Network Current Bandwidth

If the total byte per second value is more than 50 percent of the total network utilization under average user/work load, then your server is having some problems under peak load conditions. Make sure you compare network counter values with Physical Disk\% Disk Time and Processor\% Processor Time utilization. If the disk time and processor time values are low but the network values are very high, there might be a problem with your network.
There are 2 ways to solve this problem:

  1. By optimizing the network card settings
  2. By adding an additional network card.

Monitoring PMI data with Tivoli Performance Viewer

Recently I got opportunity to use Tivoli Performance Viewer (TPV) for monitoring application server counters of Java base web application which was deployed on Websphere Application Server. Below are the guidelines for how to use TPV to view Performance Monitoring Infrastructure (PMI) data in chart or table form.

Basic:

TPV monitors the performance activity of all servers on a node.  Before monitoring one should confirm that one or more servers have been created and are running on the node, and that PMI is enabled.
You view performance modules when your server is experiencing performance problems. For example, a common performance problem occurs when individual sessions are too large. To help view data on a session, you can view the Servlet Session Manager PMI module and monitor the SessionObjectSize counter to make sure that Session Object Size is not too large.
Performance modules are shown in the TPV current activity settings in the administrative console.

Procedure:

  • Select PMI data to view.
    1. Click Monitoring and Tuning > Performance Viewer > Current Activity > server_name > Performance Modules (PM) in the console navigation tree.
    2. Place a check mark in the check box beside the name of each performance module that you want to view.
    3. Click on View Modules. A chart or table providing the requested data is displayed on the right side of the page. Charts are displayed by default.

If you do not see all the PMI counters you expect, or a PM you are interested in is visible but cannot be selected, PMI is not enabled for that particular counter or for any counter in that PM. Go to the PMI control area of the administrative console and enable PMI for any counters you wish to view, then return to TPV and select those PMs. To view the PMI page, click on Monitoring and Tuning > Performance Monitoring Infrastructure > server_name.

Some of the important counters you should monitor are given below:

Category Counter Description
JDBC Connection Pools CreateCount The total number of connections that are created
CloseCount The total number of connections that are closed
PoolSize The size of the connection pool.
FreePoolSize The number of free connections in the pool.
WaitingThreadCount The average number of threads that are concurrently waiting for connection.
JVM Runtime HeapSize The Total memory (KiloBytes) in Java Virtual Machine Runtime
UsedMemory The amount of Used Memory (KiloBytes) in Java Virtual Machine Runtime
Thread Pools Pool Size Average number of thread in pool
Object Request Broker Average number of thread in pool
Message Listener Average number of thread in pool
WebContainer Average number of thread in pool

Each module has several counters associated with it. These counters are displayed in a table underneath the data chart or table. Selected counters are displayed in the chart or table. You can add or remove counters from the chart or table by selecting or deselecting individual counters. By default, the first three counters for each module are shown.
You can select up to 20 counters and display them in the TPV in the Current Activity mode. The data from all the PMI counters that are currently enabled in each PM for all active instances of the PM can be recorded and captured in a TPV log file. You can view the TPV log file for a particular time period multiple times, selecting different combinations of up to 20 counters each time. You have the flexibility to observe the relationships among different performance data in a server during a particular period of time.

    1. Optional: To remove a module from a chart or table, deselect the check box next to the module and click View Modules again.
    2. Optional: To view the data in a table, click View Table on the counter selection table. To toggle back to a chart, click View Graph.
    3. Optional: To view the legend for a chart, click Show Legend. To hide the legend, click Hide Legend.
  • Scale the PMI data. You can manually adjust the scale for each counter so that the graph displays meaningful comparisons of different counters.
    1. Find the counter whose scale you want to modify in the table beneath the chart.
    2. Change the value for Scale as needed.
    3. Click Update.
  • Clear values from tables and charts.
    1. Ensure that one or more modules are selected under Performance Modules in the TPV navigation tree
    2. Click Clear Buffer beneath the chart or table. The PMI data is removed from a table or chart.
  • Reset counters to zero (0).
    1. Ensure that one or more modules are selected under Performance Modules in the TPV navigation tree
    2. Click Reset to Zero beneath the chart or table. Reset to Zero sets a new baseline using the current counter readings at the instant the button is clicked. Future data points are plotted on the graph relative to their position at the time Reset to Zero is clicked.

Writing Performance Test Plan

Below is the outline of the Performance Test Plan:

1. Document Information

  • About this Document
  • Document Approvals

2. Application Information

  • Application Name
  • Application Description
  • Application Platform/Runtime Environment
  • Application Flow
  • Application/System Technologies Employed

3. Key Business Function Definition

  • Key Business Functions
  • Performance Center Transaction Mapping
  • Key Business Function

4. Performance Test Workload Model

  • User-Based Workload Model
  • Business Function-Based Workload Model

5. Test Scenarios

  • Test Scenario Scope

6. Test User Profiles and Ids

  • Test User Profiles
  • Test Id and Entitlements Provisioning

7. Test Data

  • Test Data Requirements
  • Test Data Assumptions and Risks

8. Timeline

  • Testing Timeline

Appendix: Definitions

Appendix: Terms / Acronyms / Abbreviations