1. Field
Embodiments of the invention relate to cost-based subquery correlation and decorrelation.
2. Description of the Related Art
Relational DataBase Management System (RDBMS) software using a Structured Query Language (SQL) interface is well known in the art. The SQL interface has evolved into a standard language for RDBMS software and has been adopted as such by both the American National Standards Institute (ANSI) and the International Standards Organization (ISO).
A query may be described as a request for information from a database based on specific conditions. A query may contain a subquery. If the query is a first (or “outer”) SELECT statement, the subquery may be described as a second (or “inner”) SELECT statement within a WHERE or HAVING clause of the first select statement. The subquery typically includes a search condition that refers to a value or set of values needed for the first query to be answered.
In conventional systems, a query optimization phase is separated into two stages: a “query rewrite” stage and a “query optimization” stage. The query rewrite stage performs semantic checking and query transformations. That is, the query may be rewritten (“transformed”) during the query rewrite stage. The query optimization stage takes the transformed query and chooses an efficient access path based on how the query was transformed. An access path may be described as the technique that is selected for retrieving data from a specific table. For example, an access path can involve the use of an index, a sequential scan, or a combination of the two. Thus, execution of the query may be optimized during the query optimization phase of processing.
A subquery correlation may be described as a subquery that contains a correlated reference to a column of a table that is outside the subquery. For example, a subquery correlation may include a subquery that is part of a WHERE or HAVING clause that is applied to a row or group of rows of a table or view that is named in an outer subselect statement. Correlation may be described as adding a correlated predicate to a subquery, and decorrelation may be described as removing a correlated predicate from the subquery.
Some transformations, such as subquery correlation and decorrelation do not always result in a more efficient access path and may cause performance degradation. The transformation that provides the most efficient access path is not known until after the query optimization stage, but the query transformation occurs before the optimization. Thus, at query rewrite time, the best transformation is not known.
For example in query (1), the correlated subquery should be decorrelated:
In query (1), the SELECT 1 statement is a subquery. Also, the condition B.COL=A.COL refers to table A, which is in the outer select, and this reference is an example of a correlated subquery. For this example, it is assumed that BIG_TABLE is very large, SMALL_TABLE is very small, and a unique index is available on BIG_TABLE.COL. The access path for query (1), as written, would be to scan BIG_TABLE and probe SMALL_TABLE for every row of BIG_TABLE. This, however, requires more processing than query (2), which results from transforming query (1) during a query rewrite stage.
In transformed query (2), the subquery has been decorrelated, allowing SMALL_TABLE to be accessed first and then joined to BIG_TABLE (after duplicates are removed from SMALL_TABLE) using the unique index on BIG_TABLE. In this example, decorrelating the subquery resulted in better performance.
However, if the same tables were switched, then decorrelating the subquery would cause performance to degrade. Query (3) provides an example of switching the tables:
In query (3), the subquery (i.e., the SELECT 1 statement) should not be decorrelated to remove the reference to B.COL. However, the only way to know whether performance would be better with a correlated or decorrelated subquery would be to determine a cost for each subquery and compare the costs. This means that in the query rewrite stage, the query is rewritten in correlated form and in decorrelated form. Then, the query optimization stage is invoked for each version of the rewritten query. For a query that contains a single subquery, this effectively doubles the amount of optimization processing needed to optimize the query. For queries that contain multiple subqueries, optimization processing may increase exponentially.
Therefore, there is a need in the art for improved query rewrite and optimization.
Provided are a method, article of manufacture, and system that determine that a query includes at least one subquery that may be correlated or decorrelated. An internal representation of the query that represents the subquery in both correlated and decorrelated form is generated, wherein the internal representation includes at least one virtual table.
Referring now to the drawings in which like reference numbers represent corresponding parts throughout:
In the following description, reference is made to the accompanying drawings which form a part hereof and which illustrate several embodiments. It is understood that other embodiments may be utilized and structural and operational changes may be made without departing from the scope of the invention.
The server computer 120 includes system memory 122, which may be implemented in volatile and/or non-volatile devices. System memory 122 stores a Relational DataBase Management System (RDBMS) 130. The RDBMS 130 includes an optimizer 132 and other components 138. The optimizer 132 includes a query rewrite module 134 and a query optimization module 136. System memory 122 also stores one or more server applications 140. These computer programs that are stored in system memory 122 are executed by a processor (e.g., a Central Processing Unit (CPU)) (not shown). The server computer 120 provides the client computer 100 with access to data in a relational data store 170. In alternative embodiments, the computer programs may be implemented as hardware, software, or a combination of hardware and software.
The client computer 100 and server computer 120 may comprise any computing device known in the art, such as a server, mainframe, workstation, personal computer, hand held computer, laptop telephony device, network appliance, etc.
The network 190 may comprise any type of network, such as, for example, a Storage Area Network (SAN), a Local Area Network (LAN), Wide Area Network (WAN), the Internet, an Intranet, etc.
The relational data store 170 may comprise an array of storage devices, such as Direct Access Storage Devices (DASDs), Just a Bunch of Disks (JBOD), Redundant Array of Independent Disks (RAID), virtualization device, etc.
Embodiments of the invention enable evaluation of both correlated and decorrelated forms of a query, without requiring multiple rewrites of the query with the query rewrite module 134 and without multiple passes through the query optimization processing with the query optimization module 136.
In block 204, the query rewrite module 134 sets an indicator (e.g., a flag) for each subquery that may be correlated or decorrelated to indicate to the query optimization module 136 that both correlation and decorrelation costs should be determined for the subquery. The term “correlation costs” refers to costs of a correlated subquery, and the term “decorrelation costs” refers to costs of a decorrelated subquery. In block 206, the query rewrite module 134 generates an internal representation of the query, which is a hybrid query that is both correlated and decorrelated.
In particular, a virtual table is generated for a subquery that may be correlated or decorrelated, and the virtual table is joined to an outer table of the query. The “outer table” is one that is used outside of the subquery and that may be correlated or decorrelated. An example query (4) is provided merely for illustration and is not intended to limit embodiments in any manner.
The query is internally represented with 2 “query blocks”. “Query block” 1 contains table BIG_TABLE and the EXISTS predicate. “Query block” 2 contains table SMALL_TABLE and “B.COL=A.COL” predicate. In block 206, a Virtual Table (VT) is added to “query block” 1. “Query block” 1 now contains 2 tables: BIG_TABLE and VT. Also, the EXISTS predicate in “query block” 1 is transformed to a join predicate between BIG_TABLE and VT).
The internal representation represents each subquery that may be correlated or decorrelated in both correlated and decorrelated forms simultaneously, which allows the query optimization module 136 to determine costs for both forms of each subquery, while determining an access path to be used. That is, during the query rewrite stage, the query rewrite module 134 rewrites the query to form the internal representation that the query optimization module 136 is able to process as both correlated and decorrelated. Thus, the query rewriting is performed once. In block 208, the query rewrite module 134 passes the internal representation to the query optimization module 136.
In block 210, the query rewrite module 134 generates an internal representation, which does not include a virtual table, and processing continues to block 208.
In block 406 the query optimization module 136 determines whether correlated costs are to be determined. In certain embodiments, the determination is made by determining whether indicators are set to indicate that correlation costs should be determined. If so, processing continues to block 408, otherwise, processing continues to block 410. In block 408, the query optimization module 136 determines correlated costs for the query block and processing continues to block 410.
In block 410, the query optimization module 136 determines whether non-correlated costs (i.e., decorrelation costs) are to be determined. In certain embodiments, the determination is made by determining whether indicators are set to indicate that decorrelation costs should be determined. If so, processing continues to block 412, otherwise, processing continues to block 414. In block 412, the query optimization module 136 determines non-correlated costs for the query block.
In block 414, the query optimization module 136 determines whether there are more query blocks to process. If so, processing continues to block 416, otherwise, processing continues to block 418. In block 416, the query optimization module 136 removes the query block that has just been processed and loops back to block 404 to process another query block. In block 418, the query optimization module 136 performs other optimization processing, such as selecting an access path associated with the form having a lowest cost.
Thus during the query optimization stage, the query optimization module 136 determines costs for the subquery in both the correlated and decorrelated forms. Although this increases the search space of competing access path choices, the query optimization module 136 is invoked once and calculates costs associated with each subquery of the query that may be correlated or decorrelated. Thus, unlike conventional techniques that invoke the query optimization stage multiple times, causing the entire query to be re-costed, embodiments provide a query optimization module 136 that is able to determine the cost of just the parts associated with a subquery that may be correlated or decorrelated.
When the cost for the correlated form is determined, the correlated predicate is eligible. When the cost for the decorrelated form is determined, the correlated predicate is not eligible. The resulting costs and access path choices are saved and used when calculating the cost of a join between the outer table and a virtual table.
When calculating the cost of joining the outer table and the virtual table, the query optimization module 136 evaluates two different join sequences (normal join enumeration). When calculating the cost of the virtual table join to outer table, the decorrelated form of the virtual table is considered because that form allows the virtual table to be accessed before outer table. The saved decorrelated costs and access path choices for the virtual table are retrieved and used to calculate the cost of the join sequence. When calculating the cost of the outer table join to virtual table, both the correlated and non-correlated forms of the virtual table are considered. The saved costs and access path choices for the virtual table form under consideration are retrieved and used to calculate the cost of the join.
The resulting choices are: virtual table (in decorrelated form) join to outer table, outer table join to virtual table (in correlated form), and outer table join to virtual table (in decorrelated form). Thus, when the query optimization module 136 selects an access path based on the determined costs, the query optimization module 136 selects the resulting join with the lowest cost.
Thus embodiments avoid the extra overhead in the query rewrite stage and the query optimization stage by invoking these stages once and performing a minimal set of transformations and costing needed to expand the access path search space to cover the desired forms of the query.
To provide a better understanding of the invention, an example will be provided. Embodiments are not intended to be limited to the example. During the query rewrite stage, when a subquery is encountered, the query rewrite module 134 evaluates the subquery to determine whether the subquery can be correlated or decorrelated. In certain embodiments, the subquery may be correlated or decorrelated if the correlation is part of an equal (“=”) condition. If the subquery can be correlated or decorrelated, the query rewrite module 134 marks the subquery as such (e.g., by setting flags) and represents the subquery in the FROM clause that corresponds to the WHERE clause containing the subquery. Query (5) is an example query:
If the query rewrite module 134 determines that the subquery in query (5) may be decorrelated based on semantic rules, then the query rewrite module 134 represents the subquery in the FROM clause containing T1. This allows the query optimization module 136 to recognize this as a special type of join between T1 and the subquery. In addition, the query rewrite module 134 generates a join predicate between an object representing T1 and an object representing the subquery.
The internal representation of the subquery may be referred to as a Virtual Table (VT). Query (6) is a sample internal representation of query (5):
SELECT T1.*FROM T1,VT WHERE T1.C1=VT.C1 (6)
For query (6), VT is defined as (SELECT T2.C1 FROM T2 WHERE T2.C1=T1.C1).
The query rewrite module 134 has now transformed query (5) into query (6), which is a hybrid query that is both correlated and decorrelated. Query (6) is correlated because the correlated predicate is contained in the subquery. Query (6) is decorrelated because of the join predicate between T1 and VT.
The query optimization module 136 recognizes that query (6) has two forms, correlated and decorrelated. The query optimization module 136 determines costs for query (6) for both the correlated and the decorrelated forms.
When the cost for the correlated form is determined, the correlated predicate is eligible. When the cost for the decorrelated form is determined, the correlated predicate is not eligible. The resulting costs and access path choices are saved and used when calculating the cost of the join between T1 and VT.
When calculating the cost of joining T1 and VT, the query optimization module 136 evaluates two different join sequences (normal join enumeration). When calculating the cost of the VT join to T1, the decorrelated form of the VT is considered because that form allows the VT to be accessed before T1. The saved decorrelated costs and access path choices for the VT are retrieved and used to calculate the cost of the join sequence. When calculating the cost of the T1 join to VT, both the correlated and non-correlated forms of the VT are considered. The saved costs and access path choices for the VT form under consideration are retrieved and used to calculate the cost of the join.
The resulting choices are: VT (decorrelated) join to T1, T1 join to VT (correlated), and T1 join to VT (decorrelated). The query optimization module 136 selects the choice with the lowest cost. This allows an efficient access path to be obtained while minimizing the amount of optimization processing involved in obtaining that access path.
The described operations may be implemented as a method, apparatus or article of manufacture using standard programming and/or engineering techniques to produce software, firmware, hardware, or any combination thereof. The term “article of manufacture” as used herein refers to code or logic implemented in a medium, where such medium may comprise hardware logic (e.g., an integrated circuit chip, Programmable Gate Array (PGA), Application Specific Integrated Circuit (ASIC), etc.) or a computer readable medium, such as magnetic storage medium (e.g., hard disk drives, floppy disks, tape, etc.), optical storage (CD-ROMs, optical disks, etc.), volatile and non-volatile memory devices (e.g., EEPROMs, ROMs, PROMs, RAMs, DRAMs, SRAMs, firmware, programmable logic, etc.). Code in the computer readable medium is accessed and executed by a processor. The medium in which the code or logic is encoded may also comprise transmission signals propagating through space or a transmission media, such as an optical fiber, copper wire, etc. The transmission signal in which the code or logic is encoded may further comprise a wireless signal, satellite transmission, radio waves, infrared signals, Bluetooth, etc. The transmission signal in which the code or logic is encoded is capable of being transmitted by a transmitting station and received by a receiving station, where the code or logic encoded in the transmission signal may be decoded and stored in hardware or a computer readable medium at the receiving and transmitting stations or devices. Additionally, the “article of manufacture” may comprise a combination of hardware and software components in which the code is embodied, processed, and executed. Of course, those skilled in the art will recognize that many modifications may be made to this configuration without departing from the scope of the present invention, and that the article of manufacture may comprise any information bearing medium known in the art.
Certain embodiments may be directed to a method for deploying computing infrastructure by a person or automated processing integrating computer-readable code into a computing system, wherein the code in combination with the computing system is enabled to perform the operations of the described embodiments.
The term logic may include, by way of example, software or hardware and/or combinations of software and hardware.
The logic of
The illustrated logic of
The computer architecture 500 may comprise any computing device known in the art, such as a mainframe, server, personal computer, workstation, laptop, handheld computer, telephony device, network appliance, virtualization device, storage controller, etc. Any processor 502 and operating system 505 known in the art may be used.
The foregoing description of embodiments has been presented for the purposes of illustration and description. It is not intended to be exhaustive or to limit the embodiments to the precise form disclosed. Many modifications and variations are possible in light of the above teaching. It is intended that the scope of the embodiments be limited not by this detailed description, but rather by the claims appended hereto. The above specification, examples and data provide a complete description of the manufacture and use of the composition of the embodiments. Since many embodiments can be made without departing from the spirit and scope of the invention, the embodiments reside in the claims hereinafter appended or any subsequently-filed claims, and their equivalents.
This application is a continuation of and claims the benefit of “COST-BASED SUBQUERY CORRELATION AND DECORRELATION”, having application Ser. No. 11/156,500, filed Jun. 17, 2005, the entire contents of which is incorporated herein by reference.
Number | Date | Country | |
---|---|---|---|
Parent | 11156500 | Jun 2005 | US |
Child | 12104379 | US |