The present invention relates generally to the ranking of data entities and, more particularly, to a method and apparatus for ranked join indices.
Many data sources contain data entities that may be ordered according to a variety of attributes associated with the entities. Such orderings result effectively in a ranking of the entities according to the values in an attribute domain. Such values may reflect various quantities of interest for the entities, such as physical characteristics, quality, reliability or credibility to name a few. Such attributes are referred to as rank attributes. The domain of rank attributes depends on their semantics. For example, the domain could either consist of categorical values (e.g., service can be excellent, fair or poor) or numerical values (e.g., an interval of continuous values). The existence of rank attributes along with data entities leads to enhanced functionality and query processing capabilities.
Typically, users specify their preferences toward specific attributes. Preferences are expressed in the form of numerical weights, assigned to rank attributes. Query processors incorporate functions that weight attribute values by user preference, deriving scores for individual entities. Several techniques have been developed to perform query processing with the goal of identifying results that optimize such functions. A typical example is a query that seeks to quickly identify k data entities that yield best scores among all entities in the database. At an abstract level, such queries can be considered as generalized forms of selection queries.
Several prior art techniques disclose a framework for preference based query processing. Such works consider realizations of a specific instance of this framework, namely top-k selection queries, that is, quickly identifying k tuples that optimize scores assigned by monotone linear scoring functions on a variety of ranked attributes and user specified preferences. Most of these techniques for answering top-k selection queries, however, are not based on indexing. Instead, they are directed towards optimizing the number of tuples examined in order to identify the answer under various cost models of interest. Such optimizations include minimization of tuples read sequentially from the input or minimization of random disk access.
However, the few available techniques that do disclose indexing for answering top-k selection queries do not provide guarantees for performance and in the worst case, an entire data set has to be examined in order to identify the correct answer to a top-k selection query.
The inventors disclose herein a technique, referred to by the inventors as ranked join index, for efficiently providing solutions to top-k join queries for arbitrary, user specified preferences and a large class of scoring functions. The rank join index technique of the present invention requires small space (i.e., as compared to an entire join result) and provides performance guarantees. Moreover, the present invention provides a tradeoff between space requirements and worst-case search performance.
In one embodiment of the present invention a method of creating a ranked join index for ordered data entries includes determining a dominating set of the ordered data entries, mapping the dominating set of ordered data entries according to rank attributes, determining a separating vector for each set of adjacent mapped data entries, and ordering and indexing the data entries according to a separating point associated with each of the separating vectors.
The teaching of the present invention can be readily understood by considering the following detailed description in conjunction with the accompanying drawings, in which:
a and 3b graphically depict an example of a Dominating Set determined by a Dominating set algorithm for tables and rank attributes having different join results;
a graphically depicts an example of the ordering of two tuples when a vector has a positive slope;
b graphically depicts an example of the ordering of the two tuples for a second case when a vector has an other than positive slope;
a and
a, 7b and 7c graphically depict an example of the space-time tradeoffs of the RJI Construct algorithm of
a and
To facilitate understanding, identical reference numerals have been used, where possible, to designate identical elements that are common to the figures.
Although various embodiments of the present invention herein are being described with respect to techniques for providing performance guarantees for top-k join queries over two relations, it will be appreciated by those skilled in the art informed by the teachings of the present invention that the concepts of the present invention may be applied to providing performance guarantees for join queries over substantially any number of relations.
For example, let R, S depict two relations, with attributes A1-An and B1-Bm, respectively. A1, B1 are rank attributes with domains a subset of R+ and θ, an arbitrary join condition defined between (sub)sets of the attributes A2-An, B2-Bm (RS). For a tuple, tεRS, Ai(t) (and similarly Bi(t)) corresponds to the value of attribute Ai (and similarly Bi) of tuple, t. Furthermore, Let f: R+x R+→R+ be a scoring function that takes as input the pair of rank attribute values (s1, s2)=(A1(t), B1 (t)) of tuple tεRS, and produces a score value f(s1, s2) for the tuple t. It should be noted that a function f: R+x R+→R+ is monotone if the following holds true: x1≦x2, and y1≦y2, then f(x1, y1)≦f(x2, y2).
For further explanation, let e=(p1, p2) denote the user defined preferences towards rank attributes A1, B1. As such, a linear scoring function, fe: R+x R+→R+, is defined as a scoring function that maps a pair of score values (si, s2) to the value fe(s1, s2)=p1s1+p2s2. It is assumed that user preferences are positive (belonging to R+). This is an intuitive assumption as it provides monotone semantics to preference values (the greater the value the larger the preference towards that attribute value). In such a case, the linear function fe is monotone as well. The symbol, £, is used to denote the class of monotone linear functions. Note that the pair of user defined preferences, e, uniquely determines a function, fε£.
Given the relations R, S, join condition θ and scoring function feε£, a top-k query returns a collection Tk(e)RS of k tuples ordered by fe(A1(t), B1 (t)), such that for all tεRS, t∉Tk(e)fe(A1(t), B1 (t))≦fe(A1(ti), B1 (ti)), for all tiεTk(e), 1≦i≦k. Thus, a top-k join query returns as a result k tuples from the join of two relations with the highest scores, for a user specified scoring function, fe, among all tuples in the join result.
If the relations R, S to be joined consist of O(n) tuples, the size of the join relation RS may be as large as O(n2). The inventors determined and demonstrate herein that most of the tuples of the join relation, RS, are typically not necessary for answering top-k join queries. In particular, for a fixed value K<n, where K depicts an upper bound for the maximum requested result size of any top-k join query, and for the entire class of linear functions £, in the worst case, a number of tuples much smaller than O(n2) is sufficient to provide the answer to any top-k join query, k≦K.
In addition, it should be noted that there is no need to generate the complete join result RS. For example, let C denote the subset of RS necessary to generate, in the worst case, an index, providing answers with guaranteed performance on any top-k join query, k≦K, issued using any scoring function fε£. Note that although each tuple, t, of R could join in the worst case with O(n) tuples of S, for a fixed value of K, only t is joined with at most K tuples in S; the ones that have the highest rank values. Therefore, among the possible O(n) tuples in the join that are determined for each tuple, tεR, only the K tuples with the highest rank values are required. Due to the monotonicity property of functions in £, these K tuples will have the highest scores for any fεR. As such, the inventors disclose postulate one (1) which follows:
For relations of size O(n) and a value K, the worst case size of C is O(nK). (1)
Note that this worst case size is query independent (i.e., using the same set of tuples, C, of worst case size O(nK), any top-k join query, k≦K, for substantially any fε£ may be solved. In a preprocessing step, C may be determined by joining R and S and selecting for each tuple, tεR, the K (worst case) tuples contributed by t to the join result that have the highest rank values in S. Such a preprocessing step may be carried out in a fully declarative way using a Structured Query Language (SQL) interface, which is well-known in the art.
For further reduction of the size of C, the inventors disclose letting t and t′ denote two tuples of RS and (s1, s2) and (s′1, s′2) denote the pairs of rank values associated with the tuples, respectively. Thus, tuple t′ dominates tuple t if s1≦s′1 and s2≦s′2. The domination property provides a basic means to reduce C even further.
As such, two methods of reducing the size of C are disclosed herein. That is, the determination that for relations of size O(n) and a value K, the worst case size of C is O(nK), reduces a join result by restricting the number of the tuples contributed to the join by a single tuple of a relation. In addition the domination property described above reduces the size of C by examining the tuples contributed to the join by multiple tuples of a relation. As such, the inventors disclose postulate two (2) which follows:
For a value of K, if some tuple tεC is dominated by at least K other tuples, then t cannot be in the solution set of any top-k join query, k≦K. (2)
Thus, from the monotonicity properties of the scoring functions, it is evident that a viable strategy to reduce the size of C is to identify all tuples in C dominated by at least K tuples. Formally, given a set C, the dominating set, Dk, is the minimal subset of C with the following property: for every tuple t∉Dk with rank values (s1, s2), there are at least K tuples tiεDk, that dominate tuple t.
a and 3b graphically depict an example of a Dominating Set determined by the Dominating set algorithm for tables and attributes such as those of
The relationship among the sets, Dk, associated with each top-k join query possible with k≦K may be characterized according to the following postulate, number three (3), which follows:
Considering two top-k join queries requesting k1, k2 results and k1≦k2≦K, for the dominating sets Dk1, Dk2, DK, then Dk1Dk2DK. (3)
Thus, it is determined that it is sufficient to identify and determine only the set DK since the solutions to any top-k join query k≦K are contained in this set. This also holds true for any scoring function, fε£.
The inventors present above an algorithm to preprocess the set DK and develop an index structure, considered by the inventors as RJI, which provides solutions to top-k join queries with guaranteed worst case access time. Every function, fε£, is completely defined by a pair of preference values (p1, p2). The value of the function, f, on a tuple, tεDK with rank values (s1, s2) is equal to p1ss+p2s2. The index structure, RJI, is constructed by representing members of £ and rank value pairs for each tεDK as vectors in two-dimensional space. Since every feε£ is completely defined by the pair e=(p1,p2), every function, f, may be depicted by the vector e=(0,0)(p1,p2) on the plane. Similarly, the rank value pairs may be characterized as a vector s=(0,0)(s1,s2). In light of the preceding geometric relations, the value of a function, f, on a tuple tεDK with rank values (s1,s2) is the inner product of the vectors e and s. The reasoning behind representing members of class of monotone linear functions, £, as vectors may be explained as follows. Assume that ∥e∥=1 (i.e., the vector, e, is a unit vector), then the value of the function, f(p1,p2)(s1,s2), is the length of the projection of the vector s on the vector e. It should be noted, however, that the assumption that the vector, e, is a unit vector is solely for the purposes of simplifying the presentation. It should not be interpreted as being required for the correctness of the approach of the present invention. The result of any top-k join query Tk(e) is the same independent of the magnitude of the vector, e. For example, letting u=αe be some vector in the direction of e with length α, Tk(e) is the same as Tk(u) since the lengths of the projected vectors change only by a scaling factor, and thus, their relative order is not affected.
As previously depicted, the set of tuples DK may be represented as points in two dimensional-space using the rank values of each tuple. Given a unit vector e, the angle a(e) of the vector is defined as the angle of e with the axis representing (without loss of generality) the s1 rank values. For a set of l tuples {t1, t2, . . . , t1}, Orde({t1, t2, . . . , tl}) is defined as the ordering of the tuples {t1, t2, . . . , tl} when the rank value pairs associated with each tuple are projected on the vector e, and are sorted by non-increasing order of their projection lengths. Orde({t1, t2, . . . , t1})is used to denote the reverse of that ordering. Tk(e) contains the top k tuples in the ordering Orde({t1, t2, . . . , tl}).
Let the vector, e, sweep the plane defined by the domains of rank attributes (R+x R+). Specifically, let the sweep start from the s1-axis and move towards the s2-axis (i.e., counter-clockwise). Thus, e ranges from e=(0,0)(1,0) to e=(0,0),(0,1). As such, to examine how the ordering Orde(DK) varies as e sweeps the plane, two tuples and their relative order are first considered. That is, let s1=(s11, s21) and s2=(s12, s22) be the rank value pairs for two tuples t1, t2εDK. Since rank value pairs are represented as vectors, let s1, s2=s2−s1 denote the vector defined by the difference of s2 and s1, and let b denote the angle of the vector s1, s2 with the s1-axis. Having done so, the inventors disclose postulate four (4), which follows:
The principles presented above indicate that as e sweeps a plane, the ordering of tuples t1 and t2 changes only when e crosses the vector es, which is defined as the vector perpendicular to s1, s2. If the vector s1, s2 has a positive slope, then the ordering of the tuples t1, t2 remains the same for all e. The vector es is considered the separating vector of tuples t1 and t2, and a(es) is considered the separating point.
a and
If t1, t2 . . . tl are l tuples with colinear rank value pairs sharing the same separating vector, es, then Orde1({t1, t2 . . . tl})=Orde2({t1, t2 tl}) for all a(e1), a(e2) such that a(e1)<a(es)<a(e2). (5)
Briefly stated, each separating vector corresponds to the reversal of two or more adjacent points.
The algorithm then sweeps the (positive quadrant of the) plane, going through the separating vectors in V in sorted order. The algorithm maintains also a set, R, that stores (unsorted) the K tuples with highest score according to the function, fe, where e is the current position of the sweeping vector. R is initialized to hold the top-k tuples with respect to the initial position of vector, e, namely e=(0, 0)(1, 0) (function f(1,0)). Initializing R is easy, since the set, DK, computed at the end of the Dominating Set algorithm is sorted by s1i.
Each a(esi) in the set, V, (and the corresponding vector esi) is associated with two tuple identifiers (ti, tj). When e crosses the vector esi during the sweep, it causes the ordering of tuples ti, tj to change according to Postulates 4 and 5 depicted above. In case both tuple identifiers belong to R, or neither belongs to R, the vector esi, can be safely discarded from consideration, since it does not affect the composition of R. Otherwise, a(esi) is determined together with the composition of R, and R is updated to reflect the new tuple identifiers. The last value of R is also determined after the sweep is completed. At the end of the RJI Construct algorithm, M separating vectors, e1,e2, . . . , eM have been accumulated (represented by their separating points a(ei), 1≦i≦M). The accumulation of the vectors, ei 1≦i≦M, partitions the quadrant into M+1 regions. Each region i, 0≦i≦M, is defined by vectors ei, ei+1, where e0=(0,0)(1,0) and eM+1(0,0)(0,1). Region i is associated with a set of K points RiDK, such that for any vector, e, with a(ei)≦a(e)≦a(ei+1), uniquely identifying a function feε£, TK (e) is equal to a permutation of Ri. This permutation is derived by evaluating fe on every element of Ri and then sorting the result in non-increasing order. That is, Ri contains (up to a permutation) the answer to any top-k query, k≦K for any function defined by a vector in region i.
For example,
Consider now a vector, e, sweeping the plane. The first two tuples in Ord(1,0)(D2) are R={t1,t4}. The first vector crossed by e is e34, which corresponds to swapping tuples t3 and t4. The swap changes the composition of R. In particular, t4 is replaced with t3. At this point, a(e34) is stored along with the R0=R={t1,t4} and the current composition of R becomes R={t1,t3}. Then a(e24) is encountered in the sorted order but the swap of t2,t4 does not affect the composition of R. The next vector in the sorted order is e23. The composition of R is affected such that a(e23) is stored along with R1=R={t1,t3} and the current composition of R changes to R={t1,t2}. When the input is exhausted, the current ordering R2=R={t1,t2} is stored, and the algorithm terminates.
Critical to the size of the index is the size of M, the number of separating vectors identified by the RJI Construct algorithm. A worst case bound is provided on M by bounding the number of times that a tuple identifier can move from position K+1 to position K in Orde(DK). Postulates 4, 5 previously presented guarantee that whenever a swap happens between elements of Orde(DK), it takes place between two adjacent elements in Orde(DK). Thus, only the separating vectors that cause a swap of the elements in positions K and K+1 in Orde(DK) are indexed, since these are the ones that cause the composition of T to change. For every tiεDK define rankti(e) to be the position of tuple ti in the ordering Orde(DK). As such, the inventors disclose postulate six (6), which follows:
For every tuple ti, εDK, rankti(e) can change from l+1 to l at most l times for any vector e, l≦K. (6)
In addition, the inventors disclose the following Theorem:
Postulate 6 guarantees that each element in DK contributes at most K changes to TK(e). This means that each tuple introduces at most K separating vectors and consequently introduces K separating points that need to be stored in the worst case. Therefore, the number M of separating points is at most O(|DK|K). After the separating points a(es) are identified, they are organized along with the associated sets Ri in a B-tree indexed by a(es). The leaf level stores pointers to the sets Ri. Thus, the total space requirement becomes O(|DK|K2). There are O(nK) elements in DK in the worst case, so the number M of separating points that require representation in the index is at most O(nK2). Thus, the total space used by this structure in the worst case is O(nK3). The worst case time complexity for constructing the ranked join index is O(n2K2) time to compute the separating vectors and separating points and O(n2K2 log(n2K2)) time to sort the separating points. Constructing a B-tree may be performed during the single scan on the sorted separating point collection of the RJI Construct algorithm. Thus, the total construction time is O(n2K2 log(n2K2)). It should be noted that these are the worst case space and construction time requirements for the index RJI.
At query time, given the vector, e, that defines a function, feε£, a(e) is computed and the B-tree is searched using a(e) as a key. This effectively identifies the region that contains the vector, e. Then, the associated set R1 is retrieved and fe evaluated for all elements of Ri, sorting the results to produce Tk(e). Thus, the query time is O(log(nK2)+K log K) in the worst case, for any top-k join query, k≦K.
The ranked join index design of the present invention provides a variety of space-time tradeoffs which can be utilized to better serve the performance/space constraints in various settings. If the space is a critical resource, the space requirements could be decreased significantly, at almost no expense on query time. Note that sets Ri and Ri+1 associated with two neighboring regions differ, in the worst case, by only one tuple. Therefore, the set Ri U Ri+1 contains K+1 distinct tuples. If m regions are merged, then the resulting region contains at most K+m−1 distinct tuples. It should be noted that this is a worst case bound. Depending on the distribution, a region may contain less than K+m−1 distinct tuples. Therefore, if there are initially M separating vectors, merging every m regions reduces the number of separating vectors to M/m. The space for the index becomes O(M(K+m)/m), and the query time O(log(M/m)+(K+m)log(K+m)). Since M=O(nK2) in the worst case, the requirements of the index are O(nK2(K+m)/m) for space, and O(log(nK2/m)+(K+m) log(K+m)) for query time.
For example,
The inventors further disclose herein a variant of a range search procedure of an R-tree index that is specifically designed to answer top-k join queries. This provides a base-case for performance comparison against a solution provided by the present invention. Briefly stated, an R-tree index is implemented to prune away a large fraction of the tuples that are bound not to be among the top k. This modified R-tree is referred to by the inventors as the TopKrtree. Consider the two-dimensional space defined by the 2 rank values associated with each tuple in DK returned by the Dominating Set algorithm. An R-tree on these points is constructed using R-tree construction algorithms know in the art. A basic observation is that due to the monotonicity property of the functions fε£, given a Minimum Bounding Rectangle (MBR), r, at any level in that tree, the minimum and maximum score values for all tuples inside r are bounded by the value any scoring function in £ gets at the lower left and upper right corners of r. Following this observation the R-tree search procedure is modified according to the following.
At each node in the R-tree, instead of searching for overlaps between MBRs, the procedure searches for overlaps between the intervals defined by the values of the scoring function in the upper right and lower left corners of the MBRs. The algorithm recursively searches the R-tree and maintains a priority queue collecting k results.
For example,
Although the controller 1000 of
While the forgoing is directed to various embodiments of the present invention, other and further embodiments of the invention may be devised without departing from the basic scope thereof. As such, the appropriate scope of the invention is to be determined according to the claims, which follow.
This application is a continuation of U.S. patent application Ser. No. 11/676,470, filed Feb. 19, 2007, currently allowed and is a continuation of U.S. patent application Ser. No. 10/775,056 filed Feb. 9, 2004, now, U.S. Pat. No. 7,185,012, which claims the benefit of U.S. Provisional Application No. 60/446,237, filed Feb. 10, 2003, where all of the above cited applications are herein incorporated by reference in their entirety.
Number | Date | Country | |
---|---|---|---|
60446237 | Feb 2003 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 11676470 | Feb 2007 | US |
Child | 12647490 | US | |
Parent | 10775056 | Feb 2004 | US |
Child | 11676470 | US |