1. Field of the Invention
This invention relates to computer systems and computer software, and more particularly to transaction management in computer systems.
2. Description of the Related Art
Each application that runs on an application server may have an application state that includes data the application may use and/or change. The data defining the application state may be stored on data sources such as, but not limited to, databases. Operations used to modify data stored in the data sources may be grouped together in transactions. Transactions may have characteristics including, but not limited to, atomicity (either all of the operations in the group are applied to the data in the database, or none of the operations in the group are applied), consistency (the transaction is a correct transformation of the data in the database according to instructions executed by an application component), isolation (each transaction does not affect other simultaneously occurring transactions), and durability (if a transaction completes successfully, failures in an application component or database will not corrupt the transformation of the data in the database). After a transaction completes, the data in the data sources may be modified. If a transaction fails (e.g., is not completed), the data used in the data sources involved in the transaction may be rolled back to its pre-transaction state.
As an application starts, an application server may start a new transaction and open connections to data sources the application needs. When the application server opens a connection to a data source, the connection may be managed as a local transaction connection or a global transaction connection. A local transaction may involve a one-phase commit and may be used when an application needs one data source. A global transaction may involve a two-phase commit and may be used when an application needs two or more data sources. In conventional application servers, all transactions must be managed the same for any given instance of the application server, i.e., all local transactions or all global transactions.
Global transactions may be managed by a separate transaction manager in an application server such as a JAVA TRANSACTION SERVICES (JTS) manager. The global transaction may use a two-phase commit protocol. A global transaction may involve a transaction protocol such as the X/OPEN Distributed Transaction Processing XA standard from THE OPEN GROUP vendor consortium. Before a global transaction is committed to its respective data sources (i.e., to modify respective data in the data sources), each data source involved in the global transaction may be asked to prepare to commit the transaction. If each data source is able to commit the transaction, each data source may send a signal to the transaction manager indicating so. After all of the data sources have indicated that they are prepared to commit the transaction, the transaction manager may send a signal to commit the global transaction.
Local transactions may be managed by a resource manager. Typically, a local transaction is performed in a manner specific to the data source. Local transactions (typically involving one data source) do not need to use the first phase of the global transaction two-phase protocol (i.e., asking if the data sources are prepared to commit the transaction). In a local transaction, if the data source is prepared to commit the transaction, the data source commits the transaction when the resource manager is instructed to by the application server. In general, a local transaction may be performed faster than a global transaction. Also, different data sources may have different capabilities. For example, if a data source does not support a global transaction protocol, then it may not be able to participate in global transactions.
After a transaction is committed, the transaction may be recorded in a transaction log to keep track of the transaction in case a data source fails during the commit phase. If a data source fails during the commit phase, the data source may be updated using the information in the transaction log. If a data source fails during the commit phase, the data source may request transaction information from the transaction log. The transaction log may send information for a committed transaction to the data source that failed during the commit to allow the data source to update itself.
In one embodiment, a system may include a memory coupled to one or more processors and configured to store program instructions executable to implement an application server with a transaction manager module configured to provide a common application interface to a local transaction manager and a global transaction manager. In one embodiment, the transaction manager module may be configured to provide runtime logic to determine if a transaction initiated by an application component should be managed by the local transaction manager or the global transaction manager. In one embodiment, the local transaction manger may be configured to create a local transaction object for each transaction managed by the local transaction manager, and the global transaction manger may be configured to create a global transaction object for each transaction managed by the global transaction manager. In one embodiment, the local transaction objects and the global transaction objects may provide a common application interface for implementing their respective transactions.
In one embodiment, a method may include invoking a runtime logic by an application component in an application server to determine a transaction manager type for a transaction to be initiated by the application component. In one embodiment, the runtime logic may return the transaction manager type for the application component. The application component may call a common transaction manager interface to initiate a transaction. In one embodiment, the application component may use the same transaction manager interface to initiate the transaction regardless of the transaction manager type returned by the runtime logic. If the runtime logic returns the transaction manager type as global, the transaction may be managed using a global transaction manager. If the runtime logic returns the transaction manager type as local, the transaction may be managed using a local transaction manager.
A better understanding of the present invention may be obtained when the following detailed description is considered in conjunction with the following drawings.
While the invention is susceptible to various modifications and alternative forms, specific embodiments thereof are shown by way of example in the drawings and are herein described in detail. It should be understood, however, that the drawings and detailed description thereto are not intended to limit the invention to the particular form disclosed, but on the contrary, the intention is to cover all modifications, equivalents and alternatives falling within the spirit and scope of the present invention as defined by the appended claims.
In one embodiment, an application server 107 may run a plurality of application components (e.g., application components 109 and 113). In one embodiment, application components 109 and 113 may be collections of data and methods to operate on the collections of data. For example, the application components 109 and 113 may be web applications, enterprise beans, message-driven beans, application clients, or connectors. In one embodiment, an application module 111 may be a package of application components, such as, but not limited to application components 109 and 113. One or more application modules 111 may be included in an application on the application server 107.
In one embodiment, an application server 107 may run several applications simultaneously. An instance-wide attribute may apply to the applications running on the application server 107. For example, an instance-wide attribute may be set to define a type of transaction manager to use for all transactions running on the application server 107. In one embodiment, the application components 109 and 113 may be configured to start transactions involving access to one or more data sources 119, 121, and 123 such as, but not limited to, databases, managed by resource mangers 117. Other data sources may also be within the scope of the invention.
In one embodiment, a transaction may be a group of operations on data stored in a data source. The transactions may have characteristics including, but not limited to, atomicity (either all of the operations in the group are applied to the data stored in the data source, or none of the operations in the group are applied), consistency (the transaction is a correct transformation of the data stored in the data source according to instructions executed by an application component), isolation (each transaction does not affect other simultaneously occurring transactions), and durability (if a transaction completes successfully, failures in an application component or data source will not corrupt the transformation of the data stored in the data source). For example, if the transaction includes a group of operations to transfer a sum of money from one bank account to another bank account (where the account balances are saved in a database), the transaction may not be committed to the database with the account balances until both the operation of debiting the amount from the first bank account and the operation of adding the amount to the second bank account have been performed. After the transaction is committed (i.e., the bank account balances updated to reflect the transfer), a transaction log may keep track of the transaction in case the database with the bank account balances fails during the commit phase of the transaction. If the database fails during the commit phase, the database may then be updated using the information in the transaction log.
In one embodiment, a transaction manager type for the transaction may be specified as global or local at an application module level 111 or application component level for each of the application components 109 and 113. In one embodiment, the application server 107 may be configured to determine the transaction manager type specified for each application component 109 and 113 and manage each transaction using the specified type of transaction manager 115. In one embodiment, the application server 107 may be coupled to clients 101 and 103 through a network 105 such as, but not limited to the Internet and/or one or more local networks.
In one embodiment, the application components 109 and 113 executing on the application server 107 may need to access and modify data sources 119, 121, and 123, such as, but not limited to, databases, coupled to the application server 107. Before executing the application components 109 and 113, the application server 107 may initiate a transaction and open connections to needed data sources 119, 121, and 123. When the application server 107 establishes a connection to a data source 119, 121, and 123, the connection may be opened as a local transaction connection or a global transaction connection. A local transaction involving a one-phase commit may be used when accessing only one data source 119, 121, and 123. Local transactions involving one data source 119, 121, or 123 may not need to use the first phase of a two-phase commit (i.e., asking if the data source is prepared to commit). If the data source 119, 121, or 123 is prepared to commit, the data source commits the transaction when instructed to by the application server 107. A global transaction involving a two-phase commit may be used when accessing two or more different data sources 119, 121, and 123. Before a transaction is committed to the connected data sources 119, 121, and 123, each data source 119, 121, and 123 may be asked to prepare to commit. If each data source 119, 121, and 123 is able to commit, it may send a signal to the transaction manager application module 115 indicating so. After all of the data sources 119, 121, and 123 have indicated that they are prepared to commit, the transaction manager application module 115 may send a signal to commit the transaction and record the transaction in a transaction log. If the local transaction or global transaction is not completed successfully, the transaction manager application module may instruct the involved data sources 119, 121, and 123 to rollback any changes made during the transaction.
In one embodiment, one or more of the data sources 119, 121 or 123 may be a logical data source that can associate with a local transaction capable version of the resource and a global transaction capable (e.g. XA) version of the resource. Based on what transaction type is started, the appropriate resource will be selected.
In one embodiment, the application server 107 may have runtime logic 999 configured to determine the transaction manager type for each transaction according to the transaction manager type 207 specified for the application component 109 or 113 that initiates the transaction. For example, if the transaction manager type 209 is specified at the application module level 203, the runtime logic may return the transaction manager type 209 specified at the application module level 203. In another example, if the transaction manager type 207 is specified at the application component level 205, and not specified at the application module level 203, the runtime logic may return the transaction manager type specified at each application component level 205. In one embodiment, the transaction manager type may be statically specified for one or more application components in a deployment descriptor for each application component. In another example, if a default transaction manager type 211 is specified at the instance-wide level 201, and the transaction manager type is not specified at the application module level 203 or the application component level 205, the runtime logic may return the default transaction manager type 211. The default, or instance-wide, transaction manager type may be specified in a configuration file for the application server.
At 301, a transaction manager type may be specified at an application module/application component level for application components. In one embodiment, the transaction manager type may be specified for each application component in an application module at the application module level. In addition or alternatively, an application component in the application module may have a transaction manager type specified at the application component level. A default transaction manager type may be specified at the instance-wide level.
At 303, a transaction manager type may be determined at runtime for each transaction for the application component that initiates the transaction. For example, the specified transaction manager type may be searched for first at the application module level, second at the application component level, and third at the instance-wide level. Other search orders and levels may also be within the scope of the invention. In one embodiment, runtime logic on the application server may be used to determine the specified transaction manager type.
At 305, the transaction may be managed according to the transaction manager type determined at runtime. In one embodiment, the transaction manager application module may manage the transaction with the application component according to the type of transaction manager specified at the application module level, application component level, and/or instance-wide level.
At 401, whether the transaction manager type has been specified at the application module level may be determined. A runtime logic may be used by the application server to determine if the transaction manager type has been specified.
At 403, if the transaction manager type has been specified at the application module level, the transaction manager type for the application module may be returned. For example, a transaction manager type of “global” may have been specified at the application module level. The runtime logic may return “global” as the transaction manager type to use for each application component in the application module.
At 405, if the transaction manager type has not been specified at the application module level, whether the transaction manager type has been specified at the application component level may be determined. In one embodiment, the runtime logic may search each application component to determine if the transaction manager type has been specified at the application component level.
At 407, if the transaction manager type has been specified at the application component level, the transaction manager type for the application component may be returned. For example, a transaction type of “local” may have been specified at the application component level. In one embodiment, if an effective transaction type is specified at both the application module level and the application component level, the runtime logic may return the transaction manager type specified at the application module level and ignore the transaction manager type specified at the application component level.
At 409, if the transaction manager type has not been specified at the application component level, whether the transaction manager type has been specified at the instance-wide level may be determined. A transaction manager type may be specified at the instance-wide level as a default.
At 411, if the transaction manager type has been specified at the instance-wide level, the instance-wide transaction manager type may be returned for the instance. For example, a transaction type of “global” may have been specified at the instance-wide level. In one embodiment, if an effective transaction type is specified at the instance-wide level as well as at the application module level and/or the application component level, the runtime logic may return the transaction manager type specified at the application module level or application component level and ignore the transaction manager type specified at the instance-wide level.
At 413, if the transaction manager type has not been specified at the instance-wide level, an error may be returned. In one embodiment of the invention, another location for a default transaction manager type may be specified.
Specifying the transaction type at an application component level may provide a fine granularity for specifying transaction type to optimize performance. Specifying the transaction type at an application module level allows module-level granularity without the need to specify transaction type for each component. Specifying an instance-wide transaction type provides a default type when neither a component nor module level transaction type is specified.
Thus, the transaction manager module 525 may provide a common interface for interacting with both local and global transactions. This common interface may provide a common interface to return a type of transaction manager to use at runtime. For example, the common interface may include a getTxnMgr( ) method to determine the transaction manager using the following logic:
In the logic above, “ETT” may represent “effective transaction type” and “ETT_determined” may represent a state of whether the transaction manager type has been found (i.e., “false” for not found, “true” for found). Other program instructions may also be within the scope of the invention. In one embodiment, the transaction manager type may be specified at several levels including, but not limited to, the application component level, the application module level, and the instance-wide level. The appropriate “effective transaction type” may be selected by the runtime logic.
The global transaction objects 535, 541, and 539 may be created by the global transaction manager 531 and may each implement the common transaction interface 529. Similarly, local transaction objects 537, 543, and 545 may be created by the local transaction manager 533 and may each implement the common transaction interface 529. The global transaction objects 535, 541, and 539 and local transaction objects 537, 543, and 545 may be created as global transaction manager singletons and local transaction manager singletons respectively when the application server starts up.
A common interface may be used for both local transactions and global transactions. This common interface may include a common interface for thread association and disassociation for global and local transactions. Each transaction may be specific to a single thread of execution. When a transaction (global or local) is started, the transaction manager module's common interface may be used to associate the transaction with a particular thread. When the transaction is completed, the transaction manager module's common interface may be used to disassociate the transaction from the thread. The common interface for thread association/disassociation may also be used when suspending and resuming a transaction.
The common interface provided by the transaction manager module 525 for local and global transactions may include a common interface for object association and disassociation. For example, different objects in an application server container may be part of a transaction and may need to know different events like “transaction has started”, “transaction is about to commit” and “transaction is completed”, etc. The common object association/disassociation interface may provide a common interface for objects involved in global or local transactions to receive (or no longer receive) such events or other transaction information.
The common interface provided by the transaction manager module 525 for local and global transactions may include a common query interface for object and thread association. This interface may be used to determine which transaction a particular object is associated with or which transaction a particular thread is associated with.
A distributed transaction may span multiple processes. The common interface provided by the transaction manager module 525 for local and global transactions may include a common interface to send transactional context from one process to another and create the transaction from the context.
In one embodiment, the common interface provided by the transaction manager module 525 for local and global transactions may include a common interface for all the standard interfaces required by the Java Transaction API (JTA) developed by Sun Microsystems, Inc. JTA specifies standard Java™ interfaces between a transaction manager and the parties involved in a distributed transaction system: the resource manager, the application server, and the transactional applications.
At 601, a transaction manager type may be determined for a transaction to be initiated by the application component. At 603, the transaction manager type may be returned for the application component. At 605, a common transaction manager interface may be called to initiate a transaction of the type returned. At 607, whether the runtime logic returned the transaction manager type as global may be determined. At 609, if the runtime logic did return the transaction manager type as global, the transaction may be managed using a global transaction manager. At 611, whether the runtime logic returned the transaction manager type as local may be determined. At 613, if the runtime logic returned the transaction manager type as local, the transaction may be managed using a local transaction manager.
In one embodiment, a second application component 713 and the application module 711 may not have a transaction manager type specified. An instance-wide level may have a transaction manager type specified as “global”, and the runtime logic may determine that the second application component's transaction should be managed as a global transaction. The transaction manager application module 725 may initiate a global transaction using the global transaction manager 731. The global transaction manager 731 may create a global transaction object 735 to manage a global transaction between the second application component 713 and the databases 721 and 723. In one embodiment of the invention, the local transaction and the global transaction may be managed concurrently by the application server.
At 801, a first application may be run on an application server. At 803, a transaction may be initiated. At 805, a first transaction may be managed from the first application component with a first data source as a local transaction. At 807, a transaction may be initiated. At 809, a second application component may be run on the application server. At 811, a second transaction may be managed from the second application with a second data source as a global transaction. At 813, the first transaction and the second transaction may be managed concurrently within the same application server instance.
The computer system 1000 preferably includes a memory medium on which computer programs according to various embodiments may be stored. The term “memory medium may include an installation medium, e.g., a CD-ROM, or floppy disk; a computer system memory such as DRAM, SRAM, EDO DRAM, SDRAM, DDR SDRAM, Rambus RAM, etc., or a non-volatile memory such as a magnetic media, e.g., a hard drive 1030, or optical storage. The memory medium may include other types of memory as well, or combinations thereof. In addition, the memory medium may be located in a first computer in which the programs are executed, or may be located in a second different computer, which connects to the first computer over a network. In the latter instance, the second computer provides the program instructions to the first computer for execution.
Also, the computer system 1000 may take various forms, including a personal computer system, mainframe computer system, workstation, network appliance, Internet appliance, personal digital assistant (PDA), television system or other device. In general, the term “computer system” can be broadly defined to encompass any device having a processor, which executes instructions from a memory medium. The memory medium preferably stores a software program or programs for event-triggered transaction processing as described herein. The software program(s) may be implemented in any of various ways, including procedure-based techniques, component-based techniques, and/or object-oriented techniques, among others. For example, the software program may be implemented using ACTIVEX controls, C++ objects, JAVABEANS, MICROSOFT FOUNDATION CLASSES (MFC), or other technologies or methodologies, as desired.
Memory 1010 may store program instructions accessed by the CPU 1020. For example, instructions and data implementing a transaction manager module and/or application server may be stored in memory 1010.
Computer system 1000 may further include other software and hardware components, such as an input/output (I/O) interface 1025, that may be coupled to various other components and memory 1010. The CPU 1020 may acquire instructions and/or data through the I/O interface 1025. Through the I/O interface 1025, the CPU 1020 may also be coupled to one or more I/O components. As illustrated, I/O components may include a hard disk drive 1030, a network adapter 1035, a display adapter 1040 and/or a removable storage adapter 1045. Some components 1030 to 1045 may be coupled to the I/O interface 1025. In addition, the computer system 1000 may include one or more of a particular type of component. The computer system 1000 may include one or more components coupled to the system through a component other than the I/O interface 1025. Some computer systems may include additional and/or other components than shown in
Various embodiments may further include receiving or storing instructions and/or information implemented in accordance with the foregoing description upon a carrier medium. Suitable carrier media may include storage media or memory media such as magnetic or optical media, e.g., disk or CD-ROM, as well as transmission media or signals such as electrical, electromagnetic, or digital signals, conveyed via a communication medium such as a network and/or a wireless link
Further modifications and alternative embodiments of various aspects of the invention may be apparent to those skilled in the art in view of this description. Accordingly, this description is to be construed as illustrative only and is for the purpose of teaching those skilled in the art the general manner of carrying out the invention. It is to be understood that the forms of the invention shown and described herein are to be taken as the presently preferred embodiments. Elements and materials may be substituted for those illustrated and described herein, parts and processes may be reversed, and certain features of the invention may be utilized independently, all as would be apparent to one skilled in the art after having the benefit of this description of the invention. Changes may be made in the elements described herein without departing from the spirit and scope of the invention as described in the following claims.
Number | Name | Date | Kind |
---|---|---|---|
4502116 | Fowler et al. | Feb 1985 | A |
5241675 | Sheth et al. | Aug 1993 | A |
5335343 | Lampson et al. | Aug 1994 | A |
5504899 | Raz | Apr 1996 | A |
5504900 | Raz | Apr 1996 | A |
5586312 | Johnson et al. | Dec 1996 | A |
5630081 | Rybicki et al. | May 1997 | A |
5701480 | Raz | Dec 1997 | A |
5795228 | Trumbull | Aug 1998 | A |
5983225 | Anfindsen | Nov 1999 | A |
5983326 | Hagersten et al. | Nov 1999 | A |
6011791 | Okada et al. | Jan 2000 | A |
6038587 | Phillips et al. | Mar 2000 | A |
6041354 | Biliris et al. | Mar 2000 | A |
6061708 | McKeehan et al. | May 2000 | A |
6105067 | Batra | Aug 2000 | A |
6154787 | Ureving et al. | Nov 2000 | A |
6157927 | Schaefer et al. | Dec 2000 | A |
6233587 | Tandon | May 2001 | B1 |
6243737 | Flanagan et al. | Jun 2001 | B1 |
6272675 | Schrab et al. | Aug 2001 | B1 |
6317773 | Cobb et al. | Nov 2001 | B1 |
6338112 | Wipfel et al. | Jan 2002 | B1 |
6374243 | Kobayashi et al. | Apr 2002 | B1 |
6405317 | Flenley | Jun 2002 | B1 |
6411956 | Ng | Jun 2002 | B1 |
6421661 | Doan et al. | Jul 2002 | B1 |
6421688 | Song | Jul 2002 | B1 |
6442618 | Phillips et al. | Aug 2002 | B1 |
6496828 | Cochrane et al. | Dec 2002 | B1 |
6519679 | Devireddy et al. | Feb 2003 | B2 |
6651125 | Maergner et al. | Nov 2003 | B2 |
6687729 | Sievert et al. | Feb 2004 | B1 |
6687831 | Albaugh et al. | Feb 2004 | B1 |
6704737 | Nixon et al. | Mar 2004 | B1 |
6728958 | Klein et al. | Apr 2004 | B1 |
6832238 | Sharma et al. | Dec 2004 | B1 |
6854646 | Ieshima et al. | Feb 2005 | B2 |
6862573 | Kendall et al. | Mar 2005 | B2 |
6873995 | Benson | Mar 2005 | B2 |
6950848 | Yousefizadeh | Sep 2005 | B1 |
6981221 | Neudeck et al. | Dec 2005 | B2 |
7065563 | Islam et al. | Jun 2006 | B2 |
7080119 | Felt et al. | Jul 2006 | B2 |
7082432 | Bhogi et al. | Jul 2006 | B2 |
7089566 | Johnson | Aug 2006 | B1 |
7134008 | Dutt et al. | Nov 2006 | B2 |
7165061 | K et al. | Jan 2007 | B2 |
20020083078 | Pardon et al. | Jun 2002 | A1 |
20020124083 | Jeyaraman et al. | Sep 2002 | A1 |
20030033398 | Carlson et al. | Feb 2003 | A1 |
20030036919 | Felt et al. | Feb 2003 | A1 |
20030046342 | Felt et al. | Mar 2003 | A1 |
20030055968 | Hochmuth et al. | Mar 2003 | A1 |
20040030739 | Yousefizadeh | Feb 2004 | A1 |
20040088413 | Bhogi et al. | May 2004 | A1 |
20040153349 | K. et al. | Aug 2004 | A1 |
20040153383 | K. et al. | Aug 2004 | A1 |
20040153450 | K. et al. | Aug 2004 | A1 |
20040172385 | Dayal | Sep 2004 | A1 |
20040215473 | Bhogi et al. | Oct 2004 | A1 |
20040215894 | Bhogi et al. | Oct 2004 | A1 |
20050015353 | Kumar et al. | Jan 2005 | A1 |
20050015425 | Kumar et al. | Jan 2005 | A1 |
20050055325 | Dutt et al. | Mar 2005 | A1 |
20050066155 | Dutt et al. | Mar 2005 | A1 |
Number | Date | Country | |
---|---|---|---|
20040216109 A1 | Oct 2004 | US |