US9922088B2 - Cardinality estimation using spanning trees - Google Patents
Cardinality estimation using spanning trees Download PDFInfo
- Publication number
- US9922088B2 US9922088B2 US14/145,777 US201314145777A US9922088B2 US 9922088 B2 US9922088 B2 US 9922088B2 US 201314145777 A US201314145777 A US 201314145777A US 9922088 B2 US9922088 B2 US 9922088B2
- Authority
- US
- United States
- Prior art keywords
- equivalence
- query
- predicate
- node
- attributes
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Active, expires
Links
- 238000000034 method Methods 0.000 claims abstract description 24
- 238000003860 storage Methods 0.000 claims description 23
- 239000013598 vector Substances 0.000 claims description 11
- 238000004590 computer program Methods 0.000 abstract description 4
- 238000010586 diagram Methods 0.000 description 18
- 230000006870 function Effects 0.000 description 11
- 238000012545 processing Methods 0.000 description 10
- 238000004891 communication Methods 0.000 description 8
- 238000013459 approach Methods 0.000 description 2
- 238000013500 data storage Methods 0.000 description 2
- 238000007726 management method Methods 0.000 description 2
- 238000004519 manufacturing process Methods 0.000 description 2
- 230000003287 optical effect Effects 0.000 description 2
- 238000012986 modification Methods 0.000 description 1
- 230000004048 modification Effects 0.000 description 1
- 238000010606 normalization Methods 0.000 description 1
- 238000005457 optimization Methods 0.000 description 1
Images
Classifications
-
- G06F17/30469—
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/20—Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
- G06F16/24—Querying
- G06F16/245—Query processing
- G06F16/2453—Query optimisation
- G06F16/24534—Query rewriting; Transformation
- G06F16/24542—Plan optimisation
- G06F16/24545—Selectivity estimation or determination
Definitions
- the embodiments relate generally to databases and more specifically to query optimization using cardinality estimation.
- DBMS Database Management System
- a user issues a query to the DBMS that conforms to a defined query language.
- DBMS determines a query plan for the query. Once determined, the DBMS then uses the query plan to execute the query.
- a DBMS relies on cardinality estimates that estimate the sizes (i.e., how many rows) of queries and sub-queries. Cardinality estimates are used to assess the efficiency (e.g., cost) of the query plan before the query plan is executed.
- FIG. 1 is an example database computing environment in which embodiments can be implemented.
- FIG. 2 is a block diagram of a cardinality estimator, according to an embodiment.
- FIGS. 3A-B are diagrams of a forest of graphs corresponding to the join equivalence classes for a query and the minimum spanning trees in the forest of graphs, according to an embodiment.
- FIG. 4 is a flowchart of a method for generating a cardinality estimate for a query, according to an embodiment.
- FIG. 5 is a flowchart of a method for generating a cardinality estimate for a sub-query, according to an embodiment.
- FIG. 6 is a diagram of an algorithm for computing the cardinality of a query, according to an embodiment.
- FIG. 7 is diagram of an algorithm for determining join equivalence classes for a query, according to an embodiment.
- FIG. 8 is a diagram of an algorithm for computing a selectivity estimate for using spanning trees for a query, according to an embodiment.
- FIG. 9 is a diagram of an algorithm for computing the selectivity estimate for using spanning trees for a sub-query, according to an embodiment.
- FIG. 10 is a diagram of an algorithm for computing the minimum spanning trees for a graph forest of join equivalence classes, according to an embodiment.
- FIG. 11 is a block diagram of an example computer system in which embodiments may be implemented.
- cardinality estimates are used for generating an optimal query plan for a query.
- FIG. 1 is an example database computing environment 100 in which embodiments can be implemented.
- Computing environment 100 includes a database management system (DBMS) 140 and client 110 that communicates DBMS 140 .
- DBMS 140 may be a system executing on a server and accessible to client 110 over a network, such as network 120 , described below.
- client 110 is represented in FIG. 1 as a separate physical machine from DBMS 140 , this is presented by way of example, and not limitation.
- client 110 occupies the same physical system as DBMS 140 .
- client 110 is a software application which requires access to DBMS 140 .
- a user may operate client 110 to request access to DBMS 140 .
- client and user will be used interchangeably to refer to any hardware, software, or human requestor, such as client 110 , accessing DBMS 140 either manually or automatically. Additionally, both client 110 and DBMS 140 may execute within a computer system, such as an example computer system discussed in FIG. 11 .
- Network 120 may be any network or combination of networks that can carry data communications.
- Such a network 120 may include, but is not limited to, a local area network, metropolitan area network, and/or wide area network that include the Internet.
- DBMS 140 receives a query, such as query 102 , from client 110 .
- Query 102 is used to request, modify, append, or otherwise manipulate or access data in database storage 150 .
- Query 102 is transmitted to DBMS 140 by client 110 using syntax which conforms to a query language.
- the query language is a Structured Query Language (“SQL”), but may be another query language.
- SQL Structured Query Language
- DBMS 140 is able to interpret query 102 in accordance with the query language and, based on the interpretation, generate requests to database storage 150 .
- Query 102 may be generated by a user using client 110 or by an application executing on client 110 .
- DBMS 140 Upon receipt, DBMS 140 begins to process query 102 . Once processed, the result of the processed query is transmitted to client 110 as query result 104 .
- DBMS 140 includes a parser 162 , a normalizer 164 , a compiler 166 , and an execution unit 168 .
- Parser 162 parses the received queries 102 .
- parser 162 may convert query 102 into a binary tree data structure which represents the format of query 102 .
- other types of data structures may be used.
- parser 162 passes the parsed query to a normalizer 164 .
- Normalizer 164 normalizes the parsed query. For example, normalizer 164 eliminates redundant SQL constructs from the parsed query. Normalizer 164 also performs error checking on the parsed query that confirms that the names of the tables in the parsed query conform to the names of tables 180 . Normalizer 164 also confirms that relationships among tables 180 , as described by the parsed query, are valid.
- normalizer 164 passes the normalized query to compiler 166 .
- Compiler 166 compiles the normalized query into machine-readable format. The compilation process determines how query 102 is executed by DBMS 140 . To ensure that query 102 is executed efficiently, compiler 166 uses a query optimizer 170 to generate an access plan for executing the query.
- Query optimizer 170 analyzes the query and determines a query plan for executing the query.
- the query plan retrieves and manipulates information in the database storage 150 in accordance with the query semantics. This may include choosing the access method for each table accessed, choosing the order in which to perform a join operation on the tables, and choosing the join method to be used in each join operation. As there may be multiple strategies for executing a given query using combinations of these operations, query optimizer 170 generates and evaluates a number of strategies from which to select the best strategy to execute the query.
- query optimizer 170 generates multiple query plans. Once generated, query optimizer 170 selects a query plan from the multiple query plans to execute the query.
- the selected query plan may be a cost efficient plan, a query plan that uses the least amount of memory in DBMS 140 , a query plan that executes the quickest, or any combination of the above, to give a few examples.
- DBMS 140 uses cardinality estimator 172 .
- Cardinality estimator 172 generates an estimate of the size (i.e., number of rows) of a query plan before the query plan is executed. Based on cardinality estimates, query optimizer 170 costs and selects an efficient query plan that executes query 102 from multiple query plans.
- FIG. 2 is a block diagram 200 of a cardinality estimator, according to an embodiment.
- cardinality estimator receives query 102 as input and generates a cardinality estimate 204 as output.
- Query 102 such as query Q accesses data in one or more tables.
- each table R has a set of attributes, denoted as attr(R).
- query 102 also contains a predicate.
- a predicate is a condition that may be evaluated in query 102 .
- a predicate may be a join predicate.
- a join predicate is a predicate that specifies a join operation that links several tables together on a particular set of attributes when evaluated.
- An evaluated join predicate typically returns a join table as a result.
- cardinality estimator 172 determines a cardinality estimate over join equivalence classes for a join predicate.
- a join equivalence class for a predicate may be non-constant or constant.
- a n ⁇ is a set of common attributes for tables R i , i ⁇ ⁇ 1, . . . , m ⁇ .
- a tuple is an ordered set of elements, which is here an ordered set of a subset of attributes and a constant vector.
- cardinality estimator 172 may determine a cardinality estimate over a set of join equivalence classes. For example, given a set of join equivalence classes corresponding to the logical expression: ⁇ p(R1, . . . ,Rm) R 1 R 2 . . . R m ) cardinality estimator 172 computes the cardinality estimation for a sub-expression involving relations ⁇ R i1 , . . . R it ⁇ ⁇ ⁇ R 1 , . . . , R m ⁇ .
- cardinality estimator 172 determines cardinality estimate 204 over a set of join equivalence classes. From the one or more undirected graphs, cardinality estimator 172 identifies minimum spanning tees that link the vertices of the undirected graph.
- cardinality estimator 172 identifies minimum spanning tees that link the vertices of the undirected graph.
- a spanning tree of an undirected graph is a tree that connects all vertices in the undirected graph.
- an edge in the undirected graph has assigned a weight which in the graphs corresponding to the join equivalence classes may represent the quality of the selectivity estimation of an edge.
- cardinality estimator 172 determines a set of vertices V (or nodes), where each node R i [A] represents a relation and the relation's attributes that are participating in the join equivalence class. In an embodiment, for a constant join equivalence class, cardinality estimator 172 generates an extra node for the constant vector (c 1 , . . . c n ) as discussed below. In an embodiment, cardinality estimator 172 also generates a set of edges E of the form (R i , R j , (p 1 , . . . , p n )), for each join predicate (p 1 , . . . , p n ) between R i and R j In an embodiment, cardinality estimator 172 annotates each edge with one or more predicates that correspond to the join predicates between the two nodes of the edge.
- FIG. 3 A is an example graph generated using a cardinality estimator, according to an embodiment.
- predicate p includes multiple join predicates p1 to p21 at shown below:
- Graph G1(V 1 , E 1 ), including the vertices V 1 and edges E 1 described above is illustrated in diagram 300 A in FIG. 3A .
- Graph G1 is a graph showing a constant equivalence class for the predicate p′. Additionally, FIG. 3A also includes a listing of predicates p1 to p12 that comprise predicate p′ that defines the edges in graph G1.
- FIG. 3A Graph G2(V 2 , E 2 ), including the vertices V 2 and edges E 2 described above is also illustrated in FIG. 3A .
- Graph G2 is a diagram of a constant equivalence class for the predicate p′′. Additionally, FIG. 3A also includes a listing of predicates p1 to p21 that comprise predicate p′′ and defines edges in graph G2.
- cardinality estimator 172 determines the spanning trees in the graphs. From the spanning trees, cardinality estimator 172 determines the minimum spanning tree and calculates the cardinality estimate from the minimum spanning tree as discussed below.
- predicate pi which annotates more than one edge in equivalence graphs corresponding to a query Q.
- the predicate p5 annotates the edge (R 4 [A, B], c(A, cB), (p5, p6)) in graph G1 and the edge (R 4 [A], c(A), (p5)) in graph G2.
- cardinality estimator 172 determines a cardinality estimate
- cardinality estimator 172 generates a cardinality estimate based on a subset S of the join predicates representing some relationships of the relations ⁇ R 1 , . . . R n ⁇ that forms spanning trees.
- cardinality estimator 172 excludes redundant (or repeating) predicates from the spanning tree.
- FIG. 3B is a diagram 300 B of the example spanning tress of graphs G1 and G2, according to an embodiment.
- the dashed lines between the nodes in graphs G1 and G2 indicate the edges that are included in the spanning trees for graphs G1 and G2.
- the subset of predicates that are included in the spanning tree for graphs G1 and G2 are p5, p6, p7, p8, p11, p12, p14 and p20, as shown in bold in FIG. 3B .
- cardinality estimator 172 sets T(G( ⁇ (p))) as a spanning tree of G( ⁇ (p).
- the predicates in the spanning tree T(G( ⁇ (p))) can be defined as a set of predicates annotating the edges in the spanning tree T(G( ⁇ (p))).
- cardinality estimator 172 applies the following theorem to calculate cardinality estimation for query Q. If T(G( ⁇ (p))) is a spanning tree of G( ⁇ (p)), then the conjunct generated by the spanning tree infers the original predicate p, such as: ( c ⁇ Preds(T(G( ⁇ (p)))) c ) p
- v 1 , v 2 , (p 1 , . . . , p n ) an edge in G( ⁇ (p)) ⁇ is inferred by the conjunct generated by the spanning tree: ( c ⁇ Preds(T(G( ⁇ (p)))) C ) q
- cardinality estimator 172 uses operation ⁇ d to remove duplicate predicates.
- cardinality estimator 172 rewrites query Q using the predicates in the forest of join equivalence classes Preds( ⁇ T(G( ⁇ (s 1 ))), . . . , T(G ⁇ (s e ))) ⁇ ), such as:
- cardinality estimator 172 can split predicates into e join equivalence classes.
- selectivity(s) STSelectivity(Q) and can be computed using an algorithm in FIG. 8 , according to an embodiment.
- FIG. 4 is a flowchart of a method 400 of a cardinality estimator generating a cardinality estimate for a query Q, according to an embodiment.
- Method 400 can be performed by processing logic that can comprise hardware (e.g., circuitry, dedicated logic, programmable logic, microcode, etc.), software (e.g., instructions run on a processing device), or a combination thereof.
- the method 400 is performed by cardinality estimator 172 .
- the cardinality estimator receives a query Q.
- the cardinality estimator determines the minimum set of equivalence classes. For example, cardinality estimator 172 determines e equivalence classes ⁇ (s 1 ), . . . , ⁇ (s e ) ⁇ . As discussed above, equivalence classes are determined based on sets of common attributes that are included in tables joined in query Q.
- the cardinality estimator determines the minimum spanning tress for cardinality estimation.
- the edges represent predicate attributes, where each edge has a weight computed by DBMS 140 .
- the weight for an edge representing a join predicate between two tables is a property vector of the edge, including, for example, the confidence level of the selectivity estimation for an edge; the quality of the selectivity estimation expressed as the properties of the join predicates. Such properties may include a type of relationship between the two tables.
- a function which compares the two property vectors of the edges can be used, according to an embodiment.
- cardinality estimator 172 determines the minimum spanning trees as the trees that include all vertices in the join equivalence graphs, such that the nodes of the graphs are connected using the edges associated with the lowest weights. In an embodiment, cardinality estimator 172 defines the spanning trees as ⁇ T(G( ⁇ (s 1 ))), . . . , T(G ⁇ (s e ))) ⁇ .
- cardinality estimator 172 determines a cardinality estimate 204 for query Q
- query optimizer 170 uses cardinality estimate 204 to determine a query plan from query Q.
- cardinality estimator 172 also determines a cardinality estimate for a sub-expression of query Q, such as sub-expression Q′.
- FIG. 5 is a flowchart of a method 500 of a cardinality estimator generating a cardinality estimate for a sub-section Q′ of query Q, according to an embodiment.
- Method 500 can be performed by processing logic that can comprise hardware (e.g., circuitry, dedicated logic, programmable logic, microcode, etc.), software (e.g., instructions run on a processing device), or a combination thereof.
- the method 500 is performed by cardinality estimator 172 .
- the cardinality estimator receives a query Q.
- the cardinality estimator receives a subset of tables.
- cardinality estimator 172 receives a subset of tables that query Q manipulates, such as ⁇ Ri 1 ), . . . , Ri t ⁇ ⁇ ⁇ Ri, . . . , Rn ⁇ .
- the cardinality estimator determines the equivalence classes. For example, cardinality estimator 172 determines e equivalence classes ⁇ (s 1 ), . . . , ⁇ (s e ) ⁇ . As discussed above, equivalence classes are determined based on sets of common attributes that are included in tables joined in query Q.
- the cardinality estimator generates join equivalence graphs.
- the cardinality estimator determines the sub-graphs from the join equivalence graphs that include the subset of tables. For example, for each graph G( ⁇ (s i )), cardinality estimator 172 determines the vertex induced sub-graph G′( ⁇ (s i )), where the vertex induced sub-graph G′( ⁇ (s i )) includes only vertices ⁇ Ri 1 , . . . , Ri t ⁇ . In an embodiment, cardinality estimator 172 represents the join equivalence sub-graphs as ⁇ G′( ⁇ (s 1 ), . . . , G′ ⁇ (s e )) ⁇ .
- the cardinality estimator determines the minimum spanning tress for cardinality estimation. For example, in the join equivalence sub-graphs ⁇ G′( ⁇ (s 1 )), . . . , G′ ⁇ (s e )) ⁇ , the edges represent predicate attributes, where each predicate attribute has a weight specified by DBMS 140 as described above.
- cardinality estimator 172 determines the minimum spanning trees as the trees that include all vertices in the join equivalence sub-graphs G′( ⁇ (s i )), such that the nodes of the graphs are connected using the edges associated with the lowest weights. In an embodiment, cardinality estimator 172 defines the spanning trees as ⁇ T(G(C(s 1 ))), . . . , T(G ⁇ (s e ))) ⁇ .
- FIG. 6 is a diagram of an algorithm 600 for computing the cardinality of a query, according to an embodiment.
- Algorithm 600 may be implemented by cardinality estimator 172 to generate a cardinality estimate 204 .
- Algorithm 600 uses algorithms 700 - 1000 discussed in FIGS. 7-10 to generate cardinality estimate 204 for query Q.
- Selectivity estimation for Q is computed by algorithm 800 (STSelectivity(Q) call).
- Algorithm 600 uses this new selectivity estimation and other estimates to compute the final cardinality estimation for the whole query Q 0 (at line 3 ).
- FIG. 7 is diagram of an algorithm 700 for determining join equivalence classes for a query, according to an embodiment. as required by cardinality estimator 172 during operations 404 and 506
- cardinality estimator 172 determines join equivalence classes for a predicate.
- the output of algorithm 700 is a minimum set of equivalence classes, such as such as ⁇ (s 1 ), . . . , ⁇ (s e ) ⁇ .
- the details of algorithm 700 are included in FIG. 7 .
- FIG. 8 is a diagram of an algorithm 800 for computing a selectivity estimate for using spanning trees for a query used by cardinality estimator 172 during operation 204 , according to an embodiment.
- algorithm 800 uses algorithm 700 to generate a minimum set of the equivalence classes, such as set ⁇ (s 1 ), . . . , ⁇ (s e ) ⁇ , at step 1. From the minimum set of the equivalence classes, cardinality estimator 172 generates graphs ⁇ G( ⁇ (s 1 ))), . . . , G ⁇ (s e )) ⁇ , one graph for each equivalence class, at step 2. Cardinality estimator 172 then uses algorithm 1000 to generate minimum spanning trees ⁇ T(G( ⁇ (s 1 ))), . . .
- cardinality estimator uses the minimum spanning trees ⁇ T(G( ⁇ (s 1 ))), . . . , T(G ⁇ (s e ))) ⁇ to determine selectivity for predicate s.
- FIG. 9 is a diagram of an algorithm 900 for computing the selectivity estimate for using spanning trees for a sub-query, according to an embodiment.
- the second input to algorithm 900 is a subset of tables of tables in a query Q, such as: ⁇ R i1 , . . . ,R it ⁇ ⁇ ⁇ R 1 , . . . ,R n ⁇ .
- the output of algorithm 900 is an estimated selectivity of a sub-predicate s′, where s′ includes predicates on the subset ⁇ R i1 , . . . . R it ⁇ .
- algorithm 900 uses algorithm 700 to generate a minimum set of the equivalence classes, such as set ⁇ (s 1 ), . . . , ⁇ (s e ) ⁇ , at step 1. From the minimum set of the equivalence classes, cardinality estimator 172 generates graphs ⁇ G( ⁇ (s 1 ))), . . . , G ⁇ (s e )) ⁇ , one graph for each equivalence class, at step 2.
- Cardinality estimator 172 then computes a vertex induced sub-graph G′( ⁇ (s i )) for vertices of a subset of tables ⁇ R i1 , . . . R it ⁇ , at step 3.
- cardinality estimator 172 determines, using the algorithm 1000 , the minimum spanning trees ⁇ T(G′( ⁇ (s 1 ))), . . . , T(G′( ⁇ (s e ))) ⁇ from the new forest of sub-graph ⁇ G′( ⁇ (s 1 )), . . . , G′( ⁇ (s e )) ⁇ .
- FIG. 10 is a diagram of an algorithm 1000 for computing the minimum spanning trees, as required by cardinality estimator 172 during operations 408 and 512 , for a graph forest of join equivalence classes, according to an embodiment.
- the edges in the graph such as graph ⁇ G( ⁇ (s i ))), . . . , G( ⁇ (s e )) ⁇ , have different weights.
- Cardinality estimator 172 may assign the weights to the edges based on a pre-configured criteria in DBMS 140 .
- cardinality estimator 172 may evaluate the weights to the edges based on a betterQuality(e i e j ) function which compares the two edges e i , e j , and determine the quality of the edge for inclusion into a minimum spanning tree.
- the betterQuality(e i , e j ) function is included as part of algorithm 1000 .
- cardinality estimator 172 Based on the quality of edges as determined by the weights, cardinality estimator 172 generates the minimum spanning trees from the forest of graphs ⁇ G( ⁇ (s 1 ))), . . . , G( ⁇ (s e )) ⁇ .
- the output of algorithm 1000 is a set of best spanning trees ⁇ T(( ⁇ (s 1 ))), . . . , T(G( ⁇ (s e ))) ⁇
- Cardinality estimator 172 uses algorithm 1000 to traverse though the edges using better Quality(e i , e j ) function, and compare the edges in set E.
- cardinality estimator 172 identifies an edge using better Quality(e i , e j ) function, such as the edge having a lowest weight
- algorithm 1000 adds the edge to a set of edges that together form the minimum spanning trees.
- algorithm 1000 includes an add(d) function, where d is the edge identified using the betterQuality(e i , e j ) function that cardinality estimator 172 attempts to add to the minimum spanning trees.
- the add(d) function is discussed in detail in FIG. 10 .
- Computer system 1100 can be any well-known computer capable of performing the functions described herein, such as computers available from International Business Machines, Apple, Sun, HP, Dell, Sony, Toshiba, etc.
- Computer system 1100 includes one or more processors (also called central processing units, or (CPUs), such as a processor 1104 .
- processors also called central processing units, or (CPUs)
- Processor 1104 is connected to a communication infrastructure or bus 1106 .
- One or more processors 1104 may each be a graphics processing unit (GPU).
- a GPU is a processor that is a specialized electronic circuit designed to rapidly process mathematically intensive applications on electronic devices.
- the GPU may have a highly parallel structure that is efficient for parallel processing of large blocks of data, such as mathematically intensive data common to computer graphics applications, images and videos.
- Computer system 1100 also includes user input/output device(s) 1103 , such as monitors, keyboards, pointing devices, etc., which communicate with communication infrastructure 1106 through user input/output interface(s) 1102 .
- user input/output device(s) 1103 such as monitors, keyboards, pointing devices, etc., which communicate with communication infrastructure 1106 through user input/output interface(s) 1102 .
- Computer system 1100 also includes a main or primary memory 1108 , such as random access memory (RAM).
- Main memory 1308 may include one or more levels of cache.
- Main memory 1108 has stored therein control logic (i.e., computer software) and/or data.
- Computer system 1100 may also include one or more secondary storage devices or memory 1110 .
- Secondary memory 1110 may include, for example, a hard disk drive 1112 and/or a removable storage device or drive 1114 .
- Removable storage drive 1114 may be a floppy disk drive, a magnetic tape drive, a compact disk drive, an optical storage device, tape backup device, and/or any other storage device/drive.
- Removable storage drive 1114 may interact with a removable storage unit 1118 .
- Removable storage unit 1118 includes a computer usable or readable storage device having stored thereon computer software (control logic) and/or data.
- Removable storage unit 1118 may be a floppy disk, magnetic tape, compact disk, DVD, optical storage disk, and/any other computer data storage device.
- Removable storage drive 1114 reads from and/or writes to removable storage unit 1118 in a well-known manner.
- secondary memory 1110 may include other means, instrumentalities or other approaches for allowing computer programs and/or other instructions and/or data to be accessed by computer system 1100 .
- Such means, instrumentalities or other approaches may include, for example, a removable storage unit 1122 and an interface 1120 .
- the removable storage unit 1122 and the interface 1120 may include a program cartridge and cartridge interface (such as that found in video game devices), a removable memory chip (such as an EPROM or PROM) and associated socket, a memory stick and USB port, a memory card and associated memory card slot, and/or any other removable storage unit and associated interface.
- Computer system 1100 may farther include a communication or network interface 1124 .
- Communication interface 1124 enables computer system 1100 to communicate and interact with any combination of remote devices, remote networks, remote entities, etc. (individually and collectively referenced by reference number 1128 ).
- communication interface 1124 may allow computer system 1100 to communicate with remote devices 1128 over communications path 1126 , which may be wired and/or wireless, and which may include any combination of LANs, WANs, the Internet, etc. Control logic and/or data may be transmitted to and from computer system 1100 via communication path 1126 .
- a tangible apparatus or article of manufacture comprising a tangible computer useable or readable medium having control logic (software) stored thereon is also referred to herein as a computer program product or program storage device.
- control logic software stored thereon
- control logic when executed by one or more data processing devices (such as computer system 1100 ), causes such data processing devices to operate as described herein.
- embodiments may operate with software, hardware, and/or operating system implementations other than those described herein.
- references herein to “one embodiment,” “an embodiment,” “an example embodiment,” or similar phrases indicate that the embodiment described may include a particular feature, structure, or characteristic, but every embodiment may not necessarily include the particular feature, structure, or characteristic. Moreover, such phrases are not necessarily referring to the same embodiment. Further, when a particular feature, structure, or characteristic is described in connection with an embodiment, it would be within the knowledge of persons skilled in the relevant art(s) to incorporate such feature, structure, or characteristic into other embodiments whether or not explicitly mentioned or described herein.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Operations Research (AREA)
- Computational Linguistics (AREA)
- Data Mining & Analysis (AREA)
- Databases & Information Systems (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
Abstract
A system, computer-implemented method, and computer-program product embodiments for determining a cardinality estimate for a query. A cardinality estimator identifies a predicate in a query, where the predicate is split into a plurality of equivalence classes. The cardinality estimator then generates a plurality of equivalence graphs from the plurality of equivalence classes, one equivalence graph for an equivalence class. Spanning trees are identified from the plurality of equivalence graphs, and the cardinality estimator then determines the cardinality estimate for the query from the spanning trees.
Description
Field
The embodiments relate generally to databases and more specifically to query optimization using cardinality estimation.
Background
Computer databases have become a prevalent means for data storage and retrieval. A database user will commonly access the underlying data in a database using a Database Management System (“DBMS”). A user issues a query to the DBMS that conforms to a defined query language. When a DBMS receives a query, it determines a query plan for the query. Once determined, the DBMS then uses the query plan to execute the query. As part of determining an efficient query plan, a DBMS relies on cardinality estimates that estimate the sizes (i.e., how many rows) of queries and sub-queries. Cardinality estimates are used to assess the efficiency (e.g., cost) of the query plan before the query plan is executed.
The accompanying drawings, which are incorporated herein and form a part of the specification, illustrate embodiments and, together with the description, further serve to explain the principles of the embodiments and to enable a person skilled in the relevant art to make and use the embodiments.
Provided herein are system, method and/or computer program product embodiments, and/or combinations and sub-combinations thereof, for generating cardinality estimates, where cardinality estimates are used for generating an optimal query plan for a query.
DBMS 140 receives a query, such as query 102, from client 110. Query 102 is used to request, modify, append, or otherwise manipulate or access data in database storage 150. Query 102 is transmitted to DBMS 140 by client 110 using syntax which conforms to a query language. In a non-limiting embodiment, the query language is a Structured Query Language (“SQL”), but may be another query language. DBMS 140 is able to interpret query 102 in accordance with the query language and, based on the interpretation, generate requests to database storage 150.
To process query 102, DBMS 140 includes a parser 162, a normalizer 164, a compiler 166, and an execution unit 168.
When parsing is complete, parser 162 passes the parsed query to a normalizer 164. Normalizer 164 normalizes the parsed query. For example, normalizer 164 eliminates redundant SQL constructs from the parsed query. Normalizer 164 also performs error checking on the parsed query that confirms that the names of the tables in the parsed query conform to the names of tables 180. Normalizer 164 also confirms that relationships among tables 180, as described by the parsed query, are valid.
Once normalization is complete, normalizer 164 passes the normalized query to compiler 166. Compiler 166 compiles the normalized query into machine-readable format. The compilation process determines how query 102 is executed by DBMS 140. To ensure that query 102 is executed efficiently, compiler 166 uses a query optimizer 170 to generate an access plan for executing the query.
Query optimizer 170 analyzes the query and determines a query plan for executing the query. The query plan retrieves and manipulates information in the database storage 150 in accordance with the query semantics. This may include choosing the access method for each table accessed, choosing the order in which to perform a join operation on the tables, and choosing the join method to be used in each join operation. As there may be multiple strategies for executing a given query using combinations of these operations, query optimizer 170 generates and evaluates a number of strategies from which to select the best strategy to execute the query.
In an embodiment, query optimizer 170 generates multiple query plans. Once generated, query optimizer 170 selects a query plan from the multiple query plans to execute the query. The selected query plan may be a cost efficient plan, a query plan that uses the least amount of memory in DBMS 140, a query plan that executes the quickest, or any combination of the above, to give a few examples.
In one embodiment, in order for query optimizer 170 to generate and select a query plan, DBMS 140 uses cardinality estimator 172. Cardinality estimator 172 generates an estimate of the size (i.e., number of rows) of a query plan before the query plan is executed. Based on cardinality estimates, query optimizer 170 costs and selects an efficient query plan that executes query 102 from multiple query plans.
Q=σ p(R 1 . . . R n)
In an embodiment, each table R has a set of attributes, denoted as attr(R). The list of attributes on a table R, may be represented as R[A], where the set of attributes Aϵ attr (R), A={A1, A2, . . . , An}.
In an embodiment, R[A1, A2, . . . , An] is a subset of attributes of table R, such as A={A1, . . . , An}⊂attr(R).
In an embodiment, query 102 also contains a predicate. A predicate is a condition that may be evaluated in query 102. In an embodiment, a predicate may be a join predicate. A join predicate is a predicate that specifies a join operation that links several tables together on a particular set of attributes when evaluated. An evaluated join predicate, typically returns a join table as a result. For example, a join predicate on tables T and S may be represented as equijoin predicates T[A]=S[A] where A={A1, . . . , An} are attributes based on which tables T and S are joined, such that A⊂attr (T) and A⊂attr (S). A short form for the join predicate T[A]=S[A] may be represented as the conjunct predicate
kϵ{1, . . . n},(T[A k]=S[Ak])
kϵ{1, . . . n},(T[A k]=S[Ak])
In an embodiment, to determine a cardinality estimate 204 for query 102, cardinality estimator 172 determines a cardinality estimate over join equivalence classes for a join predicate. A join equivalence class for a predicate may be non-constant or constant. A non-constant join equivalence class ϵ (p) for a join predicate p= i,jϵ{1, . . . m},i≠j (Ri[A]=Rj[A]) is defined as a set of attribute subsets participating in the join predicate ϵ(p)=({R1[A], . . . Rm[A]}), where A={A1, . . . , An} is a set of common attributes for tables Ri, iϵ{1, . . . , m}.
A constant join equivalence class cϵ(p) for a join predicate p=( i,jϵ{1, . . . m},i≠j (Ri[A]=Rj[A]))( iϵ{1, . . . m},kϵ{1, . . . , n}(Ri[Ak]=ck)) is defined as a tuple of a set of attribute subsets and a constant vector, such that cϵ(p)=({R1[A], . . . , Rm[A]}, (c1, . . . , cn) where A={A1, . . . , An} is a set of common attributes for tables Ri, iϵ{1, . . . , m}. A person skilled in the art will appreciate that a tuple is an ordered set of elements, which is here an ordered set of a subset of attributes and a constant vector.
In an embodiment, cardinality estimator 172 may determine a cardinality estimate over a set of join equivalence classes. For example, given a set of join equivalence classes corresponding to the logical expression:
σp(R1, . . . ,Rm) R 1 R 2 . . . R m)
cardinality estimator 172 computes the cardinality estimation for a sub-expression involving relations {Ri1, . . . Rit}⊂{R1, . . . , Rm}.
σp(R1, . . . ,Rm) R 1 R 2 . . . R m)
In an embodiment, to determine cardinality estimate 204 over a set of join equivalence classes, cardinality estimator 172 generates one or more undirected graphs. From the one or more undirected graphs, cardinality estimator 172 identifies minimum spanning tees that link the vertices of the undirected graph. A person skilled in the art will appreciate that a spanning tree of an undirected graph is a tree that connects all vertices in the undirected graph. Additionally, an edge in the undirected graph has assigned a weight which in the graphs corresponding to the join equivalence classes may represent the quality of the selectivity estimation of an edge.
To build an undirected graph G={V, E}, cardinality estimator 172 determines a set of vertices V (or nodes), where each node Ri[A] represents a relation and the relation's attributes that are participating in the join equivalence class. In an embodiment, for a constant join equivalence class, cardinality estimator 172 generates an extra node for the constant vector (c1, . . . cn) as discussed below. In an embodiment, cardinality estimator 172 also generates a set of edges E of the form (Ri, Rj, (p1, . . . , pn)), for each join predicate (p1, . . . , pn) between Ri and Rj In an embodiment, cardinality estimator 172 annotates each edge with one or more predicates that correspond to the join predicates between the two nodes of the edge.
To build an undirected graph for a constant join equivalence class cϵ(p)=({R1[A], . . . , Rm[A]}, (c1, . . . , cn)) cardinality estimator 172 defines the graph of cϵ(p) as G(cϵ(p))={V, E}, where V is a set of vertices and E is a set of edges connecting the vertices. In an embodiment the set of vertices V are:
V={R 1 [A], . . . ,R m [S],(c 1 , . . . ,c n)}
and the set of edges E, are:
E={(R i [A],R i [A],(R i [A 1 ], . . . ,R j [An]=R m [An]))|i,jϵ{1, . . . m}}∪{(R i [A],(c 1 , . . . ,c n),(R i [A 1 ]=c 1 , . . . ,R i [A n ]=c n))|iϵ{1, . . . m}}.
V={R 1 [A], . . . ,R m [S],(c 1 , . . . ,c n)}
and the set of edges E, are:
E={(R i [A],R i [A],(R i [A 1 ], . . . ,R j [An]=R m [An]))|i,jϵ{1, . . . m}}∪{(R i [A],(c 1 , . . . ,c n),(R i [A 1 ]=c 1 , . . . ,R i [A n ]=c n))|iϵ{1, . . . m}}.
To build an undirected graph for a non-constant join equivalence class ϵ(p)=({R1[A], . . . , Rm[A]*}), cardinality estimator 172 defines the graph of ϵ(p) as G(ϵ(p))={V, E}, where Visa set of vertices and E is a set of edges connecting the vertices. In an embodiment the set of vertices V are:
V={R 1 [A], . . . ,R m [A]}
V={R 1 [A], . . . ,R m [A]}
-
- And the set of edges E are:
E={(R i [A],R j [A],(R i [A 1 ]=R i [A 1 ], . . . ,R i [A n]))∥i,jϵ{1, . . . m}}.
- And the set of edges E are:
Q=σ p(R 1 R 2 R 3 R 3 R 4 R 5).
and where the predicate p includes multiple join predicates p1 to p21 at shown below:
Based on the above query Q, cardinality estimator 172 generates one constant equivalence class to the predicate p′, where:
p′=(( i,jϵ{1,4,5}(R i [A,B]=R i [A,B])( i,jϵ{1,4,5}(R i [A]=cA R i [B]=cB))
p′=(( i,jϵ{1,4,5}(R i [A,B]=R i [A,B])( i,jϵ{1,4,5}(R i [A]=cA R i [B]=cB))
-
- and the constant equivalence class cϵ(p′) is:
cϵ(p′)={R 1 [A,B],R 4 [A,B],R 5 [A,B],(cA,cB)}
- and the constant equivalence class cϵ(p′) is:
V1 = {R1[A,B], R4[A,B], R5[A,B], (cA; cB)} |
and |
E1 = { |
(R1[A,B], R4[A,B], (p9;p10)), (R1[A,B], R5[A,B], (p3; p4)), |
(R1[A,B], (cA, cB), (p7; p8)), |
(R4[A,B], R5[A,B], (p11; p12)), (R4[A,B], (cA, cB), (p5; p6)), |
(R5[A,B], (cA, cB), (p1; p2)) |
} |
Graph G1(V1, E1), including the vertices V1 and edges E1 described above is illustrated in diagram 300A in FIG. 3A . Graph G1 is a graph showing a constant equivalence class for the predicate p′. Additionally, FIG. 3A also includes a listing of predicates p1 to p12 that comprise predicate p′ that defines the edges in graph G1.
In an embodiment, cardinality estimator 172 also generates a second equivalence class that corresponds to a predicate p″, where:
p″=(( i,jϵ{1,2,3,4,5}(R i [A]=R 1 [A]))( jϵ{1,2,3,4,5}(R i [A]=cA)
p″=(( i,jϵ{1,2,3,4,5}(R i [A]=R 1 [A]))( jϵ{1,2,3,4,5}(R i [A]=cA)
and where the constant equivalence class cϵ(p″) is:
cϵ(p″)={R 1 [A],R 2 [A],R 3 [A],R 4 [A],R 5 [A],(cA)}
cϵ(p″)={R 1 [A],R 2 [A],R 3 [A],R 4 [A],R 5 [A],(cA)}
V2 = {R1[A], R2[A], R3[A], R4[A], R5[A], (cA)} | ||
and | ||
E2 = { | ||
(R1[A], R2[A],(p18)), (R1[A], R3[A], (p13)), | ||
(R1[A] ,R4[A], (p9)); | ||
(R1[A], (R5[A], (p3), (R1[A], (cA, (p7)), | ||
(R2[A], R3[A], (p20)), (R2[A], R4[A], (p17)), (R2[A], R5[A], | ||
(p15)), (R2[A], (cA), (p16)), | ||
(R3[A], R4[A], (p21)), (R3[A], R5[A], (p14)), | ||
(R3[A], (cA), (p19)), | ||
(R4[A], R5[A], (p11)), (R4[A], (cA), (p5)), | ||
(R5[A], (cA); (p1)) | ||
} | ||
Graph G2(V2, E2), including the vertices V2 and edges E2 described above is also illustrated in FIG. 3A . Graph G2 is a diagram of a constant equivalence class for the predicate p″. Additionally, FIG. 3A also includes a listing of predicates p1 to p21 that comprise predicate p″ and defines edges in graph G2.
Once, cardinality estimator 172 generates graphs for equivalence classes, such as example graphs G1 and G2 for example query Q, cardinality estimator 172 determines the spanning trees in the graphs. From the spanning trees, cardinality estimator 172 determines the minimum spanning tree and calculates the cardinality estimate from the minimum spanning tree as discussed below.
As shown in FIG. 3A , there may exist a predicate pi which annotates more than one edge in equivalence graphs corresponding to a query Q. For example, the predicate p5 annotates the edge (R4[A, B], c(A, cB), (p5, p6)) in graph G1 and the edge (R4[A], c(A), (p5)) in graph G2. When cardinality estimator 172 determines a cardinality estimate, cardinality estimator 172 generates a cardinality estimate based on a subset S of the join predicates representing some relationships of the relations {R1, . . . Rn} that forms spanning trees. In an embodiment, cardinality estimator 172 excludes redundant (or repeating) predicates from the spanning tree.
For example, let a spanning tree T(G) be a tree in the fully connected, undirected graph G, that includes all vertices of graph G. In this case, a graph G having n vertices has n(n-2) such spanning trees T(G). FIG. 3B is a diagram 300B of the example spanning tress of graphs G1 and G2, according to an embodiment. The dashed lines between the nodes in graphs G1 and G2 indicate the edges that are included in the spanning trees for graphs G1 and G2. The subset of predicates that are included in the spanning tree for graphs G1 and G2 are p5, p6, p7, p8, p11, p12, p14 and p20, as shown in bold in FIG. 3B .
To determine a spanning tree from a join equivalence graphs, such as G1 and G2, cardinality estimator 172 sets T(G(ϵ(p))) as a spanning tree of G(ϵ(p). The predicates in the spanning tree T(G(ϵ(p))) can be defined as a set of predicates annotating the edges in the spanning tree T(G(ϵ(p))). For example, predicates can be defined as:
Preds(T(G(ϵ(p)))={p i(v 1 ,v 2,(p 1 , . . . ,p n)) an edge in T(G(ϵ(p)))}
Preds(T(G(ϵ(p)))={p i(v 1 ,v 2,(p 1 , . . . ,p n)) an edge in T(G(ϵ(p)))}
In an embodiment, cardinality estimator 172 applies the following theorem to calculate cardinality estimation for query Q. If T(G(ϵ(p))) is a spanning tree of G(ϵ(p)), then the conjunct generated by the spanning tree infers the original predicate p, such as:
( cϵPreds(T(G(ϵ(p)))) c) p
( cϵPreds(T(G(ϵ(p)))) c) p
Also, any predicate qϵ{p,|v1, v2, (p1, . . . , pn) an edge in G(Σ(p))} is inferred by the conjunct generated by the spanning tree:
( cϵPreds(T(G(ϵ(p)))) C) q
( cϵPreds(T(G(ϵ(p)))) C) q
Based on the theorem above, cardinality estimator 172 determines that a query Q, such as:
Q=σ s(R 1 . . . R n)
where a predicate s has e equivalent classes {ϵ(s1), . . . , ϵ(se)} is equivalent to a query Q′ for which the predicate s was replaced with the predicates of a spanning trees induced by {T(G(ϵ(s1))), . . . , T(Gϵ(se))}.
Q=σ s(R 1 . . . R n)
where a predicate s has e equivalent classes {ϵ(s1), . . . , ϵ(se)} is equivalent to a query Q′ for which the predicate s was replaced with the predicates of a spanning trees induced by {T(G(ϵ(s1))), . . . , T(Gϵ(se))}.
Applying the theorem above, let {T(G(ϵ(s1))), . . . , T(Gϵ(se)))} be spanning trees of a forest for graphs {(G(ϵ(s1))), . . . , Gϵ(se))}. In an embodiment, predicates of the forest for the graphs of join equivalence classes are predicates that annotate the spanning trees, with duplicates removed, such as:
Preds({T(G(ϵ(s 1)))=∪iϵ{1, . . . ,e} d(Preds({T(G(ϵ(s j)))))
Preds({T(G(ϵ(s 1)))=∪iϵ{1, . . . ,e} d(Preds({T(G(ϵ(s j)))))
where cardinality estimator 172 uses operation ∪d to remove duplicate predicates.
In an embodiment, cardinality estimator 172 rewrites query Q using the predicates in the forest of join equivalence classes Preds({T(G(ϵ(s1))), . . . , T(Gϵ(se)))}), such as:
In an embodiment, based on the theorem above, cardinality estimator 172 determines a cardinality estimate for query Q0 where:
Q 0=σx(R 1 . . . R n)
by first rewriting the predicate x such that:
Q 0=σx(R 1 . . . R n)
by first rewriting the predicate x such that:
where cardinality estimator 172 can split predicates into e join equivalence classes.
card(Q 0)=f(selectivity(s),selectivity(x′),cardinality(R 1), . . . ,cardinality(R n))
In an embodiment, selectivity(s)=STSelectivity(Q) and can be computed using an algorithm in FIG. 8 , according to an embodiment.
When cardinality estimator 172 applies the above algorithm to graphs G1 and G2 shown in FIGS. 3A and 3B , cardinality estimator 172 generates cardinality estimate 204 for query Q associated with graphs G1 and G2 as:
Cardinality Estimate=sel(p5 p6)×sel(p7 p8)×sel(p11 p12)×sel(p20)×sel(p14)
Cardinality Estimate=sel(p5 p6)×sel(p7 p8)×sel(p11 p12)×sel(p20)×sel(p14)
At operation 402, the cardinality estimator receives a query Q. For example, cardinality estimator 172 receives query Q, where query Q=σs(R1 . . . Rn) and the predicate s can be split into e equivalent classes.
At operation 404, the cardinality estimator determines the minimum set of equivalence classes. For example, cardinality estimator 172 determines e equivalence classes {ϵ(s1), . . . , ϵ(se)}. As discussed above, equivalence classes are determined based on sets of common attributes that are included in tables joined in query Q.
At operation 406, the cardinality estimator generates join equivalence graphs based on the minimum set of equivalence classes. For example, cardinality estimator 172 generates a forest of join equivalence graphs, each graph corresponding to a join equivalence class ϵ(si), where i=1 to e.
At operation 408, the cardinality estimator determines the minimum spanning tress for cardinality estimation. For example, in the join equivalence graphs, the edges represent predicate attributes, where each edge has a weight computed by DBMS 140. In an embodiment, the weight for an edge representing a join predicate between two tables is a property vector of the edge, including, for example, the confidence level of the selectivity estimation for an edge; the quality of the selectivity estimation expressed as the properties of the join predicates. Such properties may include a type of relationship between the two tables. Example properties include, if the join predicate is of the form “primary key primary key”, “primary key=foreign key”, “foreign key=foreign key”, “unique constraint attributes=attributes”, or “index attributes attributes”. When comparing the weights of two edges (during minimum spanning trees building) a function which compares the two property vectors of the edges can be used, according to an embodiment.
In an embodiment, cardinality estimator 172 determines the minimum spanning trees as the trees that include all vertices in the join equivalence graphs, such that the nodes of the graphs are connected using the edges associated with the lowest weights. In an embodiment, cardinality estimator 172 defines the spanning trees as {T(G(ϵ(s1))), . . . , T(Gϵ(se)))}.
At operation 410, the cardinality estimator uses the predicate associated with the spanning trees to determine the cardinality estimate for query Q. For example, cardinality estimator 172 determines the cardinality estimate for query Q based on the predicates associated with edges of the minimum spanning trees determined in operation 408 and multiplied by the selectivity of these predicate, such as:
selectivity(s)=ΠeϵEdges({T(G(ϵ(s1 ))), . . . ,T(G(E(s e )))})selectivity(e))
selectivity(s)=ΠeϵEdges({T(G(ϵ(s
Once cardinality estimator 172 determines a cardinality estimate 204 for query Q, query optimizer 170 uses cardinality estimate 204 to determine a query plan from query Q.
In an embodiment, cardinality estimator 172 also determines a cardinality estimate for a sub-expression of query Q, such as sub-expression Q′. FIG. 5 is a flowchart of a method 500 of a cardinality estimator generating a cardinality estimate for a sub-section Q′ of query Q, according to an embodiment. Method 500 can be performed by processing logic that can comprise hardware (e.g., circuitry, dedicated logic, programmable logic, microcode, etc.), software (e.g., instructions run on a processing device), or a combination thereof. In one implementation, the method 500 is performed by cardinality estimator 172.
At operation 502, the cardinality estimator receives a query Q. For example, cardinality estimator 172 receives query Q, where query Q=σs(R1 . . . Rn) and the predicate s can be split into e equivalent classes.
At operation 504, the cardinality estimator receives a subset of tables. For example, cardinality estimator 172 receives a subset of tables that query Q manipulates, such as {Ri1), . . . , Rit}∪{Ri, . . . , Rn}.
At operation 506, the cardinality estimator determines the equivalence classes. For example, cardinality estimator 172 determines e equivalence classes {ϵ(s1), . . . , ϵ(se)}. As discussed above, equivalence classes are determined based on sets of common attributes that are included in tables joined in query Q.
At operation 508, the cardinality estimator generates join equivalence graphs. For example, cardinality estimator 172 generates a forest of join equivalence graph for each join equivalence class ϵ(si), where i=1 to e.
At operation 510, the cardinality estimator determines the sub-graphs from the join equivalence graphs that include the subset of tables. For example, for each graph G(ϵ(si)), cardinality estimator 172 determines the vertex induced sub-graph G′(ϵ(si)), where the vertex induced sub-graph G′(ϵ(si)) includes only vertices {Ri1, . . . , Rit}. In an embodiment, cardinality estimator 172 represents the join equivalence sub-graphs as {G′(ϵ(s1), . . . , G′ϵ(se))}.
At operation 512, the cardinality estimator determines the minimum spanning tress for cardinality estimation. For example, in the join equivalence sub-graphs {G′(ϵ(s1)), . . . , G′ϵ(se))}, the edges represent predicate attributes, where each predicate attribute has a weight specified by DBMS 140 as described above. In an embodiment, cardinality estimator 172 determines the minimum spanning trees as the trees that include all vertices in the join equivalence sub-graphs G′(ϵ(si)), such that the nodes of the graphs are connected using the edges associated with the lowest weights. In an embodiment, cardinality estimator 172 defines the spanning trees as {T(G(C(s1))), . . . , T(Gϵ(se)))}.
At operation 514, the cardinality estimator uses the predicate associated with the spanning trees to determine the cardinality estimate for sub-query Q′. For example, cardinality estimator 172 determines the selectivity estimation for sub-query Q′ based on the edges associated with the best spanning trees determined in operation 512 and multiplied by the selectivity of the predicate, such as:
selectivity(s′)=ΠeϵEdges({T(G′(ϵ(s1 ))), . . . , T(G′(Σ(s e )))})selectivity(e))
selectivity(s′)=ΠeϵEdges({T(G′(ϵ(s
card(Q 0)=f(selectivity(s),selectivity(x′),cardinality(R1), . . . ,cardinality(Rn)).
As discussed above, cardinality estimator 172 determines join equivalence classes for a predicate. The input to algorithm 700 is a query Q, such as:
Q=σ s(R 1 . . . R n)
which can be decomposed into one or more equivalence classes. In an embodiment, the output ofalgorithm 700 is a minimum set of equivalence classes, such as such as {ϵ(s1), . . . , ϵ(se)}. The details of algorithm 700 are included in FIG. 7 .
Q=σ s(R 1 . . . R n)
which can be decomposed into one or more equivalence classes. In an embodiment, the output of
Q=σ s(R 1 . . . R n)
The output of algorithm 800 is selectivity of a predicate s. In an embodiment, algorithm 800 uses algorithm 700 to generate a minimum set of the equivalence classes, such as set {ϵ(s1), . . . , ϵ(se)}, at step 1. From the minimum set of the equivalence classes, cardinality estimator 172 generates graphs {G(ϵ(s1))), . . . , Gϵ(se))}, one graph for each equivalence class, at step 2. Cardinality estimator 172 then uses algorithm 1000 to generate minimum spanning trees {T(G(ϵ(s1))), . . . , T(Gϵ(se)))} from the graphs {G(ϵ(s1))), G(ϵ(se))}, at step 3. At step 4, cardinality estimator uses the minimum spanning trees {T(G(ϵ(s1))), . . . , T(Gϵ(se)))} to determine selectivity for predicate s.
Q=σ s(R 1 . . . R n)
The second input to algorithm 900 is a subset of tables of tables in a query Q, such as:
{R i1 , . . . ,R it }⊂{R 1 , . . . ,R n}.
{R i1 , . . . ,R it }⊂{R 1 , . . . ,R n}.
The output of algorithm 900 is an estimated selectivity of a sub-predicate s′, where s′ includes predicates on the subset {Ri1, . . . . Rit}. In an embodiment, algorithm 900 uses algorithm 700 to generate a minimum set of the equivalence classes, such as set {ϵ(s1), . . . , ϵ(se)}, at step 1. From the minimum set of the equivalence classes, cardinality estimator 172 generates graphs {G(ϵ(s1))), . . . , Gϵ(se))}, one graph for each equivalence class, at step 2. Cardinality estimator 172 then computes a vertex induced sub-graph G′(Σ(si)) for vertices of a subset of tables {Ri1, . . . Rit}, at step 3. At step 4, cardinality estimator 172 determines, using the algorithm 1000, the minimum spanning trees {T(G′(ϵ(s1))), . . . , T(G′(ϵ(se)))} from the new forest of sub-graph {G′(ϵ(s1)), . . . , G′(ϵ(se))}. At step 5, cardinality estimator 172 uses the minimum spanning trees {T(G′(ϵ(s1), . . . , T(G′(ϵ(se)))} to determine selectivity for predicate s′ for a sub-predicate s′, such as:
selectivity(s′)=ΠeϵEdges({T(G′(ϵ(s1 ))), . . . ,T(G′(ϵ(s e )))})selectivity(e))
selectivity(s′)=ΠeϵEdges({T(G′(ϵ(s
In an embodiment, the input to algorithm 1000 is the forest of graphs generated by the minimum set of join equivalence classes for query Q, such as, minϵ(Q)={G(ϵ(s1)), . . . , G(ϵ(se)}. The output of algorithm 1000 is a set of best spanning trees {T((ϵ(s1))), . . . , T(G(ϵ(se)))}
In an embodiment, cardinality estimator 172 identifies the edges in the forest of graphs {G(ϵ(s1))), . . . , G(ϵ(se))} in a set E, where E may be defines as:
E=∪ iϵ{1,ldots e}Edges(G(ϵ(s i)))
E=∪ iϵ{1,ldots e}Edges(G(ϵ(s i)))
Various embodiments can be implemented, for example, using one or more well-known computer systems, such as computer system 1100 shown in FIG. 11 . Computer system 1100 can be any well-known computer capable of performing the functions described herein, such as computers available from International Business Machines, Apple, Sun, HP, Dell, Sony, Toshiba, etc.
One or more processors 1104 may each be a graphics processing unit (GPU). In an embodiment, a GPU is a processor that is a specialized electronic circuit designed to rapidly process mathematically intensive applications on electronic devices. The GPU may have a highly parallel structure that is efficient for parallel processing of large blocks of data, such as mathematically intensive data common to computer graphics applications, images and videos.
According to an exemplary embodiment, secondary memory 1110 may include other means, instrumentalities or other approaches for allowing computer programs and/or other instructions and/or data to be accessed by computer system 1100. Such means, instrumentalities or other approaches may include, for example, a removable storage unit 1122 and an interface 1120. Examples of the removable storage unit 1122 and the interface 1120 may include a program cartridge and cartridge interface (such as that found in video game devices), a removable memory chip (such as an EPROM or PROM) and associated socket, a memory stick and USB port, a memory card and associated memory card slot, and/or any other removable storage unit and associated interface.
In an embodiment, a tangible apparatus or article of manufacture comprising a tangible computer useable or readable medium having control logic (software) stored thereon is also referred to herein as a computer program product or program storage device. This includes, but is not limited to, computer system 1100, main memory 1108, secondary memory 1110, and removable storage units 1118 and 1122, as well as tangible articles of manufacture embodying any combination of the foregoing. Such control logic, when executed by one or more data processing devices (such as computer system 1100), causes such data processing devices to operate as described herein.
Based on the teachings contained in this disclosure, it will be apparent to persons skilled in the relevant art(s) how to make and use the embodiments using data processing devices, computer systems and/or computer architectures other than that shown in FIG. 11 . In particular, embodiments may operate with software, hardware, and/or operating system implementations other than those described herein.
It is to be appreciated that the Detailed Description section, and not the Summary and Abstract sections (if any), is intended to be used to interpret the claims. The Summary and Abstract sections (if any) may set forth one or more but not all exemplary embodiments as contemplated by the inventor(s), and thus, are not intended to limit the embodiments or the appended claims in any way.
While the embodiments has been described herein with reference to exemplary embodiments for exemplary fields and applications, it should be understood that the embodiments are not limited thereto. Other embodiments and modifications thereto are possible, and are within the scope and spirit of the embodiments. For example, and without limiting the generality of this paragraph, embodiments are not limited to the software, hardware, firmware, and/or entities illustrated in the figures and/or described herein. Further, embodiments (whether or not explicitly described herein) have significant utility to fields and applications beyond the examples described herein.
Embodiments have been described herein with the aid of functional building blocks illustrating the implementation of specified functions and relationships thereof. The boundaries of these functional building blocks have been arbitrarily defined herein for the convenience of the description. Alternate boundaries can be defined as long as the specified functions and relationships (or equivalents thereof) are appropriately performed. Also, alternative embodiments may perform functional blocks, steps, operations, methods, etc. using orderings different than those described herein.
References herein to “one embodiment,” “an embodiment,” “an example embodiment,” or similar phrases, indicate that the embodiment described may include a particular feature, structure, or characteristic, but every embodiment may not necessarily include the particular feature, structure, or characteristic. Moreover, such phrases are not necessarily referring to the same embodiment. Further, when a particular feature, structure, or characteristic is described in connection with an embodiment, it would be within the knowledge of persons skilled in the relevant art(s) to incorporate such feature, structure, or characteristic into other embodiments whether or not explicitly mentioned or described herein.
The breadth and scope of the embodiments should not be limited by any of the above-described exemplary embodiments, but should be defined only in accordance with the following claims and their equivalents.
Claims (16)
1. A computer-implemented method for generating a cardinality estimate, comprising:
identifying a predicate in a query, wherein the predicate is split into a plurality of equivalence classes;
generating a plurality of undirected equivalence graphs from the plurality of equivalence classes, wherein the undirected equivalence graphs include a plurality of weighted edges representing a join predicate between two tables, and wherein the equivalence classes are determined based on sets of common attributes that are included in tables joined in the query;
identifying spanning trees in the plurality of undirected equivalence graphs;
determining a minimum spanning tree of the identified spanning trees;
calculating a cardinality estimate based on the minimum spanning tree based on multiplying each predicate, in a set of identified predicates in the spanning tress, by a selectivity associated with each edge corresponding to the predicate, wherein a quality of the selectivity indicates a relationship between two tables joined in the query, and wherein the relationship indicates at least one of a key or attribute relationship between the two tables; and
selecting a query plan corresponding to the cardinality estimate, wherein the cardinality estimate for the selected query plan is associated with a lower consumption of resources amongst a plurality of query plans in an execution of a query by a processor.
2. The computer-implemented method of claim 1 , wherein an equivalence class in the plurality of the equivalence classes shares a set of attributes common to the plurality of tables.
3. The computer-implemented method of claim 1 , wherein an equivalence class in the plurality of the equivalence classes comprises a constant vector.
4. The computer-implemented method of claim 1 , wherein generating an undirected equivalence graph in the plurality of undirected equivalence graphs, further comprises:
generating a first node and a second node, wherein the first node corresponds to a first table and a set of attributes and the second node corresponds to a second table and a set of attributes, wherein the first table, the second table and the attributes are included in an equivalence class from the plurality of the equivalence classes;
generating an edge between the first node and the second node; and
annotating the edge with a second predicate referencing the attributes between the first node and the second node, wherein the second predicate is a component of the query predicate.
5. The computer-implemented method of claim 4 , wherein generating the undirected equivalence graph further comprises:
generating a third node including a constant vector;
generating a second edge between a first node and a third node; and
annotating the second edge with a third predicate referencing the attributes between the second table and the constant vector, wherein the third predicate is a component of the query predicate.
6. The computer-implemented method of claim 1 , further comprising:
determining a confidence level of the selectivity of at least one of the edges, wherein the confidence level is the weight of at least one of the edges.
7. The computer-implemented method of claim 1 , wherein the minimum spanning tree comprises one or more trees that include all vertices in a join equivalence undirected graph, wherein nodes of the join equivalence undirected graph is connected using edges with the lowest weights.
8. A system for generating a cardinality estimate, comprising:
a memory; and
a processor coupled to the memory and configured to:
identify a predicate in a query, wherein the predicate is split into a plurality of equivalence classes;
generate a plurality of undirected equivalence graphs from the plurality of equivalence classes, wherein the undirected equivalence graphs include a plurality of weighted edges representing a join predicate between two tables, and wherein the equivalence classes are determined based on sets of common attributes that are included in tables joined in the query;
identify spanning trees in the plurality of undirected equivalence graphs;
determine a minimum spanning tree of the identified spanning trees;
calculate a cardinality estimate based on the minimum spanning tree based on multiplying each predicate, in a set of identified predicates in the spanning tress, by a selectivity associated with each edge corresponding to the predicate, wherein a quality of the selectivity indicates a relationship between two tables joined in the query, and wherein the relationship indicates at least one of a key or attribute relationship between the two tables; and
select a query plan corresponding to the cardinality estimate wherein the cardinality estimate for the selected query plan is associated with a lower consumption of resources amongst a plurality of query plans in an execution of a query by the processor.
9. The system of claim 8 , wherein an equivalence class in the plurality of equivalence classes shares a set of attributes common to the plurality of tables.
10. The system of claim 8 , wherein an equivalence class in the plurality of equivalence classes comprises a constant vector.
11. The system of claim 8 , wherein to generate an undirected equivalence graph in the plurality of the undirected equivalence graphs, the processor is further configured to:
generate a first node and a second node, wherein the first node corresponds to a first table and a set of attributes and the second node corresponds to a second table and a set of attributes, wherein the first table, the second table and the attributes are included in an equivalence class in the plurality of equivalence classes;
generate an edge between the first node and the second node; and
annotate the edge with a second predicate referencing the attribute between the first node and the second node; wherein the second predicate is a component of the query predicate.
12. The system of claim 11 , to generate the undirected equivalence graph, the processor is further configured to:
generate a third node including a constant vector;
generate a second edge between a first node and a third node; and
annotate the second edge with a third predicate referencing the attributes between the second table and the constant vector, wherein the third predicate is a component of the query predicate.
13. A non-transitory computer-readable storage device having instructions stored thereon that, when executed by at least one computing device, causes the at least one computing device to perform operations that generate a
cardinality estimate, the operations comprising:
identifying a predicate in a query, wherein the predicate is split into a plurality of equivalence classes,
generating a plurality of undirected equivalence graphs from the plurality of equivalence classes, wherein the undirected equivalence graphs include a plurality of weighted edges representing a join predicate between two tables, and wherein the equivalence classes are determined based on sets of common attributes that are included in tables joined in the query;
identifying spanning trees in the plurality of undirected equivalence graphs;
determining a minimum spanning tree of the identified spanning trees;
calculating a cardinality estimate based on the minimum spanning tree based on multiplying each predicate, in a set, of identified predicates in the spanning tress, by
a selectivity associated with each edge corresponding to the predicate, wherein a quality of the selectivity indicates a relationship between two tables joined in the query, and wherein the relationship indicates at least one of a key or attribute relationship between the two tables; and
selecting a query plan corresponding to the cardinality estimate wherein the cardinality estimate for the selected query plan is associated with a lower consumption of resources amongst a plurality of query plans in an execution of a query by a processor of the at least one computing device.
14. The non-transitory computer-readable storage device of claim 13 , wherein the query manipulates data in a plurality of tables, wherein a table includes a plurality of attributes.
15. The tangible computer-readable device of claim 13 , wherein an equivalence class in the plurality of equivalence classes shares a set of attributes common to the plurality of tables.
16. The non-transitory tangible computer-readable storage device of claim 13 , wherein generating an undirected equivalence graph in the plurality of undirected equivalence graphs, further comprises operations comprising: generating a first node and a second node, wherein the first node corresponds to a first table and a set of attributes and the second node corresponds to a second table and a set of attributes, wherein the first table, the second table and the attributes are included in an equivalence class from the plurality of the equivalence classes;
generating an edge between the first node and the second node, and
annotating the edge with a second predicate referencing the attributes between the first node and the second node, wherein the second predicate is a component of the query predicate.
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US14/145,777 US9922088B2 (en) | 2013-12-31 | 2013-12-31 | Cardinality estimation using spanning trees |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US14/145,777 US9922088B2 (en) | 2013-12-31 | 2013-12-31 | Cardinality estimation using spanning trees |
Publications (2)
Publication Number | Publication Date |
---|---|
US20150186461A1 US20150186461A1 (en) | 2015-07-02 |
US9922088B2 true US9922088B2 (en) | 2018-03-20 |
Family
ID=53482012
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US14/145,777 Active 2035-10-09 US9922088B2 (en) | 2013-12-31 | 2013-12-31 | Cardinality estimation using spanning trees |
Country Status (1)
Country | Link |
---|---|
US (1) | US9922088B2 (en) |
Cited By (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US10942891B2 (en) | 2019-03-27 | 2021-03-09 | Ownbackup Ltd. | Reducing number of queries on a relational database |
US11544268B2 (en) | 2014-09-26 | 2023-01-03 | Oracle International Corporation | System and method for generating size-based splits in a massively parallel or distributed database environment |
US11899666B2 (en) | 2014-09-26 | 2024-02-13 | Oracle International Corporation | System and method for dynamic database split generation in a massively parallel or distributed database environment |
Families Citing this family (18)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US10528596B2 (en) | 2014-09-26 | 2020-01-07 | Oracle International Corporation | System and method for consistent reads between tasks in a massively parallel or distributed database environment |
US10089357B2 (en) | 2014-09-26 | 2018-10-02 | Oracle International Corporation | System and method for generating partition-based splits in a massively parallel or distributed database environment |
US10089377B2 (en) | 2014-09-26 | 2018-10-02 | Oracle International Corporation | System and method for data transfer from JDBC to a data warehouse layer in a massively parallel or distributed database environment |
US10078684B2 (en) * | 2014-09-26 | 2018-09-18 | Oracle International Corporation | System and method for query processing with table-level predicate pushdown in a massively parallel or distributed database environment |
US10180973B2 (en) | 2014-09-26 | 2019-01-15 | Oracle International Corporation | System and method for efficient connection management in a massively parallel or distributed database environment |
US10380114B2 (en) | 2014-09-26 | 2019-08-13 | Oracle International Corporation | System and method for generating rowid range-based splits in a massively parallel or distributed database environment |
US20160292300A1 (en) * | 2015-03-30 | 2016-10-06 | Alcatel Lucent Usa Inc. | System and method for fast network queries |
US10733184B2 (en) | 2016-11-29 | 2020-08-04 | Sap Se | Query planning and execution with source and sink operators |
US10423619B2 (en) | 2016-11-29 | 2019-09-24 | Sap Se | Query plan generation for precompiled and code generating query operations |
US10372707B2 (en) | 2016-11-29 | 2019-08-06 | Sap Se | Query execution pipelining with pump operators |
US10885032B2 (en) | 2016-11-29 | 2021-01-05 | Sap Se | Query execution pipelining with shared states for query operators |
US11016973B2 (en) | 2016-11-29 | 2021-05-25 | Sap Se | Query plan execution engine |
US10558661B2 (en) | 2016-11-29 | 2020-02-11 | Sap Se | Query plan generation based on table adapter |
US10521426B2 (en) | 2016-11-29 | 2019-12-31 | Sap Se | Query plan generation for split table query operations |
US10671625B2 (en) | 2017-01-26 | 2020-06-02 | Sap Se | Processing a query primitive call on a value identifier set |
US10776353B2 (en) * | 2017-01-26 | 2020-09-15 | Sap Se | Application programming interface for database access |
US10860579B2 (en) | 2017-01-30 | 2020-12-08 | Sap Se | Query planning and execution with reusable memory stack |
EP4148593A1 (en) * | 2017-02-27 | 2023-03-15 | QlikTech International AB | Methods and systems for extracting and visualizing patterns in large-scale data sets |
Citations (66)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US5412806A (en) | 1992-08-20 | 1995-05-02 | Hewlett-Packard Company | Calibration of logical cost formulae for queries in a heterogeneous DBMS using synthetic database |
US5515502A (en) | 1993-09-30 | 1996-05-07 | Sybase, Inc. | Data backup system with methods for stripe affinity backup to multiple archive devices |
US5761653A (en) | 1995-04-03 | 1998-06-02 | International Business Machines Corporation | Method for estimating cardinalities for query processing in a relational database management system |
US5918225A (en) | 1993-04-16 | 1999-06-29 | Sybase, Inc. | SQL-based database system with improved indexing methodology |
US5951695A (en) | 1997-07-25 | 1999-09-14 | Hewlett-Packard Company | Fast database failover |
US5956706A (en) | 1997-05-09 | 1999-09-21 | International Business Machines Corporation | Method and system for limiting the cardinality of an SQL query result |
US6105020A (en) | 1999-10-11 | 2000-08-15 | International Business Machines Corporation | System and method for identifying and constructing star joins for execution by bitmap ANDing |
US6189142B1 (en) | 1998-09-16 | 2001-02-13 | International Business Machines Corporation | Visual program runtime performance analysis |
US6516310B2 (en) | 1999-12-07 | 2003-02-04 | Sybase, Inc. | System and methodology for join enumeration in a memory-constrained environment |
US6694507B2 (en) | 2000-12-15 | 2004-02-17 | International Business Machines Corporation | Method and apparatus for analyzing performance of object oriented programming code |
US6801905B2 (en) | 2002-03-06 | 2004-10-05 | Sybase, Inc. | Database system providing methodology for property enforcement |
US20050131914A1 (en) | 2003-12-11 | 2005-06-16 | International Business Machines Corporation | Apparatus and method for estimating cardinality when data skew is present |
US6928580B2 (en) | 2001-07-09 | 2005-08-09 | Hewlett-Packard Development Company, L.P. | Distributed data center system protocol for continuity of service in the event of disaster failures |
US6947927B2 (en) | 2002-07-09 | 2005-09-20 | Microsoft Corporation | Method and apparatus for exploiting statistics on query expressions for optimization |
US7146363B2 (en) | 2003-05-20 | 2006-12-05 | Microsoft Corporation | System and method for cardinality estimation based on query execution feedback |
US20060288332A1 (en) | 2005-06-21 | 2006-12-21 | Microsoft Corporation | Workflow debugger |
US7171408B2 (en) | 2001-10-18 | 2007-01-30 | International Business Machines Corporation | Method of cardinality estimation using statistical soft constraints |
US20070124347A1 (en) | 2005-11-30 | 2007-05-31 | Oracle International Corporation | Database system configured for automatic failover with no data loss |
US7299226B2 (en) | 2003-06-19 | 2007-11-20 | Microsoft Corporation | Cardinality estimation of joins |
US7305421B2 (en) | 2001-07-16 | 2007-12-04 | Sap Ag | Parallelized redo-only logging and recovery for highly available main memory database systems |
US7318066B2 (en) | 2000-10-31 | 2008-01-08 | Michael Philip Kaufman | System and method for generating automatic user interface for arbitrarily complex or large databases |
US7337167B2 (en) | 2005-04-14 | 2008-02-26 | International Business Machines Corporation | Estimating a number of rows returned by a recursive query |
US7447710B2 (en) | 2003-12-11 | 2008-11-04 | Sybase, Inc. | Database system providing self-tuned parallel database recovery |
US7546598B2 (en) | 2003-09-03 | 2009-06-09 | Sap Aktiengesellschaft | Measuring software system performance using benchmarks |
US7549079B2 (en) | 2005-11-30 | 2009-06-16 | Oracle International Corporation | System and method of configuring a database system with replicated data and automatic failover and recovery |
US20090171921A1 (en) | 2007-12-28 | 2009-07-02 | Sybase, Inc. | Accelerating Queries Based on Exact Knowledge of Specific Rows Satisfying Local Conditions |
US7558748B2 (en) | 1999-12-17 | 2009-07-07 | Dorado Network Systems Corporation | Purpose-based adaptive rendering |
US7644397B2 (en) | 2004-06-19 | 2010-01-05 | Apple Inc. | Software performance analysis using data mining |
US7657718B1 (en) | 2002-08-21 | 2010-02-02 | Emc Corporation | Storage automated replication processing |
US7689989B2 (en) | 2004-12-28 | 2010-03-30 | Sap Ag | Thread monitoring using shared memory |
US20100223276A1 (en) * | 2007-03-27 | 2010-09-02 | Faleh Jassem Al-Shameri | Automated Generation of Metadata for Mining Image and Text Data |
US20110029508A1 (en) * | 2009-07-31 | 2011-02-03 | Al-Omari Awny K | Selectivity-based optimized-query-plan caching |
US7904889B2 (en) | 2006-06-30 | 2011-03-08 | Sap Ag | Business process model debugger |
US7917502B2 (en) | 2008-02-27 | 2011-03-29 | International Business Machines Corporation | Optimized collection of just-in-time statistics for database query optimization |
US7933869B2 (en) | 2006-12-29 | 2011-04-26 | Sap Ag | Method and system for cloning a tenant database in a multi-tenant system |
US7979421B2 (en) | 2004-03-31 | 2011-07-12 | Sap Ag | Fast search with very large result set |
US8027952B2 (en) | 2003-06-18 | 2011-09-27 | International Business Machines Corporation | System and article of manufacture for mirroring data at storage locations |
US8086598B1 (en) * | 2006-08-02 | 2011-12-27 | Hewlett-Packard Development Company, L.P. | Query optimizer with schema conversion |
US8103635B2 (en) | 2005-11-30 | 2012-01-24 | Oracle International Corporation | Reinstatement of database system in an automatic failover configuration |
US8121978B2 (en) | 2002-11-15 | 2012-02-21 | Sybase, Inc. | Database system providing improved methods for data replication |
US8126870B2 (en) | 2005-03-28 | 2012-02-28 | Sybase, Inc. | System and methodology for parallel query optimization using semantic-based partitioning |
US8196104B2 (en) | 2005-08-31 | 2012-06-05 | Sap Ag | Systems and methods for testing application accessibility |
US8200634B2 (en) | 2008-10-08 | 2012-06-12 | Sap Ag | Zero downtime maintenance using a mirror approach |
US8234633B2 (en) | 2008-01-09 | 2012-07-31 | Sap Ag | Incident simulation support environment and business objects associated with the incident |
US8255369B2 (en) | 2005-11-30 | 2012-08-28 | Oracle International Corporation | Automatic failover configuration with lightweight observer |
US8281014B2 (en) | 2004-12-28 | 2012-10-02 | Sap Ag | Session lifecycle management within a multi-tiered enterprise network |
US20120278307A1 (en) * | 2009-04-09 | 2012-11-01 | Paraccel, Inc. | System and method for processing database queries |
US8336023B2 (en) | 2007-10-22 | 2012-12-18 | Oracle International Corporation | Extensible code visualization |
US8356010B2 (en) | 2010-08-11 | 2013-01-15 | Sap Ag | Online data migration |
US8386431B2 (en) | 2010-06-14 | 2013-02-26 | Sap Ag | Method and system for determining database object associated with tenant-independent or tenant-specific data, configured to store data partition, current version of the respective convertor |
US8417669B2 (en) | 2011-06-01 | 2013-04-09 | Sybase Inc. | Auto-correction in database replication |
US8442952B1 (en) | 2011-03-30 | 2013-05-14 | Emc Corporation | Recovering in deduplication systems |
US8448137B2 (en) | 2005-12-30 | 2013-05-21 | Sap Ag | Software model integration scenarios |
US8522217B2 (en) | 2010-04-20 | 2013-08-27 | Microsoft Corporation | Visualization of runtime analysis across dynamic boundaries |
US8627317B2 (en) | 2010-03-25 | 2014-01-07 | International Business Machines Corporation | Automatic identification of bottlenecks using rule-based expert knowledge |
US8645922B2 (en) | 2008-11-25 | 2014-02-04 | Sap Ag | System and method of implementing a concurrency profiler |
US8745622B2 (en) | 2009-04-22 | 2014-06-03 | International Business Machines Corporation | Standalone software performance optimizer system for hybrid systems |
US8874508B1 (en) | 2012-10-02 | 2014-10-28 | Symantec Corporation | Systems and methods for enabling database disaster recovery using replicated volumes |
US20150149441A1 (en) | 2013-11-25 | 2015-05-28 | Anisoara Nica | Data Statistics in Data Management Systems |
US9058371B2 (en) | 2011-11-07 | 2015-06-16 | Sap Se | Distributed database log recovery |
US20150199262A1 (en) | 2014-01-16 | 2015-07-16 | Vivek Bhavsar | Runtime code visualization |
US20150301910A1 (en) | 2014-04-18 | 2015-10-22 | Ramanna Sathyanarayana | Flexible high avilability disaster recovery with a set of database servers |
US9195765B2 (en) | 2007-08-16 | 2015-11-24 | Oso Ip, Llc | Method and apparatus for presenting content |
US9213365B2 (en) | 2010-10-01 | 2015-12-15 | Z124 | Method and system for viewing stacked screen displays using gestures |
US9213728B2 (en) | 2011-12-14 | 2015-12-15 | Sap Se | Change data capturing during an upgrade |
US9239868B2 (en) | 2012-06-19 | 2016-01-19 | Microsoft Technology Licensing, Llc | Virtual session management and reestablishment |
-
2013
- 2013-12-31 US US14/145,777 patent/US9922088B2/en active Active
Patent Citations (66)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US5412806A (en) | 1992-08-20 | 1995-05-02 | Hewlett-Packard Company | Calibration of logical cost formulae for queries in a heterogeneous DBMS using synthetic database |
US5918225A (en) | 1993-04-16 | 1999-06-29 | Sybase, Inc. | SQL-based database system with improved indexing methodology |
US5515502A (en) | 1993-09-30 | 1996-05-07 | Sybase, Inc. | Data backup system with methods for stripe affinity backup to multiple archive devices |
US5761653A (en) | 1995-04-03 | 1998-06-02 | International Business Machines Corporation | Method for estimating cardinalities for query processing in a relational database management system |
US5956706A (en) | 1997-05-09 | 1999-09-21 | International Business Machines Corporation | Method and system for limiting the cardinality of an SQL query result |
US5951695A (en) | 1997-07-25 | 1999-09-14 | Hewlett-Packard Company | Fast database failover |
US6189142B1 (en) | 1998-09-16 | 2001-02-13 | International Business Machines Corporation | Visual program runtime performance analysis |
US6105020A (en) | 1999-10-11 | 2000-08-15 | International Business Machines Corporation | System and method for identifying and constructing star joins for execution by bitmap ANDing |
US6516310B2 (en) | 1999-12-07 | 2003-02-04 | Sybase, Inc. | System and methodology for join enumeration in a memory-constrained environment |
US7558748B2 (en) | 1999-12-17 | 2009-07-07 | Dorado Network Systems Corporation | Purpose-based adaptive rendering |
US7318066B2 (en) | 2000-10-31 | 2008-01-08 | Michael Philip Kaufman | System and method for generating automatic user interface for arbitrarily complex or large databases |
US6694507B2 (en) | 2000-12-15 | 2004-02-17 | International Business Machines Corporation | Method and apparatus for analyzing performance of object oriented programming code |
US6928580B2 (en) | 2001-07-09 | 2005-08-09 | Hewlett-Packard Development Company, L.P. | Distributed data center system protocol for continuity of service in the event of disaster failures |
US7305421B2 (en) | 2001-07-16 | 2007-12-04 | Sap Ag | Parallelized redo-only logging and recovery for highly available main memory database systems |
US7171408B2 (en) | 2001-10-18 | 2007-01-30 | International Business Machines Corporation | Method of cardinality estimation using statistical soft constraints |
US6801905B2 (en) | 2002-03-06 | 2004-10-05 | Sybase, Inc. | Database system providing methodology for property enforcement |
US6947927B2 (en) | 2002-07-09 | 2005-09-20 | Microsoft Corporation | Method and apparatus for exploiting statistics on query expressions for optimization |
US7657718B1 (en) | 2002-08-21 | 2010-02-02 | Emc Corporation | Storage automated replication processing |
US8121978B2 (en) | 2002-11-15 | 2012-02-21 | Sybase, Inc. | Database system providing improved methods for data replication |
US7146363B2 (en) | 2003-05-20 | 2006-12-05 | Microsoft Corporation | System and method for cardinality estimation based on query execution feedback |
US8027952B2 (en) | 2003-06-18 | 2011-09-27 | International Business Machines Corporation | System and article of manufacture for mirroring data at storage locations |
US7299226B2 (en) | 2003-06-19 | 2007-11-20 | Microsoft Corporation | Cardinality estimation of joins |
US7546598B2 (en) | 2003-09-03 | 2009-06-09 | Sap Aktiengesellschaft | Measuring software system performance using benchmarks |
US20050131914A1 (en) | 2003-12-11 | 2005-06-16 | International Business Machines Corporation | Apparatus and method for estimating cardinality when data skew is present |
US7447710B2 (en) | 2003-12-11 | 2008-11-04 | Sybase, Inc. | Database system providing self-tuned parallel database recovery |
US7979421B2 (en) | 2004-03-31 | 2011-07-12 | Sap Ag | Fast search with very large result set |
US7644397B2 (en) | 2004-06-19 | 2010-01-05 | Apple Inc. | Software performance analysis using data mining |
US8281014B2 (en) | 2004-12-28 | 2012-10-02 | Sap Ag | Session lifecycle management within a multi-tiered enterprise network |
US7689989B2 (en) | 2004-12-28 | 2010-03-30 | Sap Ag | Thread monitoring using shared memory |
US8126870B2 (en) | 2005-03-28 | 2012-02-28 | Sybase, Inc. | System and methodology for parallel query optimization using semantic-based partitioning |
US7337167B2 (en) | 2005-04-14 | 2008-02-26 | International Business Machines Corporation | Estimating a number of rows returned by a recursive query |
US20060288332A1 (en) | 2005-06-21 | 2006-12-21 | Microsoft Corporation | Workflow debugger |
US8196104B2 (en) | 2005-08-31 | 2012-06-05 | Sap Ag | Systems and methods for testing application accessibility |
US20070124347A1 (en) | 2005-11-30 | 2007-05-31 | Oracle International Corporation | Database system configured for automatic failover with no data loss |
US7549079B2 (en) | 2005-11-30 | 2009-06-16 | Oracle International Corporation | System and method of configuring a database system with replicated data and automatic failover and recovery |
US8255369B2 (en) | 2005-11-30 | 2012-08-28 | Oracle International Corporation | Automatic failover configuration with lightweight observer |
US8103635B2 (en) | 2005-11-30 | 2012-01-24 | Oracle International Corporation | Reinstatement of database system in an automatic failover configuration |
US8448137B2 (en) | 2005-12-30 | 2013-05-21 | Sap Ag | Software model integration scenarios |
US7904889B2 (en) | 2006-06-30 | 2011-03-08 | Sap Ag | Business process model debugger |
US8086598B1 (en) * | 2006-08-02 | 2011-12-27 | Hewlett-Packard Development Company, L.P. | Query optimizer with schema conversion |
US7933869B2 (en) | 2006-12-29 | 2011-04-26 | Sap Ag | Method and system for cloning a tenant database in a multi-tenant system |
US20100223276A1 (en) * | 2007-03-27 | 2010-09-02 | Faleh Jassem Al-Shameri | Automated Generation of Metadata for Mining Image and Text Data |
US9195765B2 (en) | 2007-08-16 | 2015-11-24 | Oso Ip, Llc | Method and apparatus for presenting content |
US8336023B2 (en) | 2007-10-22 | 2012-12-18 | Oracle International Corporation | Extensible code visualization |
US20090171921A1 (en) | 2007-12-28 | 2009-07-02 | Sybase, Inc. | Accelerating Queries Based on Exact Knowledge of Specific Rows Satisfying Local Conditions |
US8234633B2 (en) | 2008-01-09 | 2012-07-31 | Sap Ag | Incident simulation support environment and business objects associated with the incident |
US7917502B2 (en) | 2008-02-27 | 2011-03-29 | International Business Machines Corporation | Optimized collection of just-in-time statistics for database query optimization |
US8200634B2 (en) | 2008-10-08 | 2012-06-12 | Sap Ag | Zero downtime maintenance using a mirror approach |
US8645922B2 (en) | 2008-11-25 | 2014-02-04 | Sap Ag | System and method of implementing a concurrency profiler |
US20120278307A1 (en) * | 2009-04-09 | 2012-11-01 | Paraccel, Inc. | System and method for processing database queries |
US8745622B2 (en) | 2009-04-22 | 2014-06-03 | International Business Machines Corporation | Standalone software performance optimizer system for hybrid systems |
US20110029508A1 (en) * | 2009-07-31 | 2011-02-03 | Al-Omari Awny K | Selectivity-based optimized-query-plan caching |
US8627317B2 (en) | 2010-03-25 | 2014-01-07 | International Business Machines Corporation | Automatic identification of bottlenecks using rule-based expert knowledge |
US8522217B2 (en) | 2010-04-20 | 2013-08-27 | Microsoft Corporation | Visualization of runtime analysis across dynamic boundaries |
US8386431B2 (en) | 2010-06-14 | 2013-02-26 | Sap Ag | Method and system for determining database object associated with tenant-independent or tenant-specific data, configured to store data partition, current version of the respective convertor |
US8356010B2 (en) | 2010-08-11 | 2013-01-15 | Sap Ag | Online data migration |
US9213365B2 (en) | 2010-10-01 | 2015-12-15 | Z124 | Method and system for viewing stacked screen displays using gestures |
US8442952B1 (en) | 2011-03-30 | 2013-05-14 | Emc Corporation | Recovering in deduplication systems |
US8417669B2 (en) | 2011-06-01 | 2013-04-09 | Sybase Inc. | Auto-correction in database replication |
US9058371B2 (en) | 2011-11-07 | 2015-06-16 | Sap Se | Distributed database log recovery |
US9213728B2 (en) | 2011-12-14 | 2015-12-15 | Sap Se | Change data capturing during an upgrade |
US9239868B2 (en) | 2012-06-19 | 2016-01-19 | Microsoft Technology Licensing, Llc | Virtual session management and reestablishment |
US8874508B1 (en) | 2012-10-02 | 2014-10-28 | Symantec Corporation | Systems and methods for enabling database disaster recovery using replicated volumes |
US20150149441A1 (en) | 2013-11-25 | 2015-05-28 | Anisoara Nica | Data Statistics in Data Management Systems |
US20150199262A1 (en) | 2014-01-16 | 2015-07-16 | Vivek Bhavsar | Runtime code visualization |
US20150301910A1 (en) | 2014-04-18 | 2015-10-22 | Ramanna Sathyanarayana | Flexible high avilability disaster recovery with a set of database servers |
Non-Patent Citations (5)
Title |
---|
Extended European Search Report for European Application No. 14003672, dated Mar. 24, 2015; 7 pages. |
Final Office Action for U.S. Appl. No. 14/157,016, dated Apr. 19, 2016; 9 pages. |
Non-Final Office Action for U.S. Appl. No. 14/157,016, dated Jul. 20, 2015; 9 pages. |
Non-Final Office Action for U.S. Appl. No. 14/256,639, dated Sep. 29, 2015; 8 pages. |
Notice of Allowance for U.S. Appl. No. 14/256,639, dated Mar. 28, 2016; 5 pages. |
Cited By (4)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US11544268B2 (en) | 2014-09-26 | 2023-01-03 | Oracle International Corporation | System and method for generating size-based splits in a massively parallel or distributed database environment |
US11899666B2 (en) | 2014-09-26 | 2024-02-13 | Oracle International Corporation | System and method for dynamic database split generation in a massively parallel or distributed database environment |
US12248476B2 (en) | 2014-09-26 | 2025-03-11 | Oracle International Corporation | System and method for dynamic database split generation in a massively parallel or distributed database environment |
US10942891B2 (en) | 2019-03-27 | 2021-03-09 | Ownbackup Ltd. | Reducing number of queries on a relational database |
Also Published As
Publication number | Publication date |
---|---|
US20150186461A1 (en) | 2015-07-02 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US9922088B2 (en) | Cardinality estimation using spanning trees | |
US11681702B2 (en) | Conversion of model views into relational models | |
US9542444B2 (en) | Scalable multi-query optimization for SPARQL | |
Shen et al. | Discovering queries based on example tuples | |
US10133778B2 (en) | Query optimization using join cardinality | |
US10540354B2 (en) | Discovering representative composite CI patterns in an it system | |
US9002825B2 (en) | Estimating rows returned by recursive queries using fanout | |
US8903868B2 (en) | Processing of categorized product information | |
US12099506B2 (en) | Federated query optimization | |
US20210173839A1 (en) | Placement of adaptive aggregation operators and properties in a query plan | |
US9405855B2 (en) | Processing diff-queries on property graphs | |
US7676450B2 (en) | Null aware anti-join | |
US10191943B2 (en) | Decorrelation of user-defined function invocations in queries | |
US20180276277A1 (en) | Data Query Method and Apparatus, and Database System | |
US10664477B2 (en) | Cardinality estimation in databases | |
US20150370857A1 (en) | Multi-dimensional data statistics | |
EP3413214A1 (en) | Selectivity estimation for database query planning | |
US10268724B2 (en) | Techniques for improving the performance of complex queries | |
US20120150841A1 (en) | Auditing queries using query differentials | |
US9489423B1 (en) | Query data acquisition and analysis | |
US10936595B2 (en) | Deferring and/or eliminating decompressing database data | |
US12032582B2 (en) | Bi-gram cardinality estimation in a graph database | |
Raghavan et al. | Progressive result generation for multi-criteria decision support queries | |
Karthik | Robust query processing |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
AS | Assignment |
Owner name: SYBASE, INC., CALIFORNIA Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:NICA, ANISOARA;REEL/FRAME:037036/0684 Effective date: 20140108 |
|
STCF | Information on status: patent grant |
Free format text: PATENTED CASE |
|
MAFP | Maintenance fee payment |
Free format text: PAYMENT OF MAINTENANCE FEE, 4TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1551); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY Year of fee payment: 4 |