The presentation describes a load testing project chronologically. The scope of the project was to test task management software for performance.
|
|
|
- Hilary Hicks
- 10 years ago
- Views:
Transcription
1 The presentation describes a load testing project chronologically. The scope of the project was to test task management software for performance. It was a new, multi-tier Java application using AJAX technologies and working in close collaboration with other products. The project posed multiple challenges far beyond simple record-and-playback. While details are specific for the project, the challenges and solutions are somewhat typical for complex modern systems. The presentation concentrates on load testing methodology including system setup, scripting, test planning, and test execution. 1
2 First the product and test setup would be discussed to provide enough context. Then scripting challenges would be discussed, and in the end the tests planned and executed. While multiple performance-related issues were found during the testing (as it is usual for a brand new product), they are not discussed here because they are not particularlyrelevant to the discussed load testing process. 2
3 The presentation describes a load testing project chronologically. The scope of the project was to test business task management software for performance. It was a new, multi-tier Java application using Asynchronous JavaScript and XML (AJAX) technologies and working in close collaboration with other products. The name and specific functionality of the product are not really important to the story. Whatever information about the product is mentioned, it is mentioned only to set up a meaningful context for describing the project. The project posed multiple challenges far beyond simple record-andplayback. While details are specific for the project, the challenges and solutions are somewhat typical for modern complex systems. The presentation concentrates on load testing methodology including system setup, scripting, test planning, and test execution. I want to state explicitly that the views expressed here are my personal views only and do not necessarily represent those of my current or previous employers. All brands and trademarks mentioned are the property of their owners. 3
4 Tasks A task is a unit of action, for example, data entry or data processing. Users define the tasks that comprise a process. Users can, for example, read task instructions, submit, reassign, approve, or reject tasks. Tasks may be in different states like pending, open, or closed and are changing states during their life cycle. Tasks maybe manual or automated. Templates A template is a set of tasks that are repeatable over periods (for example, monthly or quarterly). Tasks inside templates are described relatively to the start time. Schedules A schedule defines the chronologically ordered set of tasks that must be executed for a specific period. If created from a template, it translates template's relative days to actual calendar dates. Schedules may be in different states like pending, open, or closed and are changing states during their life cycle. Dashboard The Dashboard view presents a portal-style interface with views into schedules and high-level summaries into which you can drill down for greater detail. 4
5 First, task types required for a process are set to ensure consistency across tasks and to leverage predefined product integrations. Then a set of tasks required for a process and repeatable over periods is saved as a template to use for future periods. After a template is created, it can be used as a source for generating a schedule (a chronological set of tasks), to be run in a period. The generic tasks in the template are applied to actual calendar dates. During the process, users receive notifications of assigned tasks, and can click links in the for direct access to assigned tasks. Alternatively, users can log on to review and access assigned tasks in different types of views, for example, the Dashboard, a portal-style interface; or Calendar, Gantt, or Task List views. When users complete tasks, the tasks are sent (submitted) to approvers and can be viewed by other users. 5
6 In this particular case data are tasks grouped in schedules and templates. The product is a new Commercial Off-the-Shelf (COTS) system, no data were available except small data sets used by developers and functional testers. Usage may vary drastically between clients. Data may be entered through the User Interface (UI) or templates may be imported from a CSV file. The latter way looks preferable for generation of large sets of data. 6
7 A Perl script was used to generate data in form of a CSV file to be imported as a template. The number of users, tasks, and task names were parameters (variables set in the beginning of the Perl script). The data have medium data complexity and are well-structured to simplify scripting. They are realistic in a way: the structure is based on speculations on what would be typical usage. Every user has 5 tasks assigned and each next task of these 5 is dependent on the previous. So the CSV file looks like: TaskID,Parent,Predecessor1,PredType1,Predecessor2,PredType2,TaskNam e,description,instruction,tasktype,priority,owner,assignee,approver1,appro ver2,starttime,startdate,endtime,enddate 1,,,,,,task 1,task 1,Read manual,metadata Load: Classic,Medium,admin,user0001,,,,-12,,-8 2,,,,,,task 2,task 2,Read manual,metadata Load: Classic,Medium,admin,user0002,,,,-12,,-8 21,,1,Finish to Start,,,task 21,task 21,Read manual,data Load: FDM,Medium,admin,user0001,,,,-7,,-3 7
8 The system under investigation is a multi-tier Java EE (Enterprise Edition) application. The first tier is a thin client (Browser), replaced by a load generation tool. HP LoadRunner was used in this project to generate load (any sophisticated enough load generation tool maybe used). The second tier is the Java EE application itself deployed on WebLogic Application Server. Most tests were done with one application server, but when cluster is explicitly mentioned, two identical servers were used as application servers and load was balanced between them. The third tier is the database tier. Oracle Database (DB) was used in the project. The product is tightly integrated with other products: Foundation Services, Service-Oriented Architecture (SOA) Suite, and many other products it integrates with (to execute tasks). 8
9 Software was installed, configured, and verified on five physical four-way servers. Main tuning parameters were checked and increased if necessary to support the target number of users (for example, JVM heap size -Xmx). Hundreds of users were created in the system and got provisioned with necessary access rights. Data were entered (like task types and periods) and loaded from the generated CSV files. 9
10 Monitoring was done by LoadRunner collecting all metrics in one place. LoadRunner uses standard Windows counters, same as PerfMon. All machines including LoadGenerator were monitored for system metrics: CPU, memory, I/O, disk. Also all processes comprising the tested product were monitored too, mainlyfor CPU and memorycounters. 10
11 HP LoadRunner was used for load generation, so LoadRunner pseudo-code examples and terminology is used throughout the presentation. The application uses the HTTP protocol to communicate between client (Browser) and server. Other advanced load generation tools could be used too (supporting correlation, parameterization, and adding code to the script), although syntax / terminology would be different. When something is LoadRunner-specific, it would be noted. 11
12 12
13 As far as it is a brand new product, the first thing would be to verify if recording / playback approach could be used and how difficult would be scripting. Three scripting iteration were planned. The reason was to deliver first results as soon as possible. In the beginning, we create a script for opening schedule / tasks by the same user. This is the simplest case, no change in the system state, no parameterization. When this script would be done and verified, we can parameterize it to open schedule / tasks by different users. When this will be done and verified, we can do special cases like committing tasks, which change the status, so can be done onlyonce. 13
14 The traditional approach to load generation was used. The load testing tool recorded the HTTP communication between client and server. The recorded script was then correlated (some values in the script were replaced by values received from the server during playback) and parameterized (some values were replaced by parameters to make sure, for example, that different user names and tasks are used). The load testing tool generates workload creating multiple virtual users (sessions) and playing back the script. A initial script was recorded. Some correlation, like SSO Token, belongs to Foundation Services, so was known from previous experience. Some other correlation was relatively straightforward from the script analysis, for items in the script like: _afrloop= _adf.ctrl-state= ViewState value= 14
15 It is challenging to verify that scripts really work as expected. The script may not work properly, but no errors would be reported. Considering the difficulties, it is suggested to use several ways to verify tests together. Check the System State In our case, each user keeps the last state: what view and schedule is opened. If the script switches between views or opens schedules or templates, it is possible to login manually and verify that the system state was really changed. Some actions, like submit tasks, change the state of the task (from open to closed). It may be ve rified after the test. If something was created / edited, it also may be verified manually. Logs Compare the logs for a script run with the log for the manual execution of the same steps. If there is any difference, it may be a concern. There are some warnings / errors even for the manual execution of the same steps, so it is important to compare both logs. Text Checks Usually checking for some text (with web_reg_find in LoadRunner) is a good way to verify getting of expected result from the server. There is a setting in recording options that even create such checks automatically however almost no such checks were generated for the product. Looks like this approach may be not ve ry effective for the product (as fa r as it uses AJAX and returns only subsets of information). Global Verification The following global verification statement allows catching many errors and is very effective for the product: web_global_verification("text=error status", "Fail=Found,"ID=errorStatus", LAST); The other global verification statement may catch some other errors. 15
16 In our case each user keeps his state:view / schedule used last. There were no LoadRunner errors, nor clear errors in the product logs (although there were few difficult to interpret warnings in addition to warnings generated during manual work). Still the script didn t change the state of the system. For example, the script was supposed to open schedule2. User1 has schedule1 opened. After the script was run, we log in as user1 - and still see schedule1 (if the script worked, it should be schedule2). So the script didn t work and it should be something else there to correlate. 16
17 Trying to figure out why scripts don t work (before it was found that headers are necessary) we paid attention to unique field in some HTTP requests which was not coming from the server (so can t be correlated): web_url("fccdashboard.jspx_2", "URL= ge/fccdashboard.jspx?_adf.ctrl-state={par_ctrlstate25}&adf-rich- Message=true&unique= &oracle.adf.view.rich.STREAM=rgn bi:0:cnp0:table&javax.faces.viewstate={par_viewstate35}&oracle.adf.vie w.rich.forcehtml=true", "Mode=HTML", LAST); 17
18 We found it in a JavaScript returned by the server: x1248+='&unique='; x1248+= new Date().getTime(); So it is the current time (in ms since 1970), generated by JavaScript on the client side. Then it was easy to write a function to do it in the script: typedef long time_t; struct _timeb { time_t time; unsigned short millitm; short timezone; short dstflag; }; struct _timeb t; void utime(){ ftime( &t ); lr_param_sprintf("par_time", "%ld%u", t.time, t.millitm);} _tzset(); // Sets variables used by ftime And the call utime() before each request with unique to get the current system time: utime(); web_url("fccdashboard.jspx_2", "URL= Message=true&unique={par_Time}&oracle.adf.view.rich.STREAM=rgntrn:0:panReg:0:hv1,rgntrn:0:ttReg:0:tTypesL&javax.faces.Vi ewstate={par_viewstate23}&oracle.adf.view.rich.forcehtml=true", However no difference was found in the behavior with and without parameterization of unique (the problem was headers, not unique ), so it left the question if it is needed opened. No feedback from development. 18
19 In further comparison of manual execution (the LoadRunner recording log) and script playback it was found that not all headers are sent during playback. It turned out that some headers are important and the script doesn t w ork w ithout them. These required headers are not recorded by LoadRunner by default, LoadRunner recording options should be modified to record them. web_add_header("ora_epm_ctg", "{token_14_url}"); //required for authentication //required to work properly, although no errors without them web_add_auto_header("cache-control,"no-cache"); web_add_auto_header("adf-rich-message, "true"); web_add_header("adf-ads-page-id", "1"); It looks like a LoadRunner-specific feature. At least some other products don t discriminate any part of the header and record everything as is (for example, Oracle Load Testing - part of Oracle Application Testing Suite, former Empirix). Recording these headers solves the problem: the script started to w ork as expected, changing the status of the systems as requested. 19
20 So we have a script working for the same user/tasks. Other users don t see these tasks, so for other users this script doesn t work (when they try to access tasks they don t have access to, a access violation exception is generated). User parameterization is straightforward (just parameterize user s name). The question is how we can parameterize tasks. 20
21 Analyzing HTTP request related to opening tasks we found two parameters that looked like they may be related to a specific task: providerid and activityid. If we opened another task, activityid was different. web_custom_request("fccdashboard.jspx_20", "URL= e/xdashboard.jspx?_adf.ctrl-state={par_ctrlstate25}", "Method=POST", "Body=cbBItipNoShow=t&org.apache.myfaces.trinidad.faces.F ORM=f1&javax.faces.ViewState={par_ViewState35}&oracle.adf.view.rich.DE LTAS={d1={inlineStyle=cursor:default;}}&event=rgntrn:1:mnPnl:0:cal&event.r gntrn:1:mnpnl:0:cal=<m xmlns=%22http:%2f%2foracle.com%2frichclient%2fcomm%22><k v=%22providerid%22><s> <%2fs><%2fk><k v=%22activityid%22><s> <%2fs><%2fk><k v=%22keystroke%22%2f><k v=%22clickcount%22><n>1<%2fn><%2fk><k v=%22button%22><s>left<%2fs><%2fk><k v=%22triggertype%22" "><s>mouse<%2fs><%2fk><k v=%22type%22><s>calendaractivity<%2fs><%2fk><%2fm>&oracle.adf.vi ew.rich.process=rgntrn:1:mnpnl:0:cal", LAST); 21
22 It turned out that activityid is TASK_ID and can be found in the X_TASKS table. It was not recognized by developers (due to using of a different name?) and was found by blind looking in whatever places it could be in luckily the table structure and naming were pretty simple and we had full access to the database. providerid is the schedule id here and is the same if we work with the same schedule. Can be found as DEPLOYMENT_ID in the X_DEPLOYMENTS table. 22
23 Initially it looked like TASK_ID are sequential for a specific schedule. So if TASK_ID for task 1 is , TASK_ID for task 2 would be , etc. Then it is easy to calculate if we know TASK_ID for task 1, user number, and task number (keeping in mind the data structure): unum = atoi(lr_eval_string("{par_usernum}")); tnum = atol(lr_eval_string("{par_task1}")) + (unum-1)*2 + (atoi(lr_eval_string("{par_tasknum}"))-1)*40; Unfortunatelyit wasn t the case for larger schedules 23
24 Unfortunately no pattern w as found for large schedules. So a Perl script w as created to prepare a LoadRunner parameter file. First, ids w ere extracted from the database. In the X_TASKS table there are fields TASK_ID (activityid in the request) and SOURCE_ID (provider Id in the request). So TASK_NA ME and TASK_ID may be selected for the specific SOURCE_ID (w hich may be found as DEPLOYMENT_ID in the X_DEPLOYMENTS table using DEPLOY MENT_NA ME). So TASK_ID and TASK_NA ME for specific SOURCE_ID w ere exported into a file. The Perl script converted the file into the form used by LoadRunner (know ing the data structure): usernum, Task1, Task2, Task3, Task4, Task5 user0001, , , , , user0002, , , , , Works fine here may not w orkw ith other data structures. 24
25 Parametrization would be different for other actions. For example, for opening a schedule we see the following in the HTTP requestbody: Body=cbBItipNoShow=t&org.apache.myfaces.trinidad.faces.FORM=f1&jav ax.faces.viewstate={par_viewstate35}&oracle.adf.view.rich.deltas={d 1={inlineStyle=cursor:default;},MDepReg:1:MDepPnl:depTable={rows=3, scrolltoprowkey p=0,selectedrowkeys=1}}&event= So parameterization requires the number of the schedule in the Manage Schedule dialog. The first schedule has selectedrowkeys=0, the second 1, the third 2, etc. 25
26 The main difference for submit task is that it is not reversible. When you submit a task, it change the status from opened to closed. So it can be done only once for a specific task. You need to parameterize the script before trying it. And it involves another component: SOA Suite. So it was considered as a separate scripting test. However, it turned out that there was no parameterization specific there. Same providerid and activityid. 26
27 Another interesting question: during a load testing project you need to decide on how much time you need to spent polishing the script. Do you need to make it re-usable in anyway? In this particular case it turned out that it should be minimum of polishing for the current task on hands. Each new build required re-scripting, most logic depended on data structure. So trying to make it re-usable / making more generic logic will be wasting of very limited time here. It may be different in other cases 27
28 28
29 In most tests we used one script including many user actions (like login, open the application, switch views, opening a schedule, opening a task, submitting a task, refresh, show dashboards, filtering information, etc.). It was mainly dictated by efficiency (need to re-script for each build, about the same amount of efforts required for parameterization of a small script as for parameterization of a large script). It may be changed later if we want to test a different mix of actions. In some cases a auxiliary script was created to eliminate irregularities (such as first usage pop-up messages). A serious issue is that Submit task is not reversible, but is a very important piece of functionality affecting another component, SOA Suite, responsible for all real-time scheduling. Open task doesn t touch SOA Suite. And we have limited number of task to submit. Usuallywe run three kinds of tests in our group: -Response times (concurrency) tests -Scalabilitytests -Uptime tests. This was the way it was when I came to the group, so I am not sure who should be credited for the approach. But the more I think about it, the more sense it makes (at least for a group responsible for testing new software builds required to provide maximum information for the limited amount of time and working closelywith development to fix the issues). 29
30 The concurrency test is designed to test an e xtended list of functionality and overcome a known issue: low probability of concurrent execution of the same transactions in a realistic mix when you have a lot of different short transactions. To address this issue the concurrency test (also known as response time test) was introduced: when all users do the same transaction in the same moment(rendezvous points in LoadRunner). I haven t seen mentioning of this test in this context, but it make perfect sense and address one of very serious issues in load testing: limited functionality coverage. Concurrency tests are not realistic, but allow to test a lot of functionality and find if any specific transaction doesn t scale or doesn t behave. 30
31 Scalability test is a realistic test for different levels of load. It includes a realistic mix of transactions, staggered users, and adding groups of users after a period of time. The main condition is that the test reach the steady state on each level of load otherwise results would be misleading. Combining several levels of loads in a single test speed up the testing and may make trends more visible, but it also may make analysis and troubleshooting more complex. The results of the scalability test are good for sizing and capacity planning. For example, a group of 50 users may be added each 30 minutes while response times are below 20 seconds. 31
32 Uptime test includes running a moderate number of users with a realistic mix of transactions for a long time (usually from several hours to several weeks depending on the situation). Also known as soak, longevity, or endurance test. It is checking for memory / other resource leaks as well as other issues related with longevity like overgrown logs or tables, etc. It is vital for software that supposed to work a long time without re-start. 32
33 We ran these three kinds of tests, which were straightforward without submitting tasks. We ran limited concurrency tests for submit, pointing the script to the tasks in the open state before each run. We don t have enough tasks to run scalability or uptime tests, which was a clear limitation of the tests run. 33
34 Several issues were found during the testing. They are beyond the scope of the presentation because not particularly relevant to the main topic. However it is worth time to mention that each issue required close work with development including creation of special scripts, running them against development (instrumented) environments, etc. After initial scripting approach was developed, the issue were the main time drains / reasons for schedule slipping. Still it is the very reason for performance testing and the main its achievement is that the final product was shipped without these issues, not the number of tests ran or adherence to the original schedule. 34
35 Due to the complexity of the setup it is difficult to restore the system state. During the tests, we replaced the schedule manually with a new one when run out of opened task. It is not a completely clean approach and requires to re-create the parameter file. The ideal case would be to restore the system back to exactly the same state. However it is very difficult due to complexity of the setup. Database backup may not work. Ma ybe creating disk images and restoring them may work. It may require a pretty complex approach, like creating schedules on the fly and getting parameters from the database tables. Unfortunately it was out of the question for the available timeframe. 35
36 Data definitely impact the system performance. It was an educated guess first, then confirmed by tests. The most important data metrics were the size of schedules (the number of tasks) and the number of schedules / templates. Other data metrics (like task types, dependences, related info) may impact performance too. 36
37 Multiple tests were run to find out data impact, many of them were singleuser manual tests. The largest schedule we can create. The number of schedules we can have. As well as standard LoadRunner tests with different task types, different schedule size, different number of schedules to figure out their impact on response times and resource utilization. 37
38 Only configuration test ran was for a cluster configuration (two application instances on the different servers). Many more configuration tests are planned, including using Linux instead of Windows, Microsoft SQL Server instead of Oracle Database, etc. 38
39 The simple record and playback approach works in very simple cases. In most cases manymore activities are involved, including (but not limited): System setup (including data generation, monitoring, etc.) Complexcorrelation / parameterization / verification Figuring outwhattests make sense Troubleshooting and tuning (mainlyleft outside of this presentation). Load testing is usually an iterative process, where most information is not available at the beginning. 39
40 References [LoadRunner] HP LoadRunner documentation. [Mol yneaux09] Molyneaux I. The Art of Application Performance Testing. O Reilly, [Performance07] Meier J.D., Farre C., Bansode P., Barber S., Rea D. Performance Testing Guidance for Web Applications, [Podelko08] Podelko A. Agile Performance Testing, CMG, [Podelko06] Podelko A. Load Testing: Points to Ponder, CMG,
What Is Specific in Load Testing?
What Is Specific in Load Testing? Testing of multi-user applications under realistic and stress loads is really the only way to ensure appropriate performance and reliability in production. Load testing
The Association of System Performance Professionals
The Association of System Performance Professionals The Computer Measurement Group, commonly called CMG, is a not for profit, worldwide organization of data processing professionals committed to the measurement
A Performance Engineering Story
CMG'09 A Performance Engineering Story with Database Monitoring Alexander Podelko [email protected] 1 Abstract: This presentation describes a performance engineering project in chronological order. The
PERFORMANCE TESTING. New Batches Info. We are ready to serve Latest Testing Trends, Are you ready to learn.?? START DATE : TIMINGS : DURATION :
PERFORMANCE TESTING We are ready to serve Latest Testing Trends, Are you ready to learn.?? New Batches Info START DATE : TIMINGS : DURATION : TYPE OF BATCH : FEE : FACULTY NAME : LAB TIMINGS : Performance
Performance Testing of Java Enterprise Systems
Performance Testing of Java Enterprise Systems Katerina Antonova, Plamen Koychev Musala Soft Why Performance Testing? Recent studies by leading USA consultancy companies showed that over 80% of large corporations
An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide
Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide An Oracle White Paper July 2011 1 Disclaimer The following is intended to outline our general product direction.
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
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
Load Testing Hyperion Applications Using Oracle Load Testing 9.1
Oracle White Paper Load Testing Hyperion System 9 HFM An Oracle White Paper May 2010 Load Testing Hyperion Applications Using Oracle Load Testing 9.1 Oracle White Paper Load Testing Hyperion System 9 HFM
Load and Performance Load Testing. RadView Software October 2015 www.radview.com
Load and Performance Load Testing RadView Software October 2015 www.radview.com Contents Introduction... 3 Key Components and Architecture... 4 Creating Load Tests... 5 Mobile Load Testing... 9 Test Execution...
Veeam ONE What s New in v9?
Veeam ONE What s New in v9? Veeam ONE is a powerful monitoring, reporting and capacity planning tool for the Veeam backup infrastructure, VMware vsphere and Microsoft Hyper-V. It helps enable Availability
SysPatrol - Server Security Monitor
SysPatrol Server Security Monitor User Manual Version 2.2 Sep 2013 www.flexense.com www.syspatrol.com 1 Product Overview SysPatrol is a server security monitoring solution allowing one to monitor one or
http://support.oracle.com/
Oracle Primavera Contract Management 14.0 Sizing Guide October 2012 Legal Notices Oracle Primavera Oracle Primavera Contract Management 14.0 Sizing Guide Copyright 1997, 2012, Oracle and/or its affiliates.
Contents Introduction... 5 Deployment Considerations... 9 Deployment Architectures... 11
Oracle Primavera Contract Management 14.1 Sizing Guide July 2014 Contents Introduction... 5 Contract Management Database Server... 5 Requirements of the Contract Management Web and Application Servers...
Bringing Value to the Organization with Performance Testing
Bringing Value to the Organization with Performance Testing Michael Lawler NueVista Group 1 Today s Agenda Explore the benefits of a properly performed performance test Understand the basic elements of
Migrating to vcloud Automation Center 6.1
Migrating to vcloud Automation Center 6.1 vcloud Automation Center 6.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a
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
PTC System Monitor Solution Training
PTC System Monitor Solution Training Patrick Kulenkamp June 2012 Agenda What is PTC System Monitor (PSM)? How does it work? Terminology PSM Configuration The PTC Integrity Implementation Drilling Down
Table of contents. Performance testing in Agile environments. Deliver quality software in less time. Business white paper
Performance testing in Agile environments Deliver quality software in less time Business white paper Table of contents Executive summary... 2 Why Agile? And, why now?... 2 Incorporating performance testing
Spectrum Technology Platform. Version 9.0. Spectrum Spatial Administration Guide
Spectrum Technology Platform Version 9.0 Spectrum Spatial Administration Guide Contents Chapter 1: Introduction...7 Welcome and Overview...8 Chapter 2: Configuring Your System...9 Changing the Default
HP OO 10.X - SiteScope Monitoring Templates
HP OO Community Guides HP OO 10.X - SiteScope Monitoring Templates As with any application continuous automated monitoring is key. Monitoring is important in order to quickly identify potential issues,
Mohammed Khan SUMMARY
Mohammed Khan E-mail: [email protected] Phone: 347-878-1170 SUMMARY Over 5 years of diversified experience as a. Experience includes requirement analysis, manual testing and automation and quality
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
How To Install An Aneka Cloud On A Windows 7 Computer (For Free)
MANJRASOFT PTY LTD Aneka 3.0 Manjrasoft 5/13/2013 This document describes in detail the steps involved in installing and configuring an Aneka Cloud. It covers the prerequisites for the installation, the
Sisense. Product Highlights. www.sisense.com
Sisense Product Highlights Introduction Sisense is a business intelligence solution that simplifies analytics for complex data by offering an end-to-end platform that lets users easily prepare and analyze
Monitoring HP OO 10. Overview. Available Tools. HP OO Community Guides
HP OO Community Guides Monitoring HP OO 10 This document describes the specifications of components we want to monitor, and the means to monitor them, in order to achieve effective monitoring of HP Operations
Oracle Database Performance Management Best Practices Workshop. AIOUG Product Management Team Database Manageability
Oracle Database Performance Management Best Practices Workshop AIOUG Product Management Team Database Manageability Table of Contents Oracle DB Performance Management... 3 A. Configure SPA Quick Check...6
RTI v3.3 Lightweight Deep Diagnostics for LoadRunner
RTI v3.3 Lightweight Deep Diagnostics for LoadRunner Monitoring Performance of LoadRunner Transactions End-to-End This quick start guide is intended to get you up-and-running quickly analyzing Web Performance
ILMT Central Team. Performance tuning. IBM License Metric Tool 9.0 Questions & Answers. 2014 IBM Corporation
ILMT Central Team Performance tuning IBM License Metric Tool 9.0 Questions & Answers ILMT Central Team Contact details [email protected] https://ibm.biz/ilmt_forum https://ibm.biz/ilmt_wiki https://ibm.biz/ilmt_youtube
10 Best Practices for Application Performance Testing
Business white paper 10 Best Practices for Application Performance Testing Leveraging Agile Performance Testing for Web and Mobile Applications 10 Best Practices for Application Performance Testing Table
Business Application Services Testing
Business Application Services Testing Curriculum Structure Course name Duration(days) Express 2 Testing Concept and methodologies 3 Introduction to Performance Testing 3 Web Testing 2 QTP 5 SQL 5 Load
Performance and Load Testing For ArcGIS based systems Ian Sims and John Meza OVERVIEW What is Performance and Load Testing What is the objective Acceptance Testing Ongoing Development Areyoutheclient Want
Automate performance testing to predict system behavior and improve application performance. White paper
Automate performance testing to predict system behavior and improve application performance White paper Table of contents Abstract.........................................................................3
ActiveXperts Network Monitor. White Paper
ActiveXperts Network Monitor Centralized monitoring of Windows, Novell, Linux and Unix servers White Paper 2008, ActiveXperts Software B.V. This document is written by ActiveXperts Software B.V. and represents
JReport Server Deployment Scenarios
JReport Server Deployment Scenarios Contents Introduction... 3 JReport Architecture... 4 JReport Server Integrated with a Web Application... 5 Scenario 1: Single Java EE Server with a Single Instance of
Holistic Performance Analysis of J2EE Applications
Holistic Performance Analysis of J2EE Applications By Madhu Tanikella In order to identify and resolve performance problems of enterprise Java Applications and reduce the time-to-market, performance analysis
Agile Aspects of Performance Testing. March 1, 2013. Page 1
Agile Aspects of Performance Testing Alexander Podelko [email protected] www.alexanderpodelko.com @apodelko March 1, 2013 1 About Me Specialize in performance last 16 years Currently performance
effective performance monitoring in SAP environments
WHITE PAPER September 2012 effective performance monitoring in SAP environments Key challenges and how CA Nimsoft Monitor helps address them agility made possible table of contents executive summary 3
Foglight. Managing Hyper-V Systems User and Reference Guide
Foglight Managing Hyper-V Systems User and Reference Guide 2014 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this
Mike Chyi, Micro Focus Solution Consultant May 12, 2010
Mike Chyi, Micro Focus Solution Consultant May 12, 2010 Agenda Load Testing Overview, Best Practice: Performance Testing with Diagnostics Demo (?), Q&A Load Testing Overview What is load testing? Type
How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip
Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided
User Guide for VMware Adapter for SAP LVM VERSION 1.2
User Guide for VMware Adapter for SAP LVM VERSION 1.2 Table of Contents Introduction to VMware Adapter for SAP LVM... 3 Product Description... 3 Executive Summary... 3 Target Audience... 3 Prerequisites...
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
JIRA Administration Best Practices
JIRA Administration Best Practices Darren Bowles, Clearvison Assumptions Working knowledge of JIRA Understanding of JIRA administration tasks Working to JIRA v6 or later. 1. Workflows 2. Scaling 3. Searching/Reporting
Explain how to prepare the hardware and other resources necessary to install SQL Server. Install SQL Server. Manage and configure SQL Server.
Course 6231A: Maintaining a Microsoft SQL Server 2008 Database About this Course Elements of this syllabus are subject to change. This five-day instructor-led course provides students with the knowledge
IBM Tivoli Composite Application Manager for WebSphere
Meet the challenges of managing composite applications IBM Tivoli Composite Application Manager for WebSphere Highlights Simplify management throughout the life cycle of complex IBM WebSphere-based J2EE
Directions for VMware Ready Testing for Application Software
Directions for VMware Ready Testing for Application Software Introduction To be awarded the VMware ready logo for your product requires a modest amount of engineering work, assuming that the pre-requisites
DiskBoss. File & Disk Manager. Version 2.0. Dec 2011. Flexense Ltd. www.flexense.com [email protected]. File Integrity Monitor
DiskBoss File & Disk Manager File Integrity Monitor Version 2.0 Dec 2011 www.flexense.com [email protected] 1 Product Overview DiskBoss is an automated, rule-based file and disk manager allowing one to
Best Practices for Web Application Load Testing
Best Practices for Web Application Load Testing This paper presents load testing best practices based on 20 years of work with customers and partners. They will help you make a quick start on the road
WebSphere Business Monitor
WebSphere Business Monitor Debugger 2010 IBM Corporation This presentation provides an overview of the monitor model debugger in WebSphere Business Monitor. WBPM_Monitor_Debugger.ppt Page 1 of 23 Goals
Violin Symphony Abstract
Violin Symphony Abstract This white paper illustrates how Violin Symphony provides a simple, unified experience for managing multiple Violin Memory Arrays. Symphony facilitates scale-out deployment of
F Cross-system event-driven scheduling. F Central console for managing your enterprise. F Automation for UNIX, Linux, and Windows servers
F Cross-system event-driven scheduling F Central console for managing your enterprise F Automation for UNIX, Linux, and Windows servers F Built-in notification for Service Level Agreements A Clean Slate
Oracle Primavera P6 Enterprise Project Portfolio Management Performance and Sizing Guide. An Oracle White Paper October 2010
Oracle Primavera P6 Enterprise Project Portfolio Management Performance and Sizing Guide An Oracle White Paper October 2010 Disclaimer The following is intended to outline our general product direction.
Predicting Change Outcomes Leveraging SQL Server Profiler
Welcome Predicting Change Outcomes Leveraging SQL Server Profiler Lee Everest SQL Rx Today s Agenda Observations Tools for performance tuning SQL Server SQL Server Profiler SQL Trace Replay SQL Trace Replay
How To Test For Performance
: Roles, Activities, and QA Inclusion Michael Lawler NueVista Group 1 Today s Agenda Outline the components of a performance test and considerations Discuss various roles, tasks, and activities Review
Performance Testing Web 2.0
Performance Testing Web 2.0 David Chadwick Rational Testing Evangelist [email protected] Dawn Peters Systems Engineer, IBM Rational [email protected] 2009 IBM Corporation WEB 2.0 What is it? 2 Web
27 th March 2015 Istanbul, Turkey. Performance Testing Best Practice
27 th March 2015 Istanbul, Turkey Performance Testing Best Practice Your Host.. Ian Molyneaux Leads the Intechnica performance team More years in IT than I care to remember Author of The Art of Application
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
Application. Performance Testing
Application Performance Testing www.mohandespishegan.com شرکت مهندش پیشگان آزمون افسار یاش Performance Testing March 2015 1 TOC Software performance engineering Performance testing terminology Performance
How To Test A Web Server
Performance and Load Testing Part 1 Performance & Load Testing Basics Performance & Load Testing Basics Introduction to Performance Testing Difference between Performance, Load and Stress Testing Why Performance
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
Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1
Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1 This document supports the version of each product listed and supports all subsequent versions until the document
EZManage SQL Pro. Quick guide for installation and implementation
EZManage SQL Pro Quick guide for installation and implementation The purpose of this document is to guide you through the process of implementing EZManage SQL using SQL Server Databases. EZManage SQL is
Maintaining a Microsoft SQL Server 2008 Database
Maintaining a Microsoft SQL Server 2008 Database Course 6231A: Five days; Instructor-Led Introduction Elements of this syllabus are subject to change. This five-day instructor-led course provides students
Server & Application Monitor
Server & Application Monitor agentless application & server monitoring SolarWinds Server & Application Monitor provides predictive insight to pinpoint app performance issues. This product contains a rich
White Paper. NEC Invariant Analyzer with Oracle Enterprise Manager
NEC Invariant Analyzer with Oracle Enterprise Manager Table of Contents Introduction... 3 Proactive Performance Analysis... 3 Overview of Oracle Enterprise Manager... 4 Oracle Enterprise Manager Cloud
Vistara Lifecycle Management
Vistara Lifecycle Management Solution Brief Unify IT Operations Enterprise IT is complex. Today, IT infrastructure spans the physical, the virtual and applications, and crosses public, private and hybrid
STEELCENTRAL APPINTERNALS
STEELCENTRAL APPINTERNALS BIG DATA-DRIVEN APPLICATION PERFORMANCE MANAGEMENT BUSINESS CHALLENGE See application performance through your users eyes Modern applications often span dozens of virtual and
White Paper. The Ten Features Your Web Application Monitoring Software Must Have. Executive Summary
White Paper The Ten Features Your Web Application Monitoring Software Must Have Executive Summary It s hard to find an important business application that doesn t have a web-based version available and
Business white paper. Load factor: performance testing for Web applications
Business white paper Load factor: performance testing for Web applications Table of contents 3 A look at load testing 3 In the pursuit of predictability 4 Put your apps through the paces 5 Traits of an
Simplified Management With Hitachi Command Suite. By Hitachi Data Systems
Simplified Management With Hitachi Command Suite By Hitachi Data Systems April 2015 Contents Executive Summary... 2 Introduction... 3 Hitachi Command Suite v8: Key Highlights... 4 Global Storage Virtualization
HP SiteScope. HP Vertica Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems. Software Version: 11.
HP SiteScope For the Windows, Solaris, and Linux operating systems Software Version: 11.23 HP Vertica Solution Template Best Practices Document Release Date: December 2013 Software Release Date: December
How To Test On The Dsms Application
Performance Test Summary Report Skills Development Management System December 2014 Performance Test report submitted to National Skill Development Corporation Version Date Name Summary of Changes 1.0 22/12/2014
.CRF. Electronic Data Capture and Workflow System for Clinical Trials
.CRF Electronic Data Capture and Workflow System for Clinical Trials Business challenge Most research takes place in different centers simultaneously. These are often located in different cities or even
Load testing with. WAPT Cloud. Quick Start Guide
Load testing with WAPT Cloud Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. 2007-2015 SoftLogica
HP Business Process Monitor
HP Business Process Monitor For the Windows operating system Software Version: 9.23 BPM Monitoring Solutions Best Practices Document Release Date: December 2013 Software Release Date: December 2013 Legal
Net Developer Role Description Responsibilities Qualifications
Net Developer We are seeking a skilled ASP.NET/VB.NET developer with a background in building scalable, predictable, high-quality and high-performance web applications on the Microsoft technology stack.
NetWrix Exchange Mail Archiver Version 1.5 Administrator Guide
NetWrix Exchange Mail Archiver Version 1.5 Administrator Guide Contents 1. Introduction... 3 1.1. What is the NetWrix Exchange Mail Archiver?...3 1.2. Product Architecture...4 1.3. Licensing...5 1.4. System
Performance testing Web 2.0
Performance testing Web 2.0 Stuart Moncrieff, Performance Test Consultant JDS 2009 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice What is
SurfCop for Microsoft ISA Server. System Administrator s Guide
SurfCop for Microsoft ISA Server System Administrator s Guide Contents INTRODUCTION 5 PROGRAM FEATURES 7 SYSTEM REQUIREMENTS 7 DEPLOYMENT PLANNING 8 AGENTS 10 How It Works 10 What is Important to Know
Course Syllabus. At Course Completion
Key Data Product #: Course #: 6231A Number of Days: 5 Format: Certification Exams: 70-432, 70-433 Instructor-Led This course syllabus should be used to determine whether the course is appropriate for the
Improve your Close Cycle Using Financial Close Manager
Improve your Close Cycle Using Financial Close Manager 2.28.2014 Presenters Seth Landau EVP of Consulting Services MindStream Analytics [email protected] www.mindstreamanalytics.com AGENDA
Understanding Server Configuration Parameters and Their Effect on Server Statistics
Understanding Server Configuration Parameters and Their Effect on Server Statistics Technical Note V2.0, 3 April 2012 2012 Active Endpoints Inc. ActiveVOS is a trademark of Active Endpoints, Inc. All other
Chapter 1 - Web Server Management and Cluster Topology
Objectives At the end of this chapter, participants will be able to understand: Web server management options provided by Network Deployment Clustered Application Servers Cluster creation and management
MEASURING WORKLOAD PERFORMANCE IS THE INFRASTRUCTURE A PROBLEM?
MEASURING WORKLOAD PERFORMANCE IS THE INFRASTRUCTURE A PROBLEM? Ashutosh Shinde Performance Architect [email protected] Validating if the workload generated by the load generating tools is applied
Basic Unix/Linux 1. Software Testing Interview Prep
Basic Unix/Linux 1 Programming Fundamentals and Concepts 2 1. What is the difference between web application and client server application? Client server application is designed typically to work in a
Application Testing Suite: A fully Java-based software testing platform for testing Oracle E-Business Suite and other web applications
Application Testing Suite: A fully Java-based software testing platform for testing Oracle E-Business Suite and other web applications Murali Iyengar, Principal Sales Consultant,
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
My DevOps Journey by Billy Foss, Engineering Services Architect, CA Technologies
About the author My DevOps Journey by Billy Foss, Engineering Services Architect, CA Technologies I am going to take you through the journey that my team embarked on as we looked for ways to automate processes,
DiskPulse DISK CHANGE MONITOR
DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com [email protected] 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product
SOFTWARE TESTING TRAINING COURSES CONTENTS
SOFTWARE TESTING TRAINING COURSES CONTENTS 1 Unit I Description Objectves Duration Contents Software Testing Fundamentals and Best Practices This training course will give basic understanding on software
Veeam Backup Enterprise Manager. Version 7.0
Veeam Backup Enterprise Manager Version 7.0 User Guide August, 2013 2013 Veeam Software. All rights reserved. All trademarks are the property of their respective owners. No part of this publication may
Noelle A. Stimely Senior Performance Test Engineer. University of California, San Francisco [email protected]
Noelle A. Stimely Senior Performance Test Engineer University of California, San Francisco [email protected] Who am I? Senior Oracle Database Administrator for over 13 years Senior Performance Test
Monitoring applications in multitier environment. Uroš Majcen [email protected]. A New View on Application Management. www.quest.
A New View on Application Management www.quest.com/newview Monitoring applications in multitier environment Uroš Majcen [email protected] 2008 Quest Software, Inc. ALL RIGHTS RESERVED. Management Challenges
iway iway Business Activity Monitor User's Guide Version 6.0.2 Service Manager (SM) DN3501982.1209
iway iway Business Activity Monitor User's Guide Version 6.0.2 Service Manager (SM) DN3501982.1209 Cactus, EDA, EDA/SQL, FIDEL, FOCUS, Information Builders, the Information Builders logo, iway, iway Software,
Oracle Enterprise Manager 12c Microsoft SQL Server Plug-in version 12.1.0.6
Oracle Enterprise Manager 12c Microsoft SQL Server Plug-in version 12.1.0.6 July 2015 Heterogeneous Datacenter Management Oracle s Philosophy Productize our deep understanding of the Oracle stack to provide
Visual Studio.NET Database Projects
Visual Studio.NET Database Projects CHAPTER 8 IN THIS CHAPTER Creating a Database Project 294 Database References 296 Scripts 297 Queries 312 293 294 Visual Studio.NET Database Projects The database project
Oracle Application Development Framework Overview
An Oracle White Paper June 2011 Oracle Application Development Framework Overview Introduction... 1 Oracle ADF Making Java EE Development Simpler... 2 THE ORACLE ADF ARCHITECTURE... 3 The Business Services
