YOUR FEEDBACK
Adobe Flex 2 - Answering Tough Questions About Enterprise Development
A Correct Person wrote: Denis Roebrt commented on the 21 Aug 2006 "Tough Que...
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


The Promise of Entity Beans

Digg This!

Working as a BEA consultant, I've helped customers successfully design and deploy applications on various versions of the WebLogic Server (WLS). BEA has been supporting container-managed persistence (CMP) entity beans since EJB 1.0, and a few of our customers have used them. Unfortunately, some used them without understanding the ramifications; others heard about performance constraints and completely excluded entity beans from their architecture/design choices.

It was difficult to come up with reasons to use CMP entity beans when chief architects asked, "When should I consider using CMP entity beans at all?" The nirvana of entity beans lies in two things: caching and object-relational mapping. Both were done poorly in the earlier implementations, but EJB 2.0 came to the rescue. WLS 7.0's add-on features to the EJB 2.0 specification bridge the gap in performance between using entity beans and using stateless session beans with DAO and JDBC - in some cases even performing faster than the latter. When using JDBC, developers are strongly advised to use container-managed transactions.

Problems with Earlier Versions
Several customers who used entity beans in the past had to redesign and use JDBC because their systems were too slow to meet service-level agreements. That slowness was due to some of the following problems:

  • No caching: Each transaction went to the database to load the entity bean. One of the promises customers look for in using entity beans is caching, and none was available for regular entity beans in a clustered environment.
  • Single-table support (O-R mapping too simplistic): Customers were also looking for object-relational mapping to be done by the entity bean, but the mapping provided by the container was too simplistic.
  • Single instance of the entity bean per virtual machine (VM): Because WebLogic 5.1 and below only supported exclusive locking, all the calls to the entity bean were serialized, causing bottlenecks even for read-only beans.
  • Exclusive locking: Deadlocks were highly likely when some beans used transactions and some did not.
  • Single setX call: This caused the entire entity bean to be written to the database. Before the EJB 2.0 specification, the container didn't have any hooks for determining what changed and what didn't. This meant that on an ejbStore, all the attributes were updated.
  • Loading: Loading the entity bean caused all data members to be loaded in memory, even if only a couple were needed.
  • No dynamic queries: EJB had to be redeployed to write a new query.
  • Queries: Queries can instantiate large numbers of entity beans, consuming memory and degrading performance.

    WLS 7.0 Features
    WLS 7.0 implements the EJB 2.0 specification, providing for richer object-relational mapping. EJB 2.0 also provides the container with a lot more flexibility for doing optimized reads and writes to the database. The following features elucidate the richness and flexibility developers have in designing entity beans in WLS 7.0.

  • Container-managed relationships: Entity beans can have relationships with other beans; these relationships can be either bidirectional or unidirectional. WLS supports three types of relationship mappings managed by WebLogic CMP: one-to-one, one-to-many, and many-to-many.
  • Multiple table mapping to an entity bean: Multiple table support allows an implementer of EJB 2.0 CMP beans to map a single EJB to multiple DBMS tables within a single database.
  • Tuned writes with EJB 2.0: Instead of writing all the fields to the database when ejbStore is called, only the updated fields are written to the database.
  • Tuned reads using field groups: On an ejbLoad the container, instead of loading all the fields of the entity bean, loads only fields in the field-group.
  • Caching of relationships: This feature increases entity bean performance by loading related beans into the cache in a single join query instead of multiple queries.
  • Entity beans can return ResultSets: WLS supports ejbSelect() queries that return the results of multicolumn queries in the form of a java.sql.ResultSet.
  • Application-wide cache for heterogeneous entity beans: Instead of a separate cache for each entity bean, this feature enables multiple entity beans within an EAR to share a single runtime cache.
  • Dynamic queries: The EJB 2.0 specification forces users to hard-code queries in the deployment descriptor. With dynamic queries, new queries can be constructed and executed programmatically without redeploying the beans.
  • Read-mostly design pattern: In the real world, most applications are 90% read and 10% update. An entity bean can be written to model the data and can be deployed as both a read-only entity bean and a regular entity bean. With this approach, users who want to read data talk to the read-only entity bean, and users who want to update data talk to the regular entity bean. When an update occurs, the container invalidates all the read-only entity beans, forcing the container to call ejbLoad the next time the data is accessed.

    Other useful features include automatic primary key generation, cascade delete support, EJB QL support, ejbSelect methods, and the concurrency strategies described below.

    Concurrency Strategies
    A concurrency strategy defines how many instances of an entity bean are created, who does the locking to maintain transactional integrity, and the access pattern of the data modeled in the entity bean. The right concurrency strategy can make a tremendous difference in the performance of your entity beans.

  • Exclusive: The container creates only one instance of an entity bean per VM, and all calls to the entity bean are serialized as the container locks the entity bean on use (for both read and write). This is never recommended.
  • Database: The container defers locking to the database, and each transaction gets its own copy of the entity bean. ejbLoad and ejbStore are called at the beginning and end of the transaction respectively.
  • Read-only entity beans: Neither the database nor the container holds any locks, and each transaction gets its own copy of the entity bean. A configurable parameter called <read-timeout-seconds> controls when ejbLoad is called on the entity bean. ejbStore is never called on the entity bean. Clients can still call create, remove, and update operations on the entity beans. The creation and removal will be successful, but the updates won't modify the database because ejbStore isn't called. It's the programmer's responsibility to not call CUD (create,update,delete) methods on read-only entity beans. Read-only entity beans are a perfect solution to the "distributed cache" problem.
  • Optimistic entity beans: The container defers locking to the database, but locks aren't held during the transaction. The basic idea is that the container checks for modified data before committing and rolls back if someone else has modified it. This is useful if you want higher consistency than TX_READ_COMMITTED but don't want to go as high as TX_SERIALIZABLE. Use it if you can live with reading stale data for a short time but want complete transactional integrity for updates. There are four options for checking optimistic conflicts: 1.   Check columns that were read 2.   Check columns that were modified 3.   Check timestamp column 4.   Check a version column

    Options 3 and 4 aren't recommended because the schema of the table needs to be changed to incorporate this concurrency strategy. Also, with the optimistic concurrency strategy, you can configure whether you want caching between transactions to be true or false. With caching between transactions set to false, ejbLoad will be called at the beginning of each transaction.

    Comparison
    With CMP, there will always be additional processing due to the integration of the EJB container and a layer of container-generated code-handling transactions, security, pooling, life-cycle management, failover, caching, and relationships. CMP (by design or by spec) has to do internal operations, (ejbLoad, ejbStore, ejbActivate, ejbPassivate) as opposed to JDBC logic manually programmed by developers. The benefits of the container infrastructure are optimized, generated database access; accelerated development; and simplified code maintenance.

    On the benchmarks I've seen, unless the data is cached, [stateless session bean + DAO (doing JDBC)] has performed 30-50% faster than the entity bean implementation.

    When to Use What
    Entity beans shouldn't be used as a substitute for writing JDBC. Use entity beans if your object-relational model isn't overly complex (involving numerous joins, etc.) and flexibility and code maintenance are more important than raw speed for your project.

    Use JDBC for simplistic, atomic-blind updates; to integrate with stored procedures and triggers; and to handle large ResultSets.

    WebLogic add-ons such as the read-mostly design pattern and optimistic caching with cache-between-transactions set to true are two design choices that make entity beans an attractive option. Both are BEA-proprietary, and both are specified in the WebLogic-specific deployment descriptor. No code changes are needed when migrating to another J2EE-compliant application server. Use optimistic caching concurrency strategy if it's OK for the application to read stale data for a short period of time.

    Use the read-mostly design pattern for the use case in which you read most of the time and update less frequently. This design pattern also has the shortcoming that the readers can read stale data. In case some of the readers should not read stale data at all, they can be made to read from the read-write bean.

    Read-only entity beans for CMP entity beans are mentioned in the features deferred to future releases of the EJB specification. Use read-only entity beans to implement a distributed cache that can be refreshed periodically.

    Conclusion
    Most real-world applications do far more reads than writes. Implementing the read-mostly pattern will provide the best of both worlds. It provides easy development and flexible deployment, along with excellent performance characteristics for accessing data and paying extra overhead only when data is being modified. Optimistic concurrency with cache-between-transactions set to true can be faster than JDBC. Writing optimized SQL is hard for regular Java programmers, so don't ignore entity beans - evaluate and determine whether they're a good fit.

    Entity Beans Examples
    Examples are provided in subdirectories of BEA-HOME/samples/server/src/ejb20.

  • For an example that demonstrates the relationships, look at the BEA-HOME/samples/server/src/ejb20/relationships/bands directory.
  • For an example that demonstrates multiple table mapping, look at the BEA-HOME/samples/server/src/ejb20/multitable directory.
  • To use the database concurrency option specify <concurrency-strategy>Database</concurrency-strategy> in the weblogic-ejb-jar.xml. weblogic-ejb-jar.xml To use the read-only concurrency option, specify <concurrency-strategy>Read-Only</concurrency-strategy> in the weblogic-ejb-jar.xml.
  • To use the optimistic concurrency with cache-between-transactions and check on Modified option specify <concurrency strategy>Optimistic</concurrency-strategy> <cache-between-transactions>True</cache-between-transactions> in the weblogic-ejb-jar.xml and specify <verify-columns>Modified</verify-columns> in the weblogic-cmp-rdbms-jar.xml.
  • To implement the "read-mostly" design pattern register the bean implementation as two EJBs, one as read-only and the other as Read-Write, and add the <invalidate>ejb-name</invalidate> where ejbname is the read-only entity bean name in the weblogic-ejb-jar.xml.

    References

  • http://edocs.bea.com/wls/docs70/ejb/index.html
  • http://java.sun.com/products/ejb/docs.html
    About Vijay Mandava
    Vijay Mandava joined BEA as a technical manager in the Professional Services organization in 1999. He now works as a principal systems engineer in the Systems Engineering organization. Vijay is a Sun certified Java programmer and a BEA certified Weblogic Server developer.

  • N. Bharadwaj wrote: This was an excellent article. Thanks to you, some of the important doubts I had on entity beans are cleared. When to use entity beans, weblogic 7.0 addons for EJB 2.0 provide a good understanding. "Most real-world applications do far more reads than writes" is a terrific point. "Use read-only entity beans to implement a distributed cache that can be refreshed periodically" is a great idea. Thanks Vijay Mandava. Your article is appreciated.
    read & respond »
    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 To Keynote 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
    Virtualization Meets DaaS - Desktop-as-a-Service
    After a $1.5 million angel round, Desktone, which was started in 2006 by Eric Pulier, who also started SOA Software, US Interactive and IVT, picked up $17 million in first-round funding about a year ago from Highland Capital Partners, SoftBank Capital, Citrix Systems and the China-base
    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
    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

    MOST READ THIS WEEK
    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