YOUR FEEDBACK
Restoring the "Delegate" Concept To Java
Black007_pl wrote: Hi! I don't really see the point of using delegates in ja...
SOA World Conference
Virtualization Conference
$50 Savings Expire May 23, 2008... – Register Today!

2007 West
GOLD SPONSORS:
Active Endpoints
Your SOA Needs BPEL for Orchestration
BEA
Virtualized SOA: Adaptive Infrastructure for Demanding Applications
Nexaweb
Overcoming Bandwidth Challenges with Nexaweb
TIBCO
What is Service Virtualization?
SILVER SPONSORS:
WSO2
Using Web Services Technologies and FOSS Solutions
Click For 2007 East
Event Webcasts

2008 East
PLATINUM SPONSORS:
Appcelerator
Think Fast: Accelerate AJAX Development with Appcelerator
GOLD SPONSORS:
DreamFace Interactive
The Ultimate Framework for Creating Personalized Web 2.0 Mashups
ICEsoft
AJAX and Social Computing for the Enterprise
Kaazing
Enterprise Comet: Real–Time, Real–Time, or Real–Time Web 2.0?
Nexaweb
Now Playing: Desktop Apps in the Browser!
Sun
jMaki as an AJAX Mashup Framework
POWER PANELS:
The Business Value
of RIAs
What Lies Beyond AJAX?
KEYNOTES:
Douglas Crockford
Can We Fix the Web?
Anthony Franco
2008: The Year of the RIA
Click For 2007 Event Webcasts

SYS-CON.TV
TOP THREE LINKS YOU MUST CLICK ON


Mercury Interactive's LoadRunner
The J2EE Transaction Breakdown Diagnostics Module, a part of Mercury's Optimization Suite for J2EE

Digg This!

Mercury Interactive's LoadRunner is a leader in the performance-testing market. Its ability to create large volumes of data is legendary, and its ability to monitor the systems being tested provides great value. The J2EE Transaction Breakdown Diagnostics Module, LoadRunner, brings detailed J2EE transaction analysis into the mix.

Figure 1 illustrates at a high level the degree of monitoring and analysis available to the performance tester. The J2EE Transaction Breakdown allows each tier to be viewed, with detail to the method level for the application and Web servers. In addition, specific database queries can also be viewed.

 

The module provides for true integration of performance testing and performance monitoring. This allows greater diagnosis capabilities, improved control over the J2EE testing scenarios, and superior ability to pinpoint specific performance issues. For this review, I tested the WebLogic J2EE sample, Avitek Medical Records, using my machine as both the application server and the testing environment. My script exercised the three applications (patient, doctor, and admin), each of which have slightly different application architecture designs so I could expect to see some differences on similar calls.

The first step was to update the startup file for the WebLogic domain. I had to make the following updates to the startup file (startMedRecServer):

set MERC_TXBD_HOME=c:\Progra~1\Mercur~1\J2EE_TXBD_Probe
set CLASSPATH=%WEBLOGIC_CLASSPATH%;%CLASSPATH%;%MERC_TXBD_HOME%\dat;

set PATH=%PATH%;MERC_TXBD_HOME%\bin

"%JAVA_HOME%\bin\java" %JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS%
-Xbootclasspath/p:%MERC_TXBD_HOME%\classes\boot

When the server starts up, look for "Initializing Transaction Break Down Probe" to confirm that the changes had an impact and the Mercury Probe was initiated. After making these changes, I went into the Virtual User Generator and generated a script of the steps to take during processing. These scripts are necessary during performance testing, and the interface was simple to use. I called the URL Web interface for the Avitek Medical Records sample and began recording. Transaction segments are user defined, so you can create transactions to precisely meet your needs.

Once the script was created, I created a Controller Scenario, which utilizes the script to simulate the number of users. The license associated with the copy of the product I had permitted only one user. The next step was to start the scenarios and then monitor the results.

The LoadRunner Controller provides real-time monitoring for users to analyze J2EE component metrics. The metrics are gathered by an agent installed on the application server to collect information on the J2EE components. These measurements are sent from the application server back to the LoadRunner Controller.

The LoadRunner Controller application consists of three tabs: Design, Run, and J2EE Diagnostics. The Design tab allows various scenarios to be grouped and scheduled.

The Run tab (Figure 2) allows a variety of statistics and measurements from the running scripts to be captured and analyzed as graphs and tables. Many of these real-time measurements can be captured and stored as HTML, so any moments that could illuminate can be reviewed later. The viewer determines the number and type of measurements to display at any one time. Of particular interest to J2EE testers and developers are the WebLogic measurements and the Java Performance graphs. Although the setup for the WebLogic measurements required updates to some configuration files (I am using WLS 8.1 and JDK 1.4, not currently expected defaults of the product), the effort proved worthwhile.

 

The WebLogic measurements use JMX to access application server-specific detail. The measurement alternatives are vast, and include the ability to review measurements about logging, the JVM itself, servlets, EJB components, JMS connections, and the JDBC connection pool. The Java Performance graphs provide method-level detail on average response times and method call per seconds. Evaluating this information for Avitek showed me that my limited load was hardly phasing the application and that my longest-running, server-side transactions were logging in as an admin, denying Avitek patient requests for enrollment. Each had an average response time of about 0.3 seconds and involved the admin application, so I was curious if there was a common cause for their slower (but not slow) response times.

The final tab shows detailed J2EE Diagnostics. The J2EE monitor provides the following information for each J2EE component:

  • Average response time per method/query
  • Number of method calls per second
With such coverage of the J2EE architecture, users can get an overview of the entire activity within the system. They can very easily correlate the end user response time with the Web server activity (servlets and JSP data), application server activity (JNDI and EJBs), and back-end activity of database requests (JDBC methods and SQL queries). All of these measurements can be drilled down to the specific method level.

I was curious about the Deny Request transaction, so I brought up a Transaction Chain of Calls (see Figure 2). This report shows the measurement diagnostics for a transaction by method, on one screen, providing an immediate breakdown as to the longer parts of the transactional call. Looking at this report, it became apparent that the JDBC SQL execution for getting the patient took about 32% of the total transaction time. The actual update to the patient itself took only 4% of the time. A similar transaction from the Patient application took much less time. The reason: the method by which the Patient EJB was generated. The Admin transaction used the findByUserEJB method while the Patient looked up by primary key. The difference was the time it took for the query to retrieve, as the following data illustrates:

Patient - Update Profile Transaction

EjbFindByPrimaryKey Query:

SELECT WL0.id , WL0.address_id , WL0.dob ,
WL0.email , WL0.first_name , WL0.gender ,
WL0.last_name , WL0.middle_name , WL0.phone ,
WL0.ssn FROM patient WL0 WHERE ( WL0.id = ? )

Average Response Time: 0.01 seconds

Admin - Deny Request Transaction

EjbFindByUserEJB Query:

SELECT WL0.id , WL0.address_id , WL0.dob ,
WL0.email , WL0.first_name , WL0.gender ,
WL0.last_name , WL0.middle_name , WL0.phone ,
WL0.ssn FROM patient WL0 WHERE ( WL0.email = ? )

Average Response Time: 0.06 seconds

This is obviously just the tip of the iceberg for the type of the analysis that can be performed.

The final part of the toolset that I evaluated was the LoadRunner Analysis tool. This product uses the results of the scripts from the Controller Run efforts for additional review and analysis. The J2EE analysis reports provide transactional response time for the server, time spent in each server element, method calls per second, and average method response time, among others. Multiple scenarios and transactions can be statistically analyzed to determine if any correlation of behavior exists. In addition, all of these reports can be drilled down or broken into their component Transaction Chain of Calls, which can then be printed or stored as HTML.

Conclusion
Mercury Interactive has created a unique product that will greatly accelerate J2EE performance-testing efforts. By integrating the performance-testing tool with advanced J2EE diagnostics measurements and capabilities, performance problems can be simply diagnosed before production. This was an extremely easy tool to set up, and I was able to monitor any application of my choosing. It should be noted that Mercury Interactive also provides products for J2EE production monitoring and deep diagnostics, but these tools were not reviewed. Many thanks to Richard O'Connell of Mercury Interactive, who helped get me set up and running.

Corporate Information
Mercury Interactive
Building A
1325 Borregas Avenue
Sunnyvale, CA 94089
(408) 822-5200

Customer Support:
Support@merc-int.com
+1-877-TEST HLP (toll free)
+1-877-837-8457 (toll free)

Requirements:
Pentium 350 Mhz or higher; Windows NT service pack 6a, 2000, or XP; Internet Explorer 5.x or higher or Netscape Navigator 4.x, 6.x

About Jason Snyder
Jason Snyder is an architectural expert for CSC Consulting in Boston, and has served as the lead architect for several J2EE development projects. He has over 10 years of experience in software development, OO design, and application architecture.

BEA WEBLOGIC LATEST STORIES
3rd International Virtualization Conference & Expo: Themes & Topics
From Application Virtualization to Xen, a round-up of the virtualization themes & topics being discussed in NYC June 23-24, 2008 by the world-class speaker faculty at the 3rd International Virtualization Conference & Expo being held by SYS-CON Events in The Roosevelt Hotel, in midtown
Microsoft's Mike Neil To Keynote SYS-CON's 4th International Virtualization Conference & Expo
Mike Neil is general manager for virtualization strategy in the Windows Server Division at Microsoft. Mike is focused on the delivery of the Windows virtualization technology, including Windows Server 2008 Hyper-V, Microsoft Hyper-V Server and Virtual PC 2007. Mike also directs the tec
Engelbart's Usability Dilemma: Efficiency vs Ease-of-Use
The mouse was the original idea of Doug Engelbart who was the head of the Augmentation Research Center (ARC) at Stanford Research Institute. Engelbart's philosophy is best embodied, in my opinion, in the design of another device that he invented, the five-finger keyboard - with keys li
Web 2.0 Is Fundamentally About Empowering People
'Unlocking content to be remixed into new business value' is the driver of Web 2.0 in the enterprise, says Rod Smith, IBM VP of Emerging Internet Technologies, in this Exclusive Q&A with Jeremy Geelan on the occasion of IBM's release of a new technology created by IBM researchers, code
Why Do 'Cool Kids' Choose Ruby or PHP to Build Websites Instead of Java?
Here is a question that I have been pondering on and off for quite a while: Why do 'cool kids' choose Ruby or PHP to build websites instead of Java? I have to admit that I do not have an answer. Why do I even care? Because I am a Java developer. Like many Java developers, I get along w
Procter & Gamble Implements a SOA Powered By BEA Systems
BEA Systems announced that Procter & Gamble implemented a service-oriented architecture (SOA) powered by BEA technologies. The SOA powers a new on-line workspace at Procter & Gamble. It has been designed to help improve and support decision making while increasing access to knowledge a
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS
SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021

SYS-CON FEATURED WHITEPAPERS

ADS BY GOOGLE
BREAKING NEWS FROM THE WIRES
AmberPoint Extends SOA Governance to Apache ServiceMix, BEA AquaLogic Service Bus 3.0, BEA WebLogic Integration, Cisco ACE XML Gateway, JBoss Enterprise Application Platform and Oracle Fusion
AmberPoint announced today that it has extended the reach of its runtime SOA governance