The Source for Java Technology Collaboration
User: Password:



Carol McDonald's Blog

Community: Java Web Services and XML Archives


Some J2EE Performance Tips

Posted by caroljmcdonald on March 09, 2004 at 10:00 AM | Permalink | Comments (2)

You need to plan for performance and scalability through out your application development process from architecture to implementation to testing. Like security this is not something that can easily be stuck on at the last minute. During design, coding and testing you need to pay attention to resource consumption:

  • Network: watch out for network traffic. Design coarse-grained services with Session or MDB Facades and always use local interfaces for other EJBs (see the Session Facade and DTO design patterns below).
  • Database: use connection pooling and statement caching. Make sure your queries are efficient. See JDBC tips below.

The following J2EE design patterns can improve performance:

  • Data Transfer Object to encapsulate and pass a business object’s data attributes to the presentation tier. Reduces remote network traffic and helps to keep a clean separation between JSPs and EJBs.
  • Service Locator to cache results of JNDI lookups
  • Value List Handler for querying, filtering, large amounts of data
  • Data Access Object to provide a simplified interface for performing complex JDBC operations and to encapsulate data-access logic. Allows decoupling of data-access optimizations
  • Session Facade:
    • To group calls to EJBs in a Coarse Grained Interface: to execute complex use cases in a single network call.
    • Use local interfaces for entity beans and any session EJBs that will be collocated within the same VM. If EJBs need to be called remotely wrap them with the session facade design pattern to combine methods in order to reduce remote invocations.
    • To group related entity or DB updates into 1 container managed transaction

For more on J2EE Patterns see Core J2EE Patterns and J2EE Blueprints

Servlet tips: Don't store a lot of data in the HTTP Session because memory consumption affects performance and scalability. Remove servlet sessions when they are no longer needed: call session.invalidate()

Session EJB tips: Again because memory consumption affects performance and scalability remove stateful session beans when they are no longer needed (for example when a user logs out) by calling Bean.remove(). Limit the size of objects stored in session beans due to memory cost and performance cost for  I/O  activation and passivation. For high scalability try to use Stateless session EJBs. You can sometimes convert Stateful EJBs to Stateless by adding parameters containing state information to the Stateless bean methods.

Entity Container Managed Persistence: Use CMP Entity Beans for Object oriented transactional persistence. Tuned CMP entity beans can usually offer better performance then BMP entity beans (for large queries, tabular type access for browsing data use the DAO pattern) With EJB 2.0 CMP optimization is possible because persistent fields are only accessible via get and set methods. Containers can optimize based on whether or not a field has been modified, the entity is in a transaction, relation, cache.. CMP optimizations include:

  • Lazy Loading: Deferring loading of any data until it is accessed
  • Dirty Writes:Only updating data which has been changed in the database

For more information on CMP performance see: Why choose CMP?

Consistency Levels in CMP: Consistency levels are tunable in the EJB container, which can improve performance depending on the application. There are two general approaches to ensure consistency. The first is pessimistic locking, which serializes access to an Entity EJB during a transaction and may lead to decreased concurrency. The second approach is optimistic locking, and may result in a larger number of database round trips since it requires a caller to re-try if a consistency check fails at store. Optimistic locking gives better performance when entity contention is not high.

Database Isolation Modes a lower database transaction isolation levels reduces work in the database tier, and can lead to better application performance. Choose the lowest cost database transaction isolation level that avoids corrupting the application data. Use a READ_COMMITTED isolation level with optimistic locking if there is a low likelihood of concurrent transactions updating the same rows. Updates will only fail if there has been a collision.

Getting the most out of your Application Server:
You need to set a sufficient size for the JVM's heap, Data Base connection pools, and EJB pools and caches. Failure to provide enough resources results in contention and degrades application performance. However too high resource settings can degrade performance as well by using too much memory, which will cause more frequent and longer full Garbage Collection cycles.

Tuning the caching and pooling of EJBs and JDBC can have a significant affect on performance.

Stateless Session beans, Message Driven Beans and Entity beans are pooled to improve server performance. Pooled EJB instances are all equivalent and indistinguishable from other pooled instances of the same class type. Pooling beans reduces the overhead associated with creating and initializing bean instances. You want to monitor and tune the pool to avoid excessive creation or deletion of instances, but also avoid accumulating unused instances. Increase the bean’s pool size when observing excessive creation and deletion of bean instances. Decrease the bean’s pool size when accumulating a large number of instances in the pool, as this will cause more frequent and longer full Garbage Collection cycles.

For example the Sun Java Application Server has the following EJB Container PoolTunables:

  • steady-pool-size (not for message-driven)
  • max-pool-size (0 = unbounded)
  • pool-idle-timeout-in-seconds
  • (0 = indefinitely)

These can be set per bean type and/or as global defaults.

Stateful Session beans and Entity beans are cached to improve performance. Cached Stateful Session EJBs are associated with a specific user's conversational state. Cached Entity EJBs are associated with a specific primary key. Caching beans gives better performance by reducing activations and passivations, especially since the data associated with an instance must be re-loaded for activation. You want to monitor and tune the cache to minimize the number of activations and passivations, but avoid the accumulation of unused instances in the cache. For Entity beans increase the cache size for beans with concurrent or iterative access patterns. For Stateful session beans set the cache size to the maximum estimated  ~ number of concurrent users. In general Increase the cache until a good cache hit rate is reached.

Entity Bean Commit options and the cache.
In the EJB spec there are 3 commit options for entity beans:

  • Commit Option A: At the end of the transaction, the instance stays in the ready state (cached) and the instance state is valid (ejbLoad not called)
  • Commit Option B: At the end of the transaction, the instance stays in the ready state (cached) but the instance state is NOT valid (ejbLoad will be called)
  • Commit Option C: At the end of the transaction, neither the instance nor its state is valid (instance will be passivated and returned to the pool)

Comit option B performs the best if the Entity bean will be accessed again. If the Entity bean is rarely reused then commit option C is better.  Do profiling with your application on your application server to determine what works best.

For example the Sun Java Application Server has the following EJB Container Cache Tunables:

  • commit-option (B|C) (entity beans)
  • Max-cache-size (0 = unbounded)
  • cache-idle-timeout-in-seconds
  • (0 = indefinitely)

These can be set per bean type and/or as global defaults.

For more on tuning the EJB pool and cache see:
Performance Tuning the EJB Container

JDBC tips:

  • Test and Select a good JDBC driver for your application
  • Tune the connection pool size
  • Obtain a connection as close to the resource operation as possible and close as soon as completed in order to return the connection to the pool
    • Close JDBC connections in the finally block 
  • Index the columns in your WHERE clauses
  • Find out what is happening with your SQL code: use your database engine's command-line utility and run the SQL through the EXPLAIN SELECT command (or whatever your vendor provides to analyze queries)
    • Is the query utilizing indexes fully?
    • Avoid n-way joins 
    • Avoid bringing back thousands of rows of data
  • Turn off Auto-Commit, Group updates into a transaction and/or batch updates
  • To improve performance of database queries, use PreparedStatements and JDBC statement caching, this saves on SQL parsing

For example with the Sun Java Application Server you can tune JDBC statement caching as follows:
<jdbc-connection-pool datasource-classname= "oracle.jdbc.pool.OracleDataSource" ...>
  <property name="ImplicitCachingEnabled"  value="true"/>
  <property name="MaxStatements" value="200"/>
</jdbc-connection-pool>

For more information on JDBC performance see
Sun Java Application Server JDBC connection pool tuning
Top Ten Oracle JDBC Tips
Oracle Best Practices in Performance and Scalability

JMS tips:
Use JMS for

  • Asynchronous Concurrent processing
  • Batch processing
  • Scalability
  • Broadcasting messages to multiple recipients
  • Reliable messaging 
  • Loose Coupling

XML and Messaging:
Use XML mainly for messages between systems, inside your Application don’t overuse XML because parsing and processing  can cause a performance hit.
for more JMS tips see:
Best practices to improve performance in JMS

references and more J2EE performance information:
Core J2EE Patterns
J2EE Blueprints
Java Performance
Sun Java Application Server Performance Tuning Guide
Sun Tech Days Presentation on J2EE Best Practices and Patterns
Java Performance Tuning
Bitter EJB Book
PreciseJava website
The Middleware Company J2EE Performance Case Study
J2EE Performance
J2EE Design Strategies That Boost Performance
J2EE Performance Tuning
Enterprise Java Best Practices



Orchestration, Choreography, Collaboration and Java Technology-based Business Integration

Posted by caroljmcdonald on October 30, 2003 at 08:20 PM | Permalink | Comments (0)

some of the latest Web Services "specs" are about Orchestration, Choreography, Collaboration ... Here I am going to give a brief synopsis and pointers for more information on this topic.

Orchestration, Choreography, Collaboration are about composing web services into Business processes, what does this mean?
A Business process can be defined as the execution of activities according to a defined set of rules in order to achieve a common goal between participants .

Orchestration defines the control and data flow between web services to achieve a business process. Orchestration defines an "executable process" or the rules for a business process flow defined in an xml document which can be given to a business process engine to "orchestrate" the process, from the viewpoint of one participant.

Choreography defines the sequence and dependencies of interactions between multiple roles to implement a business Process composing multiple web services. Choreography describes the sequence of interactions for Web service messages-it defines the conditions under which a particular web service operation can be invoked. WSDL describes the static interface and Choreography defines the “Dynamic” behavior external interface from a global view.

BPEL4WS primarily focuses on orchestration, while WSCI focuses on choreography. With WSCI each participant in the message exchange defines a WSCI interface. With BPEL4WS you describe an executable process from the perspective of one of the participants.

2 groups have formed to work on Orchestration and Choreography. The OASIS Web BPEL TC was created in April 2003. It has 100+ members representing 50+organizations includes IBM, Microsoft, BEA, Oracle, Sun, SAP … The TC is chartered to: Continue work on BPEL4WS: as basis for web services orchestration by creating the needed specifications to formally describe interoperable business processes and business interaction protocols http://www.oasis-open.org/committees/wsbpel

The W3C WS Choreography WG was created in Jan. 2003 It has 40+ members representing 25+ organizations including Intalio, BEA, Oracle, Sun, SAP… The working group is chartered to : create the definition of a language(s) for describing a choreography, as well as the rules for composition of, and interaction among, such choreographed Web services. WSCI will be considered as Input but will not necessarily be the output of this group. http://www.w3.org/2002/ws/chor/

There is overlap in membership between WS-BPEL and WS-Choreography and these 2 groups are trying to coordinate their work. WS-BPEL is focusing more on the executable business processes, while WS-Choreography is concerned more with the public message exchange among Web services.

Process Definition for Java (PD4J or JSR-207) builds on Java Language Metadata technology (JSR-175) to provide an easy to use syntax for describing a business process at the source code level for the J2EE platform http://jcp.org/en/jsr/detail?id=207

Java Business Integration (JBI) JSR-208 enables the creation of a Java business integration environment for specifications such as BPEL4WS and the WS-Choreography. JBI formalizes the contract between BPMs and a normalized message bus. Business Process Machines support Business Process Instances and manage their lifecycle. BPMs will work at the normalized message level in order to align with the JBI environment. http://jcp.org/en/jsr/detail?id=208

EbXML: Business Process Specification Schema BPSS defines the collaborative process in terms of: a Sequence of Business Transactions (Message exchanges) between partners. http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=ebxml-bp

For more information:

http://developer.java.sun.com/developer/onlineTraining/webcasts/35plus/cmcdonald2/cmcdonald2.html

http://www.ebpml.org

http://searchwebservices.techtarget.com/originalContent/0,289142,sid26_gci880731,00.html

http://sunnetwork.sun.com/sf2003/conf/sessions/display-1470.en.jsp





Powered by
Movable Type 3.01D
 Feed java.net RSS Feeds