|
|
||
Carol McDonald's BlogMarch 2004 ArchivesSome J2EE Performance TipsPosted 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:
The following J2EE design patterns can improve performance:
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:
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: 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:
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.
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:
These can be set per bean type and/or as global defaults. For more on tuning the EJB pool and cache see: JDBC tips:
For example with the Sun Java Application Server you can tune JDBC
statement caching as follows: For more information on JDBC performance see JMS tips:
XML and
Messaging:
references and more J2EE performance information: | ||
|
|