The present invention provides a method of selectivity estimation in which preprocessing steps improve the feasibility and efficiency of the estimation. The preprocessing steps are partitioning (to make iterative scaling estimation terminate in a reasonable time for even large sets of predicates), forced partitioning (to enable partitioning in case there are no “natural” partitions, by finding the subsets of predicates to create partitions that least impact the overall solution); inconsistency resolution (in order to ensure that there always is a correct and feasible solution), and implied zero elimination (to ensure convergence of the iterative scaling computation under all circumstances). All of these preprocessing steps make a maximum entropy method of selectivity estimation produce a correct cardinality model, for any kind of query with conjuncts of predicates. In addition, the preprocessing steps can also be used in conjunction with prior art methods for building a cardinality model.
|
5. A database query optimizer, wherein the optimizer is embodied in a software program for database management and executed by a processor, the optimizer receiving input of a knowledge set T for a predicate index set N and selectivities {Sy:YεT} for predicate set P, the optimizer executing steps for:
partitioning said predicate index set N with respect to said input selectivities; wherein a constant μ: is chosen such that the cardinality of each partition N1, N2, . . . , Nk follows |Ni|≦μ for each iε{1,2, . . . , k};
selecting, in response to said predicate index set13 N not satisfying a partitioning condition, XεT such that X has the smallest impact on a maximum entropy (ME) solution to a constrained optimization problem
removing the element X from T in order to force a partitioning of P and T;
partitioning P and T accordingly in response to said predicate index set N satisfying a partitioning condition.
10. A computer program product comprising a computer useable medium including a computer readable program to be loaded into a computer system with a processor, wherein the computer readable program when executed by the processor causes the computer to:
input a set of input selectivities {sx: XεT};
partition a predicate index set N with respect to said input selectivities, wherein a number of said Dartitions is at least one, wherein the input selectivities can be single or multivariate; and wherein a constant μ: is chosen such that the cardinality of each partition N1, N2, . . . , Nk follows |Ni|≦μ for each iε{1,2, . . . , k};
form the |T| constraints ΣbεC(X)xb=sx, XεT; wherein each partition set of selectivities is constrained separately and treated as a separate unit;
detect a zero atom b for which xb=0 in said constraints; and
combining the zero atoms determined in the separate partitions using an independence assumption.
1. A computer-implemented method for a database, given a set of input selectivities {Sx: XεT}, wherein T represents a knowledge set, the method comprising: partitioning a predicate index set N with respect to said input selectivities, wherein a number of said partitions is at least one, wherein the input selectivities can be single or multivariate; and wherein a constant μ: is chosen such that the cardinality of each partition N1, N2, . . . , Nk follows |Ni|≦μ for each iε{1,2, . . . , k};
adjusting said input selectivities to obtain a mutually consistent set of selectivities, wherein each partition set of selectivities is adjusted separately and treated as a separate unit; wherein said adjusting step comprises associating two slack variables with each constraint of said constrained optimization problem, except for the constraint corresponding to an Sφ
minimizing said adjusting of said input selectivities; wherein said minimizing step comprises minimizing a total sum of said slack variables; and
combining the selectivity estimates in the separate partitions using an independence assumption,
Sx=Πiε{1,2, . . . , k}Sx∩N wherein
said given set of input selectivities is not mutually consistent; and
said adjusted selectivities are mutually consistent and yield a set of satisfiable constrained optimization problem.
2. The method of
3. The method of
weighting a first pair of slack variables with a first weighting coefficient, said first pair of slack variables associated with a constraint for a selectivity sx;
weighting a second pair of slack variables with a second weighting coefficient, said second pair of slack variables associated with a constraint for a selectivity sy, wherein:
selectivity sx is more reliable than selectivity sy, and
said first weighting coefficient is larger than said second weighting coefficient; and performing said adjusting and minimizing steps with said weighting coefficients.
4. The method of
said minimizing step comprises solving a linear program (LP) having slack variables ax+; ax−, said LP including:
said adjusting step includes replacing each sx with sx−ax+−ax−.
6. The optimizer of
choosing a constant μ:; and
removing elements from T in order to force a partitioning of P and T with partitions N1, N2, . . . , Nk in which |Ni|≦μ for each iε{1, 2, . . . , k}.
7. The optimizer of
8. The optimizer of
starting with |N| partitions, wherein Ni={i} and ci=1 for every partition;
iteratively merging partitions based on each element XεT, so that
adding an element XεT to the knowledge set Ti of partition Ni only if afterwards ci≦μ is still satisfied and otherwise, if Ci≦μ is violated, ignoring X
9. The optimizer of
said satisfied partitioning condition is that N={1,2, . . . , n} can be split into nonempty disjoint subsets N1, N2, . . . , Nk, such that for each XεT it is the case that X ⊂Ni for some iε{1,2, . . . , k}; and
said partitioning P and T accordingly comprises setting Pi={pj|jεNi} and Ti={XεT|X⊂Ni} for 1≦i≦k.
11. The computer program product of
detecting said zero atom using an iterative process.
12. The computer program product of
detecting said zero atom using an approximation process.
13. The computer program product of
setting an initial set A0 of candidate zero atoms to contain all of the atoms so that A0={0, 1}n;
in a first iteration, setting i=0 and solving the linear program (LP):
in a second iteration, refining the set of candidates as A1=A0\{b|xb≠0}, setting i=1, and solving the resulting LP in Equation 1; and
further iterating until either (i) Ai=Ø or (ii) xb=0 for every bεAi.
14. The computer program product of
rewriting the selectivity xb of each atom as the sum of two new variables: xb=Vb+Wb;
solving the following LP:
wherein ε is a chosen small value in [0, 1]; and
detecting an atom b as a zero atom if and only if Wb=Vb=0.
|
The present invention relates generally to the field of query plan optimization in relational databases and, more specifically, to preprocessing for efficiently optimizing query plans having conjunctive predicates.
When comparing alternative query execution plans (QEPs), a cost-based query optimizer in a relational database management system (RDBMS) needs to estimate the selectivity of conjunctive predicates. The optimizer immediately faces a problem of how to combine available partial information about selectivities in a consistent and comprehensive manner. Estimating the selectivity of predicates has always been a challenging task for a query optimizer in a relational database management system. A classic problem has been the lack of detailed information about the joint frequency distribution of attribute values in the table of interest. Perhaps ironically, the additional information now available to modern optimizers has in a certain sense made the selectivity-estimation problem even harder.
Specifically, consider the problem of estimating the selectivity s1,2, . . . ,n of a conjunctive predicate of the form p1p2 . . . pn, where each pi is a simple predicate (also called a Boolean Factor, or BF) of the form “column op literal”. Here “column” is a column name, “op” is a relational comparison operator such as “=”, “>”, or “LIKE”, and “literal” is a literal in the domain of the column. Some examples of simple predicates are ‘make=“Honda”’ and ‘year >1984’. The selectivity of a predicate p, as known in the art, may be defined as the fraction (or, alternatively, the cardinality referring to the absolute number of satisfying rows) of rows in the table that satisfy p (where p is not restricted to conjunctive form). In typical prior art optimizers, statistics are maintained on each individual column, so that the individual selectivities s1, s2, . . . , sn of p1, p2, . . . , pn are available. Such a query optimizer would then impose an independence assumption and estimate the desired selectivity as s1,2, . . . , n=s1*s2* . . . * sn. This type of estimate ignores correlations between attribute values, and consequently can be inaccurate, often underestimating the true selectivity by orders of magnitude and leading to a poor choice of query execution plan (QEP).
To overcome the problems—such as inaccuracy resulting from ignoring correlations—caused by using the independence assumption, the optimizer can store the multidimensional joint frequency distribution for all of the columns in the database. However, in practice, the amount of storage required for the full distribution is exponentially large, making this approach infeasible. Alternative approaches therefore have been proposed for storage of selected multivariate statistics (MVS) that summarize important partial information about the joint distribution. Proposals have ranged from multidimensional histograms on selected columns to other, simpler forms of column-group statistics. Thus, for predicates p1, p2, . . . , pn, the optimizer typically has access to the individual selectivities s1, s2, . . . , sn as well as a limited collection of joint selectivities, such as s1,2, s3,5, and s2,3,4. The independence assumption is then used to “fill in the gaps” in the incomplete information, e.g., to estimate the unknown selectivity s1,2,3 by s1,2*s3.
The problem, alluded to above, of combining available partial information about selectivities in a consistent and comprehensive manner now arises, however. There may be multiple, non-equivalent ways of estimating the selectivity for a given predicate.
Assuming that the QEP (a) in
Although an ad hoc method as in the example of
Another significant problem encountered when estimating selectivities in a real-world database management system is that the given selectivities might not be mutually consistent. For example, the selectivities s1=0.1 and s1,2=0.15 are inconsistent, because they violate the obvious requirement that sX≧sY whenever X⊂Y. In the presence of inconsistent statistics, it may be impossible to find a set of satisfiable constraints for estimating all the selectivities in a consistent and comprehensive manner.
There are two typical causes of inconsistent statistics. First, the single-column statistics are often taken from the system catalogue directly or derived by the optimizer from catalogue statistics. Because collection of accurate statistics can be a highly cost-intensive process, commercial database systems typically compute catalogue statistics using approximate methods such as random sampling or probabilistic counting. Even when the catalogue statistics are exact, the selectivity estimates computed by the optimizer from these statistics often incorporate inaccurate uniformity assumptions or use rough histogram approximations based on a small number of known quantiles. A second cause of inconsistent knowledge is the fact that different statistics may be collected at different points in time, and the underlying data can change in between collection epochs. This problem is particularly acute in more recent prior art systems where some of the MVS used by the optimizer might be based on query feedback or materialized statistical views.
In one embodiment of the present invention, a computer-implemented method is given a set of input selectivities {sX: XεT}, and the method includes adjusting the input selectivities to obtain a mutually consistent set of selectivities; and minimizing the adjusting of the input selectivities.
In another embodiment of the present invention, a database query optimizer, receiving input of a knowledge set T for a predicate index set N and selectivities {sY: YεT} for a predicate set P, executes steps for: selecting, in response to N not satisfying a partitioning condition, XεT such that X has the smallest impact on a maximum entropy (ME) solution to a constrained optimization problem; and removing the element X from T in order to force a partitioning of P and T.
In a further embodiment of the present invention, a computer program product comprising a computer useable medium includes a computer readable program, wherein the computer readable program when executed on a computer causes the computer to: input a set of input selectivities {sX: XεT}; form the |T| constraints ΣbεC(X)xb=sX, XεT; and detect a zero atom b for which xb=0 in the constraints.
These and other features, aspects and advantages of the present invention will become better understood with reference to the following drawings, description and claims.
The following detailed description is of the best currently contemplated modes of carrying out the invention. The description is not to be taken in a limiting sense, but is made merely for the purpose of illustrating the general principles of the invention, since the scope of the invention is best defined by the appended claims.
Broadly, embodiments of the present invention provide a novel maximum entropy (ME) method for estimating the selectivity of conjunctive predicates, utilizing an approach that is information-theoretically sound, i.e., valid from the point of view of information theory, invented by Claude Shannon of MIT circa 1947, as known in the art, and that takes into account available statistics on both single columns and groups of columns. Embodiments of the invention find application, for example, in commercial query optimizers that use statistical information on the number of rows in a relational database management system table and the number of distinct values in a column to compute the selectivities of simple predicates.
Unlike prior art ad hoc query optimizers—such as the example given above—that select from available knowledge and thus remain subject to inconsistencies and to introducing biases, embodiments avoid arbitrary biases, inconsistencies, and the flight from knowledge to ignorance by deriving missing knowledge using the ME principle. Embodiments exploit any and all available multi-attribute information, in contrast to prior art selectivity models that typically ignore at least some available information.
Embodiments also differ from the prior art by introducing methods for resolving inconsistencies in the available multivariate statistics (MVS) that would otherwise prevent computation of a ME solution; such inconsistencies can arise when the single-column statistics in the catalogue have been computed only approximately, or when the various statistics used by the optimizer have been computed at different points in time.
Other embodiments differ from the prior art by including novel partitioning methods that permit application of the inventive method of selectivity estimation (and also prior art methods of selectivity estimation) to complex queries with many predicates. For example, in various embodiments, the efficiency of the ME computation can be improved—often by orders of magnitude—by partitioning the predicates into disjoint sets and computing an ME distribution for each of the resulting sub-problems. Thus, estimating selectivities for a complex query, e.g., one having more than 10 predicates, may be feasible with the present invention where not practical using prior art methods.
Further embodiments differ from the prior art by providing methods for detecting and eliminating atoms of the predicates with implied selectivity of zero (also referred to as “zero atoms” or “zeroes”) prior to the computation of the selectivities of the predicates. Implied zero elimination may ensure convergence of an iterative scaling algorithm used in some embodiments to compute selectivies using the ME model. As with the novel methods for resolving inconsistencies and for partitioning, the novel method for implied zero elimination may also be applied to prior art methods for estimating selectivities.
The problem of selectivity estimation for conjunctive predicates, given partial MVS, may be formalized using the following terminology. A set of boolean factors (BFs) may be denoted as P={p1, . . . , pn}. For any X⊂N={1, . . . , n}, pX is used to denote the conjunctive predicate iεXpi. The symbol s denotes a probability measure over 2N, the powerset of N, with the interpretation that sX is the selectivity of the predicate pX. (The quantity sX can also be interpreted as the probability that a randomly selected row satisfies pX.) Usually, for |X|=1, the histograms and column statistics from the system catalog determine sX and are all known. For |X|>1, the MVS may be stored in the database system catalog either as multidimensional histograms, index statistics, or some other form of column-group statistics or statistics on intermediate tables. In practice, sX is not known for all possible predicate combinations due to the exponential number of combinations of columns that can be used to define MVS. Suppose that sX is known for every X in some collection T⊂2N. The collection T may be referred to as the “knowledge set” for the predicates P. It may be defined that the empty set Ø is always part of T, because sØ=1 when applying no predicates. Given that sX is known for every X in the collection T, the selectivity estimation problem is to compute sX for Xε2N\T, i.e., to compute .sX for all the remaining sets X not in the collection T.
Information theory defines for a probability distribution q=(q1, q2, . . . ) a measure of uncertainty called entropy:
H(q)=−Σiqi log qi.
The ME principle prescribes selection of the unique probability distribution that maximizes the entropy function H(q) and is consistent with respect to the known information. Entropy maximization without any additional information uses the single constraint that the sum of all probabilities equals 1. The ME probability distribution is then the uniform distribution. When constraints only involve marginals of a multivariate distribution, the ME solution coincides with the independence assumption. Thus, query optimizers that do not use MVS comprise a special case of estimating their selectivities for conjunctive queries according to the ME principle: they assume uniformity when no information about column distributions is available, and they assume independence because they do not know about any correlations. In contrast, integrating the more general ME principle into the inventive optimizer's cardinality model, thereby generalizes these concepts of uniformity and independence. The ME principle enables the inventive optimizer to take advantage of all available information in a consistent way, avoiding inappropriate bias towards any given set of selectivity estimates. The ME principle applied to selectivity estimation means that, given several selectivities of simple predicates and conjuncts, the inventive optimizer chooses the most uniform and independent selectivity model consistent with this information.
Referring now to
At step 204, method 200 may retrieve single, e.g., individual selectivities s1, s2, . . . sn, and multivariate, e.g., joint selectivities, such as s1,2, s3,5, and s2,3,4, statistics T from the database, where T is a collection T⊂2N, as formalized above.
At step 206, if there is a need to reduce computational complexity of estimating selectivities, the overall problem of estimating selectivities may be divided into several sub-problems 207 as indicated by the branching of flow arrows at 208. To accomplish a division of the overall problem into subproblems, method 200 may partition N with respect to T. The overall problem may then be solved by combining solutions for the sub-problems 207 as indicated by the rejoining of flow arrows at 209. If T satisfies a certain condition (described below), method 200 may accordingly partition N with respect to T (“naturally”) at step 206 and, if not, method 200 may use forced partitioning to partition N with respect to T at step 206. Both types of partitioning, which may occur at step 206, are described in more detail below. Each of the sub-problems 207 corresponds to a component Nk of the partition of N. (If N is not partitioned, there is only one component N1=N and one sub-problem 207.)
At step 210, method 200 may resolve inconsistencies for each of the sub-problems 207 as described in more detail below.
At step 212, method 200 may detect and eliminate zero atoms as described in more detail below.
At step 214, method 200 may compute an ME solution of selectivity estimates for each component of the partition of N with respect to T.
At step 216, the solutions for the partitions may be combined, as described in more detail below in connection with partitioning.
At output 218, an overall solution for the problem of estimating selectivities may be given in accordance with the ME selectivity model.
In order to describe in more detail the partitioning (206), resolving inconsistencies (210), and implied zero detection and elimination (212) steps of method 200, the following begins with a description of the constrained optimization problem that may be solved at step 214 in order for method 200 to provide selectivity estimation at step 214. The constrained optimization problem is described first in order to provide a consistent terminology for describing the partitioning (206), resolving inconsistencies (210), and implied zero detection and elimination (212) steps.
Rather than applying the steps of resolving inconsistencies (210) and detecting zero atoms (212) directly to a selectivity estimation problem it may be more computationally efficient to first break up the selectivity estimation problem into smaller problems before applying the steps of resolving inconsistencies (210) and detecting zero atoms (212) individually to each smaller problem. Thus, method 200 may first perform the partitioning (206) process which accomplishes this breaking up of a problem into smaller sub-problems.
Likewise, because a newly consistent set of constraints may have new zero atoms, method 200 may first obtain a consistent starting set of constraints by applying the process of resolving inconsistencies (210) to the (sub)problem before detecting and removing zero atoms (212). Also, because the steps of resolving inconsistencies (210) and detecting zero atoms (212) may facilitate a more efficient computation of solutions to the constrained optimization (sub)problems for selectivity estimation, method 200 may first perform all the preprocessing steps of partitioning (206), resolving inconsistencies (210), and detecting zero atoms (212) before computing an ME solution for the constrained optimization problem. Thus, while the sections below are presented in a certain order to facilitate a logical and consistent exposition, that order of presentation of the processing steps of method 200 may be the reverse of the exemplary order of execution in method 200. Thus, each heading below is cross-referenced to a corresponding step of method 200.
The Constrained Optimization Problem (Step 214)
Given a set of predicates P={p1, p2, . . . , pn}, each of the corresponding atoms—terms in disjunctive normal form (DNF), i.e., a term of the form iεN pib
C(X)={bε={0,1}n|bi=1 for all iεX} and C(Ø)={0,1} n.
For example, for predicates p1 and p1,2, the components are:
C({1})={100, 110, 101, 111} and C({1,2})={110, 111}.
Additionally, for each possible knowledge set T⊂2N, P(b, T) denotes the set of all XεT such that pX has b as an atom in its DNF representation, i.e.,
P(b,T)={XεT|bi=1 for all iεX}∪{Ø}.
Thus, for the atom 011 and T=2{1,2,3}, for example, P(b,T)={{2}, {3}, {2,3}, Ø}.
Given sX for XεT, sX for X∉T may be computed according to the ME principle. To this end, method 200, for example, at step 214, may solve the following constrained optimization problem:
subject to the |T| constraints
ΣbεC(X)xb=sX, XεT, (Equation 2)
where xbε[0,1] denotes the selectivity of atom b. The |T| constraints correspond to the known selectivities. One of the included constraints is sØ=Σbε{0,1}
The example of
s1=x100+x110+x101+x111=0.1 (I)
s2=x010+x011+x110+x111=0.2 (II)
s3=x001+x011+x101+x111=0.25 (III)
s1,2=x110+x111=0.05 (IV)
s1,3=x101+x111=0.03 (V)
sØ=Σbε{0,1}
The task of selectivity estimation is to now compute a solution for all atoms xb, bε{0,1}3 that maximizes the entropy function −Σbε{0,1}
Detection of Implied Zero Atoms (Step 212)
It is often the case that the constraints in Equation 2 imply that the selectivity of certain atoms must be zero in any feasible solution. For instance, if pp2, so that s1=s1,2, then x100=x101=0 in any solution x. These zero atoms, i.e., atoms for which the selectivity=0, can destabilize numerical solution algorithms so that they do not converge to a solution of the ME optimization problem. Consequently, all zero atoms must be identified and explicitly removed from the constraints in the ME optimization problem prior to execution of numerical solution algorithms.
Identifying zero atoms is nontrivial in general, because the reasoning involved can be arbitrarily complex. In the following sections, an iterative sub-method 212a and an approximation sub-method 212b are described for automatically detecting zero atoms, either of which may be used by method 200, for example, at step 212. The iterative sub-method 212a provides an exact solution but is computationally expensive while the approximation sub-method 212b is relatively quick (computationally inexpensive) but approximate.
Iterative Detection of Zero Atoms (Sub-method 212a)
The iterative sub-method 212a for detecting zero atoms is based on the following. If, for a given atom b, there exists a feasible solution x that satisfies all constraints in Equation 2 and in which xb>0, then xb is also positive in the ME solution.
The iterative sub-method 212a for zero detection may begin with an initial set A0 of candidate zero atoms that contains all of the atoms: A0={0,1}n. In the first iteration the iterative sub-method 212a may set i=0 and solve the linear program (LP):
using, e.g., the simplex method (as known in the art). The idea is that a solution to the above problem can make each xb as large as possible while satisfying the feasibility conditions. Any xb that is equal to 0 in the LP solution is therefore likely to be a zero atom. However, an xb that is equal to 0 in the LP solution is not guaranteed to be a zero atom; it could be the case that xb=0 in the computed optimal LP solution but not in other possible optimal LP solutions. The iterative sub-method 212a may therefore refine the set of candidates as A1=A0\{b|xb≠0}, set i=1, and solve the resulting LP in Equation 3. The iterative sub-method 212a may proceed in this manner, iterating until either (i) Ai=Ø or (ii) xb=0 for every bεAi. In the former case, each candidate atom can have been shown to have positive probability in at least one feasible solution, and hence, as discussed previously, should be positive in the ME solution, and, therefore the iterative sub-method 212a may conclude that there are no zero atoms. In the latter case, the objective-function value for the solution to the LP in Equation 3 is 0, and therefore each atom bεAi should have xb=0 in any feasible solution—otherwise, the optimal objective-function value would have been positive—and hence each atom bεAi should have had xb=0 also in the ME solution. Therefore, the iterative sub-method 212a may conclude that Ai is precisely the set of zero atoms.
Example: Iterative Zero Detection (Sub-method 212a)
Suppose that N={1,2,3}, T={{1}, {2}, {3}, {1,2}, {1,3}, {2,3}, Ø}, s1=0.23, s2=0.01, s3=0.015, s1,2=0.01, s1,3=0.01, s2,3=0.01, and sØ=1. The constraints in the ME optimization problem are:
s1=x100+x110+x101+x111=0.23
s2=x010+x011+x110+x111=0.01
s3=x001+x011+x101+x111=0.015
s1,2=x110+x111=0.01
s1,3=x101+x111=0.01
s2,3=x011+x111=0.01
sØ=Σbε{0,1}
Setting A0={0,1}3 and solving the LP in Equation 3, the iterative sub-method 212a obtains a solution in which x000, x100, x001, and x111, are nonzero. For the next iteration the iterative sub-method 212a therefore sets A1={010, 110, 101, 011}. Solving the resulting LP, the iterative sub-method 212a finds that x010=x110=x101, =x011=0, so that A2 is the set of zero atoms.
The foregoing iterative sub-method 212a can be shown to discover every zero atom and not misclassify any nonzero atoms as zero atoms. Unfortunately, due to its iterative nature, the sub-method 212a may be so computationally expensive as to be impractical in real-world applications, even with a highly sophisticated LP solver.
Zero Detection Via Approximation (Sub-method 212B)
A more practical implementation of method 200 may employ an approximation detection sub-method 212b, for example, at step 212 of method 200, that may offer a reasonable trade-off between accuracy and execution time. The approximation detection sub-method 212b may first rewrite the selectivity of each atom as the sum of two new variables: xb=vb+wb. The approximation detection sub-method 212b may now solve the following LP:
where ε is a small value. For example, ε=0.0001 may be selected, and the value chosen may depend on various factors such as execution time for solving the LP and the level of precision desired. After solving this LP, an atom b may be considered to be a zero atom if and only if wb=vb=0. The idea is that setting xb=0 requires setting vb=0, which can significantly decrease the objective-function value because of the ε upper bound on all of the selectivities. Thus only “true” zero atoms are likely to be identified by the solution to the LP. The approximation detection sub-method 212b may include the wb variables because they provide the “padding” needed to ensure that the original constraints in Equation 2 are satisfied. The approximation detection sub-method 212b can find all of the zero atoms, but may be considered approximate in that it can mislabel some nonzero atoms as zero atoms. In practice, such mislabelings tend to be infrequent, so that the quality of the ultimate ME solution (e.g., given by method 200) remains good.
Example: Zero Detection Via Approximation (Sub-method 212B)
As in the previous example for sub-method 212a, again suppose that N={1,2,3}, T={{1}, {2}, {3}, {1,2}, {1,3}, {2,3}, Ø}, s1=0.23, s2=0.01, s3=0.015, s1,2=0.01, s1,3=0.01, s2,3=0.01, and sØ=1. The constraints in the resulting LP are:
s1=v100+w100+v110+w110+v101+w101+v111+w111=0.23
s2=v010+w010+v011+w011+v110+w110+v111+w111=0.01
s3=v001+w001+v011+w011+v101+w101+v111+w111=0.015
s1,2=v110+w110+v111+w111=0.01
s1,3=v101+w101+v111+w111=0.01
s2,3=v011+w011+v111+w111=0.01
sØ=Σbε{0,1}
In the solution returned by the simplex algorithm, the following variables are equal to zero: v010, w010, v110, w110, v101, w101, v011, w011. The approximation detection sub-method 212b therefore can take the set of zero atoms as {010, 110, 101, 011}. Observe that this solution for this example coincides with the solution for the previous example returned by the iterative detection sub-method 212a
Resolving Inconsistencies (Step 210)
A significant problem encountered when applying ME selectivity estimation method 200 in a real-world database management system is that the given selectivities {sX: XεT} might not be mutually consistent. For example, the selectivities s1=0.1 and s1,2=0.15 are inconsistent, because they violate the obvious requirement that sX≧sY whenever X⊂Y. In the presence of inconsistent statistics, there can not exist any solutions to the constrained optimization problem in Equations 1 and 2, much less an ME solution, and the iterative scaling algorithm, for example, if applied blindly, will fail to converge. Therefore, method 200 provides at step 210 a method for resolving inconsistencies that may adjust the input selectivities (obtained, e.g., at step 204) to obtain a set of satisfiable constraints, prior to solution of the constrained optimization problem, (e.g., at step 214) by execution, for example, of the iterative-scaling method.
The method for resolving inconsistencies first may associate two “slack” variables aX+; aX− with each of the original constraints in Equation 2, except for the constraint corresponding to sØ. This latter constraint ensures that the atom selectivities sum to 1, and therefore may not be modified. The method for resolving inconsistencies (step 210) then may solve the following LP:
The slack variables may represent either positive or negative adjustments to the selectivities needed to ensure the existence of a feasible solution. In this connection, it may be observed that, in the optimal solution to the LP, at most one of the two slack variables for a constraint can be nonzero; indeed, for a specified value aX+-aX− of the total adjustment, any solution that has a nonzero value for both slack variables yields a higher value of the objective function than a solution with only a single nonzero slack variable. The presence of a nonzero slack variable can both signal the presence of an inconsistency and indicate how to obtain consistency, namely, by setting sX*:=sX−aX++aX−. The constraint in Equation 4 ensures that the adjusted selectivities lie in the range [0,1] By taking the objective function as the sum of the slack variables, the method for resolving inconsistencies (step 210) can ensure that the adjustments to the constraints are as small as possible.
In an alternative embodiment of step 210, the terms in the objective function may be weighted to reflect the fact that, typically, some statistics are more reliable than others. A large weighting coefficient for the slack variables aX+ and aX− could be used for a corresponding selectivity sX that is relatively more reliable; thus, this selectivity is relatively unlikely to be adjusted because an adjustment would incur a relatively large penalty in the objective function. By means of this weighting method, unreliable statistics are more likely to be subject to adjustments than reliable ones.
A newly consistent set of constraints may have zero atoms. Method 200, thus, first may obtain a consistent starting set of constraints at step 210 using the methods described here and then detect and remove zero atoms at step 212 as described above under the headings relating to “ZERO DETECTION”.
Example: Inconsistency Detection and Removal (Step 210)
Suppose that N={1,2}, T={{1}, {2}, {1,2}, Ø}, s1=0.99, s2=0.99, s1,2=0.90, and sØ=1. The constraints for the LP are given by:
s1=x10+x11+a1+−a1−=0.99
s2=x01+x11+a2+−a2−=0.99
s1,2=x11+a1,2+−a1,2−=0.90
sØ=x00+x10+x01+x11=1
Minimizing the sum over all slack variables yields the following solution:
a1+=a1−=0
a2+=a2−=0
a1,2+=0
a1,2−=0.08
Although it may not be readily apparent, the constraint set T contains an inconsistency, because a1,2−=0.08. Applying the resulting adjustment, the method for resolving inconsistencies (step 210) may obtain the set of consistent selectivities s1*=0.99, s2*=0.99, and s1,2*=0.98.
Partitioning (Step 206)
Because solving the constrained optimization problem (e.g., at step 214), for example, using iterative scaling, has computational complexity that is exponential on the size of the predicate set P, e.g., complexity of O(|T|2|P|), it may be desirable to avoid executing the iterative scaling algorithm on the full predicate set P. Instead, method 200 may compute the ME solution by partitioning P into several disjoint subsets, executing the iterative scaling computation on each subset independently, and using the independence assumption to combine selectivity estimates for predicates in different partitions. Partitioning can reduce the computational complexity from O(|T|2|P|) to O(|T1|2|P1|+|T2|2|P2|+ . . . +|Tk|2|Pk|), where T1, T2, . . . , Tk and P1, P2, . . . , Pk form a partition of the predicate set P and can make the iterative scaling algorithm feasible even for extremely complex queries with large sets of predicates.
Method 200 can naturally partition the predicate set P under certain conditions, e.g. the partitioning condition described below; otherwise, method 200 may force a partition of the predicate set P or may force a further partition of the natural partition if there is a need to make the partition sizes smaller.
If, at step 206, method 200 can split N={1,2, . . . ,n} into nonempty disjoint subsets N1, N2, . . . , Nk, such that for each XεT it is the case that x⊂Ni for some iε{1,2, . . . ,k}, then the index set N of P is said to satisfy a partitioning condition. In that case, method 200 may partition P and T accordingly (or naturally partition P and T) by setting
Pi={pj|jεNi} and Ti={XεT|X⊂Ni}
for 1≦i≦k. (It may be observed that the Ti sets are not completely disjoint, because they all contain Ø.) In method 200, the ME solution for (P,T) can be obtained by first (e.g., using iterative scaling) computing the ME solutions for (P1,T1), (P2,T2), . . . , (Pk,Tk) and then using the independence assumption to combine selectivity estimates for predicates in different partitions; i.e., method 200 may compute
sx=Πiε{1,2, . . . ,k}sx∩N
for Xε2N.
For example, when N={1,2,3,4} and T={{1}, {1,2}, {3}, {3,4}, Ø}, method 200 can take N1={1,2}, N2={3,4}, T1={{1}, {1,2}, Ø}, and T2={{3}, {3,4}, Ø} Method 200 can then, for example, compute s2 by obtaining the ME solution for (P1,T1), compute s4 by obtaining the ME solution for (P2,T2), and then compute s2,4 using the independence assumption as s2,4=s2*s4.
Partitioning can reduce the iterative scaling computation complexity from O(|T|2|N|) to O(T12|N
In practice, partitioning can reduce the computational complexity even more than is indicated above, by avoiding execution of the iterative scaling computation altogether for specified partitions (Pi,Ti). In the above example, for instance, method 200 can compute the selectivity s1,2,4 as s1,2,4=s1,2*s4; because s1,2 is known a priori, method 200 need only run iterative scaling on (P2,T2) and not on (P1,T1). Similarly, if a partition contains only a few predicates, it may be possible to compute the desired ME selectivity analytically, without requiring iterative scaling. For example, suppose that Pi={p1, p2, p3}, Ti={{1}, {2}, {3}, {1,2}, {2,3}, Ø}, and method 200 needs to compute s1,2,3. It can be shown, for this example, that s1,2,3=s1,2*s2,3/s2, so that no iterative scaling computation is needed. In general, it may be possible to maintain a “library” of such identities, and method 200 may perform a quick syntactic analysis at selectivity-estimation time to see if any of the identities apply.
Forced Partitioning (step 206)
In order to provide adequate real-time performance for computation of the constrained optimization problem (e.g., at step 214) using iterative scaling, for example, it may be desirable to ensure that each partition Ni of N, as described above, has a cardinality smaller than μ, where μ is a constant natural number greater than or equal to one that depends on the computer hardware and system load. For example, the constant μ may depend primarily on the CPU speed of the computer. On a single-user laptop using an Intel Pentium® III Mobile CPU 1133 MHz with 512 MB RAM, for example, a value for μ=8 has been found to provide computation time typically less than one second for iterative scaling computations.
It may not always be possible to partition N into subsets of cardinality less than μ for a given set T. For instance, if N={1,2,3,4,5,6} and T={{1}, {2}, {3}, {4}, {5}, {6}, {1,2}, {2,3}, {3,4}, {4,5}, {5,6}}, then N cannot be partitioned for μ=3 because for any partitioning of N into N1 and N2, there exists at least one XεT such that X∩N1≠Ø and X∩N2≠Ø. Thus, the independence assumption applied between any two partitions N1 and N2 in this example cannot result in the correct ME solution for N and T.
In such cases, method 200 may remove elements from T in order to force a partitioning in which |Ni|≦μ. However, this forced partitioning can impact the quality of the ME solution, since method 200 is discarding information. Ideally, a forced-partitioning method should remove those elements that have the least impact on the ME solution. Such a method, however, would be very computationally expensive, because it would have to consider the interaction of every constraint with every other constraint. Method 200 may use a pragmatic computational method (e.g., at step 206) for forced partitioning with complexity O(|T|log|T|) that ignores interactions and greedily removes elements from T with the goal of minimizing the impact on the ME solution, described as follows.
When generating partitions, method 200 may keep track of the cardinality ci of each partition Ni. At the beginning, method 200 may start with |N| partitions, Ni={i} and ci=1 for every partition. Method 200 then may iteratively merge partitions based on each element XεT, i. e,
which reduces the number of partitions, but increases ci. Method 200 may only add an element XεT to the knowledge set Ti of partition Ni if afterwards ci≦μ is still satisfied. If ci≦μ is violated, method 200 may ignore X.
In order to have as little impact as possible on the overall ME solution, method 200 may avoid discarding those elements XεT that correspond to knowledge about the largest deviations from independence. Method 200 can achieve this goal by processing elements in descending order of ΔX, where ΔX=sx/ΠiεXsi. The quantity ΔX measures the degree to which the corresponding sX constraint in Equation 2 forces the ME solution away from independence.
Example: Forced Partitioning (Step 206)
Let N={1,2,3,4,5,6} and T={{1}, {2}, {3}, {4}, {5}, {6}, {1,2}, {2,3}, {3,4}, {4,5}, {5,6}}. Also suppose that
s1=0.1, s2=0.2, s3=0.3, s4=0.4, s5=0.5, s6=0.6
and
s1,2=0.1, s2,3=0.2, s3,4=0.3, s4,5=0.4, s5,6=0.5.
It follows that Δ1,2=5, Δ2,3=3.33, Δ3,4=2.5, Δ4,5=2, and Δ5,6=1.67. With μ=3, the forced partitioning method (step 206) therefore obtains k=2, N1={1,2,3}, T1={{1}, {2}, {3}, {1,2}, {2,3}}, N2={4,5,6}, and T2={{4}, {5}, {6}, {4,5}, {5,6}}. The element {3,4} has been dropped, to enable the partitioning of N into N1 and N2. Of all the elements that prevent partitions of size 3 from being constructed, the element {3,4} may have the smallest impact on the ME solution.
It should be understood, of course, that the foregoing relates to exemplary embodiments of the invention and that modifications may be made without departing from the spirit and scope of the invention as set forth in the following claims.
Megiddo, Nimrod, Haas, Peter Jay, Markl, Volker Gerhard, Kutsch, Marcel
Patent | Priority | Assignee | Title |
10318866, | Mar 05 2015 | International Business Machines Corporation | Selectivity estimation using artificial neural networks |
10643132, | Mar 05 2015 | International Business Machines Corporation | Cardinality estimation using artificial neural networks |
10706354, | May 06 2016 | International Business Machines Corporation | Estimating cardinality selectivity utilizing artificial neural networks |
11030521, | May 06 2016 | International Business Machines Corporation | Estimating cardinality selectivity utilizing artificial neural networks |
Patent | Priority | Assignee | Title |
5469568, | Jan 07 1993 | International Business Machines Corporation | Method for choosing largest selectivities among eligible predicates of join equivalence classes for query optimization |
5542073, | Jan 07 1993 | International Business Machines Corporation | Computer program product for choosing largest selectivities among eligible predicates of join equivalence classes for query optimization |
5864841, | Apr 14 1994 | International Business Machines Corporation | System and method for query optimization using quantile values of a large unordered data set |
6108648, | Jul 18 1997 | International Business Machines Corporation | Optimizer with neural network estimator |
6311181, | Mar 05 1999 | Korea Advanced Institute of Science and Technology | Multi-dimensional selectivity estimation method using compressed histogram information |
6477523, | Dec 03 1999 | TERADATA US, INC | Selectivity prediction with compressed histograms in a parallel processing database system |
6598044, | Jun 25 2002 | Microsoft Technology Licensing, LLC | Method for choosing optimal query execution plan for multiple defined equivalent query expressions |
6738755, | May 19 1999 | International Business Machines Corporation | Query optimization method for incrementally estimating the cardinality of a derived relation when statistically correlated predicates are applied |
6763359, | Jun 06 2001 | International Business Machines Corporation | Learning from empirical results in query optimization |
7149735, | Jun 24 2003 | Microsoft Technology Licensing, LLC | String predicate selectivity estimation |
7213012, | May 09 2003 | Oracle International Corporation | Optimizer dynamic sampling |
20040210563, | |||
20040267713, |
Executed on | Assignor | Assignee | Conveyance | Frame | Reel | Doc |
Jun 26 2006 | HAAS, PETER JAY | International Business Machines Corporation | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 017930 | /0532 | |
Jun 26 2006 | MEGIDDO, NIMROD | International Business Machines Corporation | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 017930 | /0532 | |
Jun 27 2006 | KUTSCH, MARCEL | International Business Machines Corporation | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 017930 | /0532 | |
Jul 05 2006 | MARKL, VOLKER GERHARD | International Business Machines Corporation | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 017930 | /0532 | |
Jul 13 2006 | International Business Machines Corporation | (assignment on the face of the patent) | / | |||
Jun 29 2012 | International Business Machines Corporation | SAP AG | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 028540 | /0522 | |
Jul 07 2014 | SAP AG | SAP SE | CHANGE OF NAME SEE DOCUMENT FOR DETAILS | 033625 | /0334 |
Date | Maintenance Fee Events |
Mar 17 2009 | ASPN: Payor Number Assigned. |
Aug 24 2012 | M1551: Payment of Maintenance Fee, 4th Year, Large Entity. |
Sep 20 2016 | M1552: Payment of Maintenance Fee, 8th Year, Large Entity. |
Sep 18 2020 | M1553: Payment of Maintenance Fee, 12th Year, Large Entity. |
Date | Maintenance Schedule |
Mar 31 2012 | 4 years fee payment window open |
Oct 01 2012 | 6 months grace period start (w surcharge) |
Mar 31 2013 | patent expiry (for year 4) |
Mar 31 2015 | 2 years to revive unintentionally abandoned end. (for year 4) |
Mar 31 2016 | 8 years fee payment window open |
Oct 01 2016 | 6 months grace period start (w surcharge) |
Mar 31 2017 | patent expiry (for year 8) |
Mar 31 2019 | 2 years to revive unintentionally abandoned end. (for year 8) |
Mar 31 2020 | 12 years fee payment window open |
Oct 01 2020 | 6 months grace period start (w surcharge) |
Mar 31 2021 | patent expiry (for year 12) |
Mar 31 2023 | 2 years to revive unintentionally abandoned end. (for year 12) |