The present invention relates to relational database management systems, and more particularly to a method for optimizing execution of queries in a relational database management system.
A database management system (DBMS) comprises the combination of an appropriate computer, direct access storage devices (DASD) or disk drives, and database management software. A relational database management system is a DBMS which uses relational techniques for storing and retrieving information. The relational database management system or RDBMS, such as the DB2 product from IBM, comprises computerized information storage and retrieval systems in which data is stored on disk drives or DASD for semi-permanent storage. The data is stored in the form of tables which comprise rows and columns. Each row or tuple has one or more columns.
The RDBMS is designed to accept commands to store, retrieve, and delete data. One widely used and well-known set of commands is based on the Structured Query Language or SQL. The term query refers to a set of commands in SQL for retrieving data from the RDBMS. The definitions of SQL provide that a RDBMS should respond to a particular query with a particular set of data given a specified database content. SQL however does not specify the actual method to find the requested information in the tables on the disk drives. There are many ways in which a query can be processed and each consumes a different amount of processor and input/output access time. The method in which the query is processed, i.e. query execution plan, affects the overall time for retrieving the data. The time taken to retrieve data can be critical to the operation of the database. It is therefore important to select a method for finding the data requested in a RDBMS which minimizes the computer and disk access time, thereby optimizing the cost of doing the query.
To execute a SQL statement, such as “select * from t1”, in a RDBMS program like DB2 the statement is presented to the SQL optimizer. The SQL optimizer parses, tokenizes and semantically analyzes the statement, transforming it into the Query Graph Model (QGM) representation of the statement. The QGM representation is then processed to perform a number of heuristic optimizations. The output of this pass is then fed to the cost-based planning stage. The cost-based planning stage processes the optimized QGM, producing an access plan, based on LOw LEvel Plan OPerators (LOLEPOPs). The plan produced by the cost-based optimizer is then processed by a Code Generation module (CODGEN) to produce an OPeration Code (OPCODE) based access plan, which can be processed at runtime by a Relational Database System (RDS).
In prior versions of RDBMS programs, such as DB2 (Versions 5.2 and older), the OPCODE based access plan is interpreted at runtime by the Relational Database System (RDS). The Relational Database System examines each OPCODE, and looks up the function which is called to process the OPCODE and its operands. The processing for the OPCODE includes loading the OPCODE's operands and making decisions based on information associated with the OPCODE that was provided at CODGEN time. These decisions are made repeatedly, each time the OPCODE processing function is called, and direct the function of the OPCODE. An alternative implementation involved producing multiple OPCODEs for these similar functions. This approach still results in considerable duplication in underlying OPCODE processing.
It will be appreciated that one of the principle problems with existing RDBMS programs, such as the DB2 product, is the fact that the RDBMS includes an interpreter which executes during runtime. Since the interpreter translates and runs the OPCODE's at the same time, operation during runtime is considerably slower than for a compiler based implementation. In view of the costs associate with replacing existing interpreter-based RDBMS programs, there remains a need for a mechanism which can improve the slower runtime performance of the interpreter phase in such systems.
The present invention provides a pre-pass and direct call mechanism which replaces the interpreter phase. The mechanism moves static decisions out of the repeated runtime path, into a pre-pass operation. Advantageously, the mechanism reduces runtime overhead, and improves overall performance of the DBMS during runtime, while maintaining the considerable investment in opcode generation and plan representation, already invested in the implementation of the DBMS.
The pre-pass mechanism according to the present invention replaces the repeated looking up of the function to call to process the OPCODE and the function's operands, and any decisions that need to be made repeatedly (i.e. static decisions), during the interpreter phase of execution. The pre-pass mechanism comprises a pre-processing function which replaces or augments the OPCODE, and any static decisions, with a pointer to the function to call to perform the operation specified by the OPCODE, or a pointer to an intermediate function with an auxiliary data structure, or a pointer to an auxiliary data structure, wherein the auxiliary data structure includes a pointer to the function to call to perform the operation specified by the OPCODE. Advantageously, the pointers are called without additional lookup. The intermediate function to call to perform the function specified by the OPCODE may include processing operations and static decision making.
In a first aspect, the present invention provides a method for pre-processing an access plan generated for a query in a relational database management system, the access plan includes a plurality of operation codes and is stored in memory, each of the operation codes is associated with one or more executable functions for performing the query, the method comprising the steps of: (a) retrieving the access plan from memory; (b) determining an executable function associated with the first operation code in the access plan; (c) augmenting the operation code in the access plan with a pointer to the executable function; (d) repeating steps (b) and (c) for the remaining operation codes in the access plan; (e) storing the modified access plan in memory.
In a second aspect, the present invention provides a relational database management system for use with a computer system wherein queries are entered by a user for retrieving data from tables, the relational database management system includes a query optimizer for generating an access plan associated with the queries entered by the user, the relational database management system comprises: (a) means for retrieving the access plan generated for a query from memory; (b) means for determining an executable function associated with each of the operation codes in the access plan; (c) means for augmenting the operation code in the access plan with a pointer to the associated executable function; (d) means for storing the modified access plan in memory.
In another aspect, the present invention provides a computer program product for use on a computer wherein queries are entered by a user for retrieving data in a relational database management system having a query optimizer for generating an access plan for executing the query, the computer program product comprises: a recording medium; means recorded on the medium for instructing the computer to perform the steps of, (a) retrieving the access plan from memory; (b) determining an executable function associated with the first operation code in the access plan; (c) augmenting the operation code in the access plan with a pointer to the executable function; (d) repeating steps (b) and (c) for the remaining operation codes in the access plan; (e) storing the modified access plan in memory.
Reference will now be made to the accompanying drawings which show, by way of example, preferred embodiments of the present invention, and in which:
Reference is first made to
As shown in
At the center of the DB2 architecture is the Database Services module 22. The Database Services module 22 contains several sub-modules, including the Relational Database System (RDS) 24, the Data Manager 26, and other components such as a SQL compiler. These sub-modules support the functions of the SQL language, i.e. definition, access control, retrieval, and update of user and system data.
Reference is next made to
In prior art systems as described above, the application or access plan is generated by a cost-based optimizer and then processed by a Code Generation module (included in other components 22 shown in
According to the present invention, a pre-pass function or mechanism is included in block 110. The pre-pass function pre-processes the access path plan for the SQL statement before storage in the memory cache. The pre-processing comprises looking up the OPCODE's to determine the corresponding function to execute with each opcode. The opcode is replaced or augmented with a pointer to the function to call to perform the operation specified by the OPCODE. The pre-processing further includes an examination of the function and runtime environment to determine more precisely which function best suits the operation being requested for the SQL statement.
According to another aspect of the pre-pass mechanism, an intermediate processing function may be inserted either during this pre-pass stage, or at a later processing stage, to provide additional, auxiliary processing capabilities. The pointer to the function to call to process the operation specified by the OPCODE is replaced by a pointer to the intermediate processing function and an auxiliary data structure. The auxiliary data structure includes a pointer to store the pointer to the function to call to process the operation specified by the OPCODE. The intermediate function provides the capability to perform additional, auxiliary processing such as gathering statistics on the function which process the operation specified by the OPCODE, or requesting input from a user via the terminal interface 16, before or after calling the function to process the operation specified by the OPCODE. According to another aspect, the pointer to the function to call to process the operation specified by the OPCODE is augmented with another pointer to the auxiliary data structure.
Reference is made to
Reference is next made to
It will be appreciated that the pre-pass mechanism according to the present invention replaces the need for the repeated looking up of the function to call in order to process the OPCODE and its operands. The pre-pass mechanism also replaces any decisions that need to be made repeatedly (i.e. static decisions). The look up operation to the function is replaced with a pointer to the function, whereas static decisions are replaced by pre-processing operation(s).
There are a number of processing options that can be performed with the pre-pass mechanism. For example, the RDS in the current version of DB2 has a save/restore that is always performed for all new subroutines that start up. These operations are not always required, as the information they save is not always affected by the operations that are performed within a section. The save/restore operations can be moved into entry/exit routines, that are then tacked on to the start and end of the subroutine, thus saving considerable overhead for sections that are repeatedly called, and that do not require the save/restore. As described above, static decisions may also be moved into a pre-processing function, allowing the removal of ‘if-then-else’ decisions from the normal runtime path. This is particularly beneficial for decisions that are included due to the general nature of some operands, but that rarely are used. Removing such decisions from being made repeatedly offers significant performance improvements for such operations. An example of such a decision is code page translation for string operations. Although operands are often in the same code page, it is still necessary to confirm this, but it need only be confirmed once. If the operands are in the same code page, then a more optimal string operator may be called, otherwise, a more general string operator, which takes into account dissimilar code pages, must be called. Similar conditions exist for predicates, and mathematical operators, where optimal functions may be called to handle like-to-like operands, in place of the general operators which handle dissimilar operands.
The present invention may be embodied in other specific forms without departing from the spirit or essential characteristics thereof. Therefore, the presently discussed embodiments are considered to be illustrative and not restrictive, the scope of the invention being indicated by the appended claims rather than the foregoing description, and all changes which come within the meaning and range of equivalency of the claims are therefore intended to be embraced therein.
| Number | Date | Country | Kind |
|---|---|---|---|
| 2279222 | Jul 1999 | CA | national |
This application is a continuation of and claims priority to U.S. patent application Ser. No. 09/628,599 entitled “Direct Call Threaded Code” and filed Jul. 28, 2000, now U.S. Pat. No.: 7,392,245 for Ian R. Finlay, and to Canadian Patent Application No. 2,279,222 filed Jul. 30, 1999 both of which are incorporated herein by reference.
| Number | Name | Date | Kind |
|---|---|---|---|
| 5274820 | Gillet | Dec 1993 | A |
| 5379419 | Heffernan et al. | Jan 1995 | A |
| 5386557 | Boykin et al. | Jan 1995 | A |
| 5396622 | Lee et al. | Mar 1995 | A |
| 5481708 | Kukol | Jan 1996 | A |
| 5548758 | Pirahesh et al. | Aug 1996 | A |
| 5577241 | Spencer | Nov 1996 | A |
| 5584026 | Knudsen et al. | Dec 1996 | A |
| 5619692 | Malkemus et al. | Apr 1997 | A |
| 5682535 | Knudsen | Oct 1997 | A |
| 5761653 | Schiefer et al. | Jun 1998 | A |
| 5778354 | Leslie et al. | Jul 1998 | A |
| 5822750 | Jou et al. | Oct 1998 | A |
| 5867712 | Shaw et al. | Feb 1999 | A |
| 5875334 | Chow et al. | Feb 1999 | A |
| 6014674 | McCargar | Jan 2000 | A |
| 6077312 | Bates et al. | Jun 2000 | A |
| 6105033 | Levine | Aug 2000 | A |
| 6112210 | Nori et al. | Aug 2000 | A |
| 6138112 | Slutz | Oct 2000 | A |
| 6151598 | Shaw et al. | Nov 2000 | A |
| 6256784 | Grove | Jul 2001 | B1 |
| 6321274 | Shakib et al. | Nov 2001 | B1 |
| 6339841 | Merrick et al. | Jan 2002 | B1 |
| 6341288 | Yach et al. | Jan 2002 | B1 |
| 6349297 | Shaw et al. | Feb 2002 | B1 |
| 6353820 | Edwards et al. | Mar 2002 | B1 |
| 6424989 | Shaw et al. | Jul 2002 | B1 |
| 6438536 | Edwards et al. | Aug 2002 | B1 |
| 6453314 | Chan et al. | Sep 2002 | B1 |
| 6484312 | Morrison | Nov 2002 | B1 |
| 6636846 | Leung et al. | Oct 2003 | B1 |
| 7020854 | Killian et al. | Mar 2006 | B2 |
| 7085751 | Finlay et al. | Aug 2006 | B2 |
| 7200842 | Susser et al. | Apr 2007 | B1 |
| 20020010798 | Ben-Shaul et al. | Jan 2002 | A1 |
| 20020147969 | Lethin et al. | Oct 2002 | A1 |
| Number | Date | Country | |
|---|---|---|---|
| 20080208799 A1 | Aug 2008 | US |
| Number | Date | Country | |
|---|---|---|---|
| Parent | 09628599 | Jul 2000 | US |
| Child | 12116071 | US |