Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Anchortoptop

...

This article is a copy of the version for SPECjAppServer2004 v1.05 and Geronimo v1.2. It's now being updated for SPECjAppServer2004 v1.08 and Geronimo v2.0.

...

2, but the updating process is not yet complete.

Running SPECjAppServer2004 benchmark on Geronimo

Still not a success, your help needed!

...

Issues still exist that prevent SPECjAppServer2004 from running on Geronimo.

This article is not a success story, but a collection of notes on the progress that has been made in this direction.

Current issue that requires your help is: #Running the benchmark

...

...

Disclaimer: This article is created to write down the existing experience and to make it reproducible. It is not targeted to be a comprehensive guide on either product or on merging them together. It's not also a replacement to the products' documentation, but just a step-by-step guide on how to make things work in a simple configuration, as it worked for me. Make sure you at least look through the documentation on both products before you proceed.

...

SPECjAppServer is a trademark of the Standard Performance Evaluation Corp. (SPEC). The official web site for SPECjAppServer2004 is located at http://www.spec.org/jAppServer2004/.

SPECjAppServer2004 version 1.08 introduces a reduced workload called EAStress2004 that relaxes run and reporting rules, enabling informal results to be shared more easily in open-source research and development projects.

The EAStress2004 workload in SPECjAppServer2004 v1.08 can be used as a tool to optimize performance of products under development and to share results in public forums. Unlike SPECjAppServer2004 results, testing results from the EAStress2004 workload do not need to be reviewed by SPEC prior to being made public.

Results from the EAStress2004 workload cannot be used for marketing purposes, and comparisons to other SPECjAppServer2004 results are not permitted.

See full press release on SPECjAppServer2004/EAStress2004 v1.08 here: http://www.spec.org/jAppServer2004/jAppServer2004v108.html.

All logs, stacks and result files in this article are extracted from EAStress2004 v1.08 runs.

...

This article is written for SPECjAppServer2004 v1.08 and Geronimo v2.0.12. For other versions some stages may be different. Older versions of this article for SPECjAppServer2004 v1.05 and older versions of Geronimo can be found here: v1.0, v1.1, v1.2.

...

...

Product site: http://geronimo.apache.org

Latest version, 2.0.12: http://geronimo.apache.org/apache-geronimo-v201v202-release.html

Release notes: http://cwiki.apache.org/GMOxDOC20/release-notes-202txt.html

Documentation page: http://geronimo.apache.org/documentation.html

...

SPECjAppServer2004 is a commercial benchmark for measuring the performance of Java EE application servers.

EAStress2004 is a reduced workload that is a part of SPECjAppServer2004 v1.08, it relaxes run and reporting rules, enabling informal results to be shared more easily in open-source research and development projects.

...

The latest Geronimo version for now is 2.0.12.

General download page: http://geronimo.apache.org/downloads.html

...

The geronimo.host and the driver.host may be the same machine, but you have to adjust the Geronimo configuration, as both Geronimo and the SPECjAppServer2004 Driver create RMI Registry on the default port (1099) and would conflict on that.

...

...

Sharing geronimo.host with emulator.host or driver.host is contradicting with the SPECjAppServer2004 documentation and would impact the performance severely and invalidate the benchmark results. However technically this is possible.

...

Directories

This section lists important directories that are futher further addressed in this article. They can be chosen arbitrary, but should not overlap.

...

  • <DUMP> – directory at the driver.host where the SPECjAppServer2004 Driver will store its temporal files.

...


  • On Windows some components may work incorrectly if working paths are too long or contain spaces. So it's recommended that you avoid long paths and spaces in them.

Back to Top

Installing products

...

Extract the downloaded archive to a local directory. The geronimo-jetty6-jee5-2.0.12 or geronimo-tomcat6-jee5-2.0.12 directory is created, that is your <GERONIMO> directory.

Installing SPECjAppServer2004

Run:

...

...

java -jar SPECjAppServer2004-Kit-v1.08.jar

...

Click Next, read and accept the license agreement, and type in the directory you want the SPECjAppServer2004 to be installed to. This directory will be your <SPEC> directory.

...

Configuring Geronimo

Adjusting configuration

Adjust the EJB configuration by adding the allowHosts attribute to the If your geronimo.host and your driver.host are the same machine, you have to adjust the port number of the Geronimo RMI Registry (to e. g. 1199), otherwise it would conflict with the SPECjAppServer2004 Driver that uses the default port of 1099. Edit the <GERONIMO>/var/config/config-substitutions.xml file, as shown below.

This is necessary to allow the SPECjAppServer2004 Driver to remotely access the EJBs deployed in Geronimo.

...


<module name="geronimo/openejb/1.1/car">
  <gbean name="EJBNetworkService">
    <attribute name="host">0.0.0.0</attribute>
    <attribute name="port">4201</attribute>
    <attribute name="allowHosts">0.0.0.0</attribute>
  </gbean>
</module>

If your geronimo.host and your driver.host are the same machine, you have to adjust the port number of the Geronimo RMI Registry (to e. g. 1199), otherwise it would conflict with the SPECjAppServer2004 Driver that uses the default port of 1099:

...


<module name="geronimo/rmi-naming/1.1/car">
  <gbean name="RMIRegistry">
    <attribute name="port">1199</attribute>
  </gbean>
  <gbean name="NamingProperties">
    <attribute name="namingProviderUrl">rmi://0.0.0.0:1199</attribute>
  </gbean>
  ... 
  <gbean name="JMXService">
    <attribute name="protocol">rmi</attribute>
    <attribute name="host">0.0.0.0</attribute>
    <attribute name="port">9999</attribute>
    <attribute name="urlPath">/jndi/rmi://0.0.0.0:1199/JMXConnector</attribute>
  </gbean>
</module>

properties file and change the NamingPort variable value.

Starting Geronimo

Go to your <GERONIMO> directory.

Start Geronimo by typing:

...

java -Djava.endorsed.dirs=lib/endorsed -javaagent:bin/jpa.jar -Dopenejb.jndiname.failoncollision=true -Dopenejb.jndiname.format={ejbName} -jar bin/server.jar

...

Please note the two OpenEJB settings, they're necessary to tune Geronimo to the simple format of EJB JNDI names SPECjAppServer2004 uses.

See details at http://cwiki.apache.org/GMOxDEV/client-jndi-names.html and http://cwiki.apache.org/OPENEJB/service-locator.html.

...

You may also use <GERONIMO>/bin/geronimo.sh or <GERONIMO>/bin/geronimo.bat scripts instead, after appropriate adjustments.

...

Geronimo v2.0.2 needs access to Internet for SPECjAppServer2004 application to be deployed – it tries to fetch XML schemas from http://java.sun.com site.

So if you're behind a firewall, add the appropriate -Dhttp.proxyHost= and -Dhttp.proxyPort= options to the Geronimo startup line.

This problem is caused by OPENEJB-700 bug which is already fixed and the fix should make it to the next version of Geronimo.

If your installation of Geronimo has no access to Internet at all, or your proxy requires authentication, you may use the following workarounds (thanks to Konstantin Malynkin for describing them). You may download the necessary DTDs to your local drive and specify the local path to them in your deployment descriptors (see <SPEC>/src/deploy/geronimo directory). For example, you could use <!DOCTYPE ejb-jar SYSTEM "C:/DTD/ejb-jar_2_0.dtd"> instead of <!DOCTYPE ejb-jar PUBLIC '-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN' 'http://java.sun.com/dtd/ejb-jar_2_0.dtd'>. Another way is to omit verification at all by deleting or commenting out the references to DTDs in the deployment descriptors. Note that in both cases you would have to rebuild and redeploy the SPECjAppServer2004 application for the changes to take effect.

Starting Geronimo

Go to your <GERONIMO> directory.

Start Geronimo by typing:

...

borderStylesolid

...

It will take some time to start. After that, you will see: No FormatbgColor:

blackborderStylesolid Booting Geronimo Kernel (in Java 1.5.0_11)... Starting Geronimo Application Server v2.0.1 [2 [********************************] 100% 73s 92s Startup complete Listening on Ports: 1099 1050 127.0.0.1 CORBA Naming Service 1099 0.0.0.0 RMI Naming 1527 0.0.0.0 Derby Connector 4201 Connector 2001 127.0.0.1 OpenEJB ORB Adapter 4201 0.0 ActiveIO Connector EJB 4242 .0.0 OpenEJB Daemon 6882 127.0.0 Remote Login Listener 8009 .1 OpenEJB ORB Adapter 8009 0.0.0.0 Jetty Connector AJP13 8080 0.0.0.0 Jetty SelectChannel Connector HTTP 8443 0.0.0.0 Jetty SelectChannel Connector HTTPS 9999 9999 0.0.0.0 JMX Remoting Connector 61613 0.0.0.0 JMX Remoting Connector 61616 ActiveMQ Transport Connector 61616 0.0.0.0 ActiveMQ Message Broker Connector Started Application Modules: EAR: geronimo/webconsole-jetty/1.1/car RAR: geronimo/activemq/1.1/car RAR: geronimo/system-database/1.1/car WAR: geronimoTransport Connector Started Application Modules: EAR: org.apache.geronimo.configs/webconsole-jetty6/2.0.2/car JAR: org.apache.geronimo.configs/mejb/2.0.2/car RAR: org.apache.geronimo.configs/activemq-ra/2.0.2/car RAR: org.apache.geronimo.configs/system-database/2.0.2/car WAR: org.apache.geronimo.configs/dojo-jetty6/2.0.2/car WAR: org.apache.geronimo.configs/remote-deploy-jetty/12.0.12/car WAR: geronimoWAR: org.apache.geronimo.configs/welcome-jetty/12.0.12/car Web Applications: http://geronimo.host:8080/ http: / /geronimo.host:8080/console http://geronimo.host:8080 /console-standard http: /dojo /geronimo.host:8080/remote-deploy Geronimo Application Server started

If you get another result, particularly, if network errors show up, then something has gone wrong.

...

...

Sometimes, the startup fails because some local network addresses are inaccessible. This could happen, for example, if you have used a VPN interface that is disconnected now. By default, Geronimo uses the first local address it comes

...

across to access its components, and may try to use a stale address, causing startup errors.

You may try disabling and then re-enabling the unused network interfaces to resolve such issues.

Accessing the console

Open your web browser and connect to the Geronimo Console at http://geronimo.host:8080/console/

Log in using the user name and password (system and manager by default).

Now you may investigate the console if you wish.

Creating the database

Go to the Embedded DB - DB Manager in the Console Navigation.

Create the benchmark database by typing its name (SPECDB) in the Create DB field and clicking Create.

Locating the SQL files

To create database tables, you can use the default SQL scripts provided in the <SPEC>/schema/sql directory. However, the directory includes five scripts, and they contain DROP TABLE commands that would fail if you try to execute them in the console when tables are not yet created.

Instead, it is recommended that you use the allTablesNoDrop.sql file, if you are creating the tables from scratch, or allTables.sql file if you want to drop and recreate the tables. Both files were created from the <SPEC>/schema/sql files by simple concatenation, allTablesNoDrop.sql also has DROP TABLE commands removed.

Creating the tables

Make sure SPECDB is selected in Use DB field and then copy-paste the SQL code to SQL Command/s frame. Click Run SQL button above it.

After a short delay, the frame will clear and the Result field below it will say SQL command/s successful. If not – check what you did wrong and try again.

If you use multiple SQL scripts, repeat the operations above for each of them.

Back to Top

Configuring SPECjAppServer2004

Basic configuration

deploy directory

Go to the <SPEC>/src/deploy directory and copy the reference subdirectory with its contents with the name geronimo.

...

Edit the deployment plans in <SPEC>/src/geronimo, remove all message-driven-destination tags from mfg.xml, orders.xml and supplier.xmlGeronimo v2.0.2 doesn't handle those tags correctly.

Instead of removing those tags, you also can replace them with <message-destination-type>javax.jms.Queue</message-destination-type>.

This problem is caused by OPENEJB-701 bug and should disappear after that bug is fixed

You may try disabling and then re-enabling the unused network interfaces to resolve such issues.

Accessing the console

Open your web browser and connect to the Geronimo Console at http://geronimo.host:8080/console/

Log in using the user name and password you provided during the installation (system and manager by default).

Now you may investigate the console if you wish.

Creating the database

Go to the downmost link in the console, DB Manager.

Create the benchmark database by typing its name (SPECDB) in the Create DB field and clicking Create.

Locating the SQL files

To create database tables, you can use the default SQL scripts provided in the <SPEC>/schema/sql directory. However, the directory includes five scripts, and they contain DROP TABLE commands that would fail if you try to execute them in the console when tables are not yet created.

Instead, it is recommended that you use the allTablesNoDrop.sql file, if you are creating the tables from scratch, or allTables.sql file if you want to drop and recreate the tables. Both files were created from the <SPEC>/schema/sql files by simple concatenation, allTablesNoDrop.sql also has DROP TABLE commands removed.

Creating the tables

Make sure SPECDB is selected in Use DB field and then copy-paste the SQL code to SQL Command/s frame. Click Run SQL button above it.

After a short delay, the frame will clear and the Result field below it will say SQL command/s successful. If not – check what you did wrong and try again.

If you use multiple SQL scripts, repeat the operations above for each of them.

Back to Top

Configuring SPECjAppServer2004

Basic configuration

deploy directory

...

.

geronimo.env file

Go to the <SPEC>/config directory.

...

Use forward slashes ( / ) as directory separators!

...

Clean-up your installation:

...

...

ant/bin/ant clean

...

Build the application and configure it for Geronimo:

...

...

ant/bin/ant -Dappserver=geronimo

...

You will get the BUILD SUCCESSFUL diagnostic.

Make sure the files SPECjAppServer.ear and Emulatoremulator.war are created in the <SPEC>/jars directory.

...

Go to the <SPEC>/config directory. Replace the content of each of the *db.properties files you find there with the contents of the attached db.properties template file. Make sure the pipeDir variable there points to a valid temporary directory, adjust if necessary.

Loading the tables

Run:

...

...

ant/bin/ant -Dappserver=geronimo loaddb

...

After some time, you will get the BUILD SUCCESSFUL diagnostic.

...

At this stage you need to deploy the configured components to Geronimo.

...

Note that if your geronimo.host and your driver.host are the same machine, and you changed the port number of the Geronimo RMI Registry, you should specify that port number in all deployer commands, like this:

...


...

java -jar bin/deployer.jar -

...

port 1199 ...

Logging in

To avoid specifying login credentials on any call to deployer, you can login first:

...

java -jar bin/deployer.jar -u system -p manager login

...

Deploying database connector

To deploy a connector to the Derby SPECDB database you created earlier, go to the <GERONIMO> directory and run:

...

java -jar bin/deployer

...

.jar deploy repository/org/tranql/tranql-connector-derby-embed-xa/1.

...

4/tranql-connector-derby-embed-xa-1.

...

4.rar <KIT>/sjas-db.xml

You will get the Deployed SPECSPECjAppServer2004/SPECjAppServerDBDB/1.08/carrar diagnostic.

Deploying JMS connector

To deploy an ActiveMQ JMS connector for SPECjAppServer2004, go to the <GERONIMO> directory and run:

...

...

java -jar bin/deployer.jar

...

deploy repository/org/apache/geronimo/modules/

...

geronimo-activemq-

...

ra/

...

2.0.

...

2/

...

geronimo-activemq-

...

ra-

...

2.0.

...

2.rar <KIT>/sjas-jms.xml

You will get the Deployed SPECSPECjAppServer2004/SPECjAppServerJMSJMS/1.08/carrar diagnostic.

Deploying the main application

To deploy SPECjAppServer2004 on Geronimo, this configuration uses the deployment plan that was originally found in Geronimo sources at http://svn.apache.org, modified and updated for Geronimo version 2.0.12.

Go to the <GERONIMO> directory and run:

...

...

java -jar bin/deployer.jar

...

deploy <SPEC>/jars/SPECjAppServer.ear <KIT>

...

/sjas-app.xml

You will get the Deployed SPECSPECjAppServer2004/SPECjAppServerApplication/1.08/ear diagnostic.

Verifying the deployment

At this stage you may check that the deployment has been done correctly and that SPECjAppServer2004 is operational.

Atomicity tests

Open the deployed SPECjAppServer2004 page: http://geronimo.host:8080/SPECjAppServer/

In the left-hand menu, click the Atomicity Tests link.

You will see the results of three atomicity tests' runs. If all three of them are marked as PASSED, your deployment is correctcheck that the deployment has been done correctly and that SPECjAppServer2004 is operational.

Manual transactions

Open the deployed SPECjAppServer2004 page: http://geronimo.host:8080/SPECjAppServer/

...

Log in with the default credentials (1) by clicking Log in.

You should see the program interface and be able to perform transactionsthe program interface and be able to perform transactions.

Atomicity tests

Open the deployed SPECjAppServer2004 page: http://geronimo.host:8080/SPECjAppServer/

In the left-hand menu, click the Atomicity Tests link.

You will see the results of three atomicity tests' runs. If all three of them are marked as PASSED, your deployment is correct.

Back to Top

Deploying the Supplier Emulator

...

Note that SPECjAppServer2004 documentation requires that the Supplier Emulator servlet container should have the keep-alive option turned off. You can ignore this requirement, but that would impact the performance severely.

...

Go to the <GERONIMO> directory and run:

...

...

java -jar bin/deployer.jar

...

deploy <SPEC>/jars/Emulator.war <KIT>/sjas-emulator.xml

You will get the Deployed SPECSPECjAppServer2004/Emulator/1.08/war @ http:/ /geronimo.host:8080/Emulator diagnostic.

Using a stand-alone servlet container

...

Do not bother editing <SPEC>/config/tomcat.env file or running ant/bin/ant -f tomcat.xml.

Both files are obsolete, they generate the Emulator.war file, which has already been created at #Building the application phase.

...

Go to the <TOMCAT> directory on the emulator.host and start Tomcat:

...

...

bin/catalina run

...

Veryfying the deployment

Go to the page http://emulator.host:8080/Emulator/. It should load normally and contain a single directory, dtd, with two files inside, delivery.dtd and po.dtd.

Go to the page http://emulator.host:8080/Emulator/EmulatorServlet. You should see a page with text like this:

...

...

Emulator Servlet seems to work OK
JAS_HOST : emulator.host
JAS_PORT : 8080
Servlet URL : Supplier/DeliveryServlet

Number of Transactions : 0
Servlet invoked without command specified

...

Back to Top

Running the benchmark

...

Go to the <DRIVER> directory on the driver.host and run:

...

...

bin/setenv.bat

...

This configures the environment to run the Driver.

...

bin/driver.bat

...

If you wish to run a distributed load with multiple Drivers, then after the Driver is started on the first host (the master.host), start the Driver on other driver hosts like this:

...

...

bin/driver.bat master.host

...

After starting the Driver, you should see the output like this:

No FormatbgColorblackborderStylesolid The following environment settings are in effect for SPECjAppServer2004 * ========================= * JAVA_HOME=<JAVA_HOME> JAS_HOME=<DRIVER> CONFIG_DIR=<DRIVER>\config APPSSERVER=geronimo ENVFILE=<DRIVER>\config\geronimo.env * ========================= * Driver Host: <driver.host> Binding controller to //<driver.host>/Controller DriverDebug: DealerAgent <propsFile> <agentName> <masterMachine> Controller: Registering M1 on machine <driver.host IP address> Controller: Registering O1 on machine <driver.host IP address> Controller: Registering L1 on machine <driver.host IP address> Calling switchLog as master RunID for this run is : 75 Output directory for this run is : <OUTPUT>\75 TTF1 = 93 ttf = 93 Configuring 1 DealerAgent(s)... DealerAgent O1, Thread 0 started DealerAgent O1, Thread 1 started DealerAgent O1, Thread 2 started DealerAgent O1, Thread 3 started DealerAgent O1, Thread 4 started DealerAgent O1, Thread 5 started DealerAgent O1, Thread 6 started DealerAgent O1, Thread 7 started DealerAgent O1, Thread 8 started DealerAgent O1, Thread 9 started Configuring 1 MfgAgent(s)... MfgAgent M1, Thread 0 started MfgAgent M1, Thread 1 started MfgAgent M1, Thread 2 started Configuring 1 LargeOLAgent(s)... MfgAgent L1, Thread 0 started Rampup = Fri May 12 20:49:51 MSD 2006 SteadyState = Fri May 12 20:59:51 MSD 2006 Rampdown = Fri May 12 21:59:51 MSD 2006 Finish = Fri May 12 22:04:51 MSD 2006 sleeptime is 28417 note this is time in excess needed for trigger Starting Ramp Up...

This means the Driver started normally.

Note the times for Rampup, SteadyState, Rampdown and Finish to figure out the time needed for the benchmark to complete.

...

...

You can interrupt the run at any

...

time with Ctrl-C.

Sometimes binding exceptions or other problems may occur at the Driver startup. In such a case, interrupt the test run with Ctrl-C and rerun it again. Sometimes it helps.

...

...

It's recommended to reload the database tables before each run, particularly if previous run was not finished correctly. Otherwise, errors like this may occur:

...

...

black

...

solid

...

java.rmi.RemoteException:

...

Failure

...

in

...

calling

...

validateInitialValues()

...

java.rmi.RemoteException:

...

Invalid

...

initial

...

Order

...

DB

...

State

...

at

...

org.spec.jappserver.driver.Auditor.validateInitialValues(Auditor.java:201)

...

at

...

org.spec.jappserver.driver.Driver.configure(Driver.java:330)

...

at

...

org.spec.jappserver.driver.Driver.<init>(Driver.java:160)

...

at

...

org.spec.jappserver.driver.Driver.main(Driver.java:1137)

...

During the run, the following diagnostics may appear in the Driver window:noformat

bgColorblackborderStylesolid AbstractSJASLoad> Application error has already been cancelled

and in the same time, various TransactionRolledback and other exceptions of the same kind are being printed in the Geronimo shell.

...

These diagnostics are probably caused by the fact that TranQL version 1.3 is used in Geronimo

...

v2.0.

...

2 does not provide the necessary transaction isolation level. Hopefully, this problem will be fixed in TranQL version 1.3.1.

After the run has completed successfuly, you will see the output like this:noformat

bgColorblackborderStylesolid Gathering DealerStats ... Gathering MfgStats ... summary file is <OUTPUT>\75\SPECjAppServer.summary SPECjAppServer2004 v1.08 Results JOPS: *** Dealer Response Times Purchase...0.4 Manage.....1.5 Browse.....0.4 Manufacturing Response Times Mfg........0.0 Calling getLog as master

The number of JOPS is a final benchmark metric.

...

For now these values for Geronimo are terribly low, and don't depend on the hardware being used. Probably this is due to some configuration issues that still exist or due to the TranQL issue mentioned above.

...

java -cp reporter.jar reporter Your_Submission.txt

...

Run the following command to generate a text-only benchmark report, it would be named Your_Submission.report.txt:

...

...

java -cp reporter.jar reporter -a Your_Submission.txt

...

For the details on how yo submit your results, see SPECjAppServer2004 User's Guide :: Section 5.3 – Submitting the Results

...