Apparatus and method for performing transformation-based indexing of high-dimensional data
A method and apparatus for implementation in a database management system transforms high-dimensional data points to a single-dimensional space so that single-dimensional values can be used as representative index keys for high-dimensional data points and a single-dimensional index structure can be employed to index the transformed values. Upon achieving transformed values, known single-dimensional indexing structures can be employed. To achieve transformation from high-dimensions to a single-dimension, attribute values of a data item, each representing a different dimension, are mapped into a range and an integer value is assigned to each dimension. Either the minimum or maximum dimension value for the multi-dimensional data item is selected, and the minimum or maximum dimensional value is added to the integer value. As a result of this transformation, data points are mapped over a range in a single dimension and associated single-dimension values are used as a representative index key for subsequent search queries.
Latest National University of Singapore Patents:
This application is the National Phase of International Application PCT/SG01/00081 filed Apr. 27, 2001 which designated the U.S., and claims priority from Singapore application number 200002639-3, filed May 15, 2000.
BACKGROUND OF THE INVENTION1. Field of the Invention
The present invention relates to the field of database management, and more particularly to a method and an apparatus for achieving efficient database indexing structures which permit high-speed access to high-dimensional data points from a large repository of points stored in memory.
2. Description of Related Art
Database management systems are widely accepted as a standard tool for manipulating large volumes of data in secondary storage media. To enable fast access to stored data according to its content, databases typically use structures known as indexes. Although indexes are optional because data can always be located by an exhaustive search, indexes are the primary means of reducing the volume of data that must be retrieved and processed in response to a query. Therefore, in practice, large database files must be indexed to satisfy performance requirements.
Recent years have seen an explosive growth in use of new database applications such as CAD/CAM systems, spatial information systems, and multimedia information systems. The needs of these applications are far more complex than traditional business applications. In particular, data objects are typically represented as high-dimensional points. Traditional indexing techniques such as the B-tree and its variants, which are single-dimensional indexing structures, do not efficiently support such new database applications, thereby requiring the design of new and more complex indexing mechanisms.
Consequently, many indexing methods for multi-dimensional data have been developed, including hierarchical tree structures (such as R-trees), linear quad-trees, and grid-files. Although hierarchical tree structures perform well when the tree nodes exhibit a large degree of fan-out, with an increasing number of dimensions, a low degree of fan-out contributes to increased overlap between node entries and increased tree height, resulting in rapid deterioration in performance. Linear quad-trees and grid-files also work well for low dimensionalities, but the response time explodes exponentially for high dimensionalities. In fact, for high dimensionality, sequential scanning becomes more efficient.
Recent efforts have sought to address these problems by reducing the dimensionality of the indexing attribute so that one direction corresponds to projecting high-dimensional points on a hyperplane containing the axis. One such method (e.g., that disclosed by Friedman, et al. An Algorithm For Finding Nearest Neighbors, IEEE Transaction on Computers, Vol C-24, pp.1000–1006) truncates high dimensional data. Searching on projections, however, produces false drops, which can reduce the effectiveness of the technique. Another recent method groups high-dimensional data into smaller buckets so that a search can be performed by sequentially scanning the smaller number of buckets. This approach is not expected to scale for large amounts of high-dimensional data, as the number of buckets will be too large to allow efficient searching.
Therefore, there is a need for indexing technique which reduces the dimensionality of a high-dimensional database, while at the same time ensuring that objects are not missed and false drops do not frequently occur when answering a query.
SUMMARY OF THE INVENTIONAccording to one aspect of the present invention, there is provided a method of managing a database which stores high-dimensional data items, comprising: applying a transform function to a high-dimensional data item to map the high-dimensional data item to single-dimensional space, thereby obtaining a single-dimensional value which represents the high-dimensional data item; and indexing the single-dimensional value obtained by said applying step using a single-dimensional index structure; wherein the high-dimensional data item includes a plurality of attribute values, each attribute value corresponding to a different dimension of the high-dimensional data item; and said step of applying a transform function maps each attribute value of the high-dimensional data item to a predetermined range, thereby obtaining a mapped attribute value for each attribute value, and calculates the single-dimensional value which represents the high-dimensional data item as dmin+xmin or dmax+xmax where xmin is the smallest mapped attribute value associated with the high-dimensional data item, dmin is a value associated with the dimension which corresponds to the smallest mapped attribute value, xmax is the largest mapped attribute value associated with the high-dimensional data item, and dmax is a value associated with the dimension which corresponds to the largest mapped attribute value.
According to another aspect of the present invention, there is provided apparatus for managing a database which stores high-dimensional data items, comprising: transform means for applying a transform function to a high-dimensional data item to map the high-dimensional data item to single-dimensional space, thereby obtaining a single-dimensional value which represents the high-dimensional data item; and indexing means for indexing the single-dimensional value obtained by said transform means using a single-dimensional index structure; wherein the high-dimensional data item includes a plurality of attribute values, each attribute value corresponding to a different dimension of the high-dimensional data item; and said transform means is operable to map each attribute value of the high-dimensional data item to a predetermined range, thereby obtaining a mapped attribute value for each attribute value, and to calculate the single-dimensional value which represents the high-dimensional data item as dmin+xmin or dmax+xmin where xmin is the smallest mapped attribute value associated with the high-dimensional data item, dmin is a value associated with the dimension which corresponds to the smallest mapped attribute value, xmax is the largest mapped attribute value associated with the high-dimensional data item, and dmax is a value associated with the dimension which corresponds to the largest mapped attribute value.
The present invention can be used to achieve efficient and complete retrieval of high-dimensional points from a database. High-dimensional data points may be mapped to single-dimensional space using a computationally inexpensive transform. In one implementation, data points in d-dimensional space are mapped to a single-dimension using either the value of the dimension with the maximum value or the value of the dimension with the minimum value, such that a value associated with such a maximum or minimum dimension is a representative index key for the high-dimensional point. The transformed values for all data points can be ordered and range queries can be performed on the transformed (single-dimensional) space. Accordingly, single-dimensional indexes can be employed to index the transformed values. For example, the B+-tree structure can be employed since it is supported by all commercial database management systems. Thus, the present invention can be readily adopted for use in known indexing/retrieval systems by determining the way the data is stored in memory, e.g., through the use of B+-tree, and the efficiency of the present invention improves the processing time for retrieving data from secondary memory to the buffer (RAM). In addition to improving the storage and retrieval time of data from secondary memory, buffer space is efficiently used by fetching just enough data for answering user queries.
In one implementation, the transform used by the present invention to map high-dimensional data to single-dimensional space is a “tunable” index scheme, which, by varying a value θ, is able to bias selection to either the dimension with the maximum value or the dimension with the minimum value so as to optimize the distribution of data points over a single dimension.
Other aspects and advantages of the present invention will become apparent upon reading the following detailed description and upon reference to the drawings in which:
The following detailed description relates to a method and an apparatus for indexing high-dimensional datapoints in a database management system by transforming datapoints to single-dimensional values to be used as representative index keys. Illustrative embodiments of the present invention will be described with reference to the accompanying drawings.
As shown in
The following discussion and illustrative examples demonstrates the operation performed by the transform processor 30 using iMinMax(θ).
In the following discussion, we consider a unit of d-dimensional space, e.g., points are in the space ([0,1],[0,1], . . . ,[0,1]). In other words, all attribute values of multi-dimensional data points are mapped for example into a [0,1] domain. An arbitrary data point in the space is represented as x=(x1,x2, . . . ,xd). Furthermore, let xmax=maxi=1d xi and xmin=mini=1d xi be the maximum value and minimum value among the dimensions of the point. Moreover, dmax and dmin denote the dimensions at which the maximum and minimum values occur. A range query is represented by q=([x11,x12],[x21,x22], . . . ,[xd1,xd2]) and ans(q) denotes the answers produced by evaluating a query q.
1. Transforming High-Dimensional Data to Single-Dimensional Space
The transform function used in an exemplary implementation of the present invention, iMinMax(θ), adopts a simple mapping function that is computationally inexpensive. Specifically, a data point x is mapped to a point y over a single dimensional space as follows:
where θ is a real number. The result of formula (1) is best illustrated by the following example in which θ is 0. For this example, we consider the following Employee database with three data items, or records, each having three attribute fields—salary, age, and competency:
In this example, the domain of Salary is a number between 30,000 to 100,000; the domain of Age is a number from 20 to 70, and the domain of Competency is a real number between 0 and 1. To index Employee data based on (Salary, Age, Competency), the attribute values are first mapped into a [0,1] range. Furthermore, an integer value is assigned to each attribute type (i.e., dimension). In this example, 0, 1 and 2 are assigned to represent the dimension (i) of salary, age and competency respectively. Applying equation (1) to this example, the following values result. Mapping the attribute values to the [0,1] range, and then applying
Based on iMinMax, with θ=0.0, e1 is indexed using the corresponding Age attribute value, e2 is indexed using the corresponding Competency attribute value, and e3 is indexed using the corresponding Salary attribute value, and the respective dimension value (i) is added thereto.
As a second property of iMinMax, the transformation actually splits the (single-dimensional) data space into different partitions based on the dimension which has the largest value or smallest value, and provides an ordering within each partition. This is affected by including the dimension at which the maximum value occurs, i.e., the first component of the mapping function.
Finally, the unique tunable feature facilitates the adaptation of iMinMax(θ) to data sets of different distributions (i.e., uniform or skewed). In cases where data points are skewed toward certain edges, these points may be “scattered” to other edges to achieve even distribution by making a choice between dmin and dmax. Statistical information such as the number of index points can be used for such a purpose. Alternatively, one can either use the information on the data distribution or information collected to categorically adjust the partitioning. As discussed below, the trade off of a dynamic θ is that certain queries cannot be pruned.
2. Mapping Range Queries
Range queries in the original d-dimensional space must be transformed to the single-dimensional space for evaluation. In iMinMax(θ), the original query in the d-dimensional space is mapped into d subqueries—one for each dimension. These subqueries are denoted as q1,q2, . . . ,qd, where qi=[lh,hi], 1≦i≦d. For the jth query subrange in q, [xj1,xj2], we have:
The union of the answers from all subqueries provides a candidate answer set from which the query answers can be obtained, i.e.,
The following “Theorems” illustrate some interesting results achieved upon mapping range queries.
Theorem 1 Under the iMinMax(θ) scheme of the present invention,
Moreover, there does not exist qi′=[li′,hi′], where li′>li or hi′<hi for which
always holds. In other words, qi is “optimal”, and narrowing its range may miss some of q's answers.
In an actual implementation, the nodes of the single-dimensional indexing structure, e.g., the leaf nodes of a B+-tree, will contain the high-dimensional point. In other words, even though the index key on the B+-tree is only a single dimension, the leaf node entries contain the tuple (xkey, x, ptr), where Xkey is the single-dimensional index key of point x and ptr is the pointer to the data page containing other information that may be related to the high-dimensional point. Therefore, any false drop which occurs as a result of Theorem 1 affects only the vectors used as index keys, rather than the actual data itself.
Theorem 2 given a query q, and the subqueries q1,q2, . . . , qd, qi need not be evaluated if any of the followings holds:
To demonstrate Theorem 2 the following example is given: Let θ=0.5 and consider the range query ([0.2,0.3];[0.4,0.6]) in 2-dimensional space. Since 0.2+0.5>1-0.4=0.6, all points that satisfy the query fall on the Max edge. This means that the lower bound for the subqueries should be 0.4, i.e., the two subqueries are respectively [0.4,0.3] and [0.4,0.6]. Since the first subquery's upper bound (i.e, 0.3) is smaller than 0.4, it need not be evaluated because no points will satisfy the query.
Theorem 3, given a query q, and the subqueries q1,q2, . . . ,qd, at most d subqueries need to be evaluated.
Note that Theorem 2 assumes that a fixed θ is used throughout the life span of the index. That is, θ cannot be dynamically tuned. Fortunately, dynamic tuning of indexes will not be a common practice in the real world and is not cost effective. From Theorem 2 and Theorem 3, the effectiveness of iMinMax(θ) can be seen because, for very high dimension spaces, we can expect significant savings from the pruning of subqueries.
As an example,
3. iMinMax(θ) Algorithms
In an exemplary implementation of iMinMax(θ), a B+-tree is adopted (such as disclosed in D. Corner. The Ubiquitous B-tree. ACM Computing Surveys. 11(2), 121–137, 1979) as the underlying single-dimensional index structure. Entries at the internal nodes are of the form (key, ptr), where key is a single-dimensional value, and ptr is a pointer to its child node at the next level of the tree.
However, for greater efficiency, leaf nodes also store the high-dimensional key, i.e., leaf node entries are of the form (key, v, ptr), where key is the single-dimensional key, v is the high-dimensional key whose transformed value is key, and ptr is the pointer to the data page containing information related to v. Keeping v at the leaf nodes can minimize page accesses to non-matching points. We note that multiple high-dimensional keys may be mapped to a single key value.
By using a known single-dimensional index structure, i.e., B+-tree in this example, the algorithms for searching, inserting and deleting data points are similar to well known algorithms. Additional complexity arises only because we have to deal with the additional high-dimensional key (besides the single-dimensional key value). Exemplary search algorithms (for both point and range queries) are described below to illustrate that this additional complexity can easily be addressed. Insert and delete algorithms can be found in (R. Ramakrishnan, Database Management Systems. McGraw-Hill. 1997).
3.1 Point Search Algorithm
In point search, a point is issued and all matching tuples are to be retrieved. An algorithm for a point search is summarized in the flow-diagram of
3.2 Range Search Algorithm
Range queries are slightly more complicated than point searches.
4. Performance Study
To analyze performance, iMinMax(θ) and a Pyramid technique (as disclosed by S. Berchtold, et al., The Pyramid-Technique: Towards Breaking the Curse of Dimensionality, SIGMOD'98, 142–153, 1998) were implemented in C, and the B+-tree was used as the single-dimensional index structure. Each index page was a 4 KB page, and no data pages were buffered. Therefore, every page touched incurred an I/O. However, it should be noted that the traversal paths of the d subqueries generated by iMinMax(θ) do not overlap and hence share very few common internal nodes. This is also true for the subqueries generated by the Pyramid technique. For iMinMax, the pruning outlined in Theorem 2 was not implemented.
Numerous experiments were conducted to analyze performance, with some of the more interesting results on range queries being summarized below. A total of 500 range queries were used for these experiments. Each query is a hyper-cube and has a default selectivity of 0.1% of the domain space ([0,1],[0,1], . . . ,[0,1]). The query width is the d-th root of the selectivity: d{square root over (0.001)}.
For a 40-dimensional space, the query width is 0.841, which is much larger than half of the extension of the data space along each dimension. Different query sizes will be used for non-uniform distributions. The default number of dimensions used is 30. Each I/O corresponds to the retrieval of a 4 KB page. The average I/O cost of the queries is used as a performance measure.
4.1 Effect of Dimensions
In the first set of experiments, the number of dimensions is varied from 8 to 50. The data set is uniformly distributed over the domain space. There are a total of 100K points. In the first experiment, besides the Pyramid scheme, we also compare against the MAX scheme and the sequential scan (seq-scan) technique. The MAX scheme is the simple scheme that maps each point to its maximum value. However, the transformed space is not partitioned. Moreover, two variations of iMinMax(θ) are used, namely iMax (i.e., θ=1) and iMinMax(θ=0.0)(denoted as iMinMax).
Second, while the number of I/Os for iMinMax, iMax and Pyramid also increases with increasing number of dimensions, the number grows at a much slower rate. Third, we see that iMinMax performs the best, with Pyramid following closely, and iMax performing worse than Pyramid. iMinMax outperforms the iMax and Pyramid since it can prune away some subqueries and its search space touches fewer points. Based on the above results, for all subsequent experiments described below, study is restricted to iMinMax and Pyramid techniques. The results of further evaluation of Pyramid and iMinMax are shown in
4.2 Effect of Data Set Sizes and Query Sizes
In this set of experiments, different factors are studied, including the data set sizes, and the query selectivities. For both studies, the number of dimensions is fixed at 30.
As expected, both iMinMax and Pyramid incurred higher I/O cost with increasing data set sizes as well as the query selectivities. As before, iMinMax remains superior over the Pyramid scheme. It is interesting to note that the relative difference between the two schemes seems to be unaffected by the data set sizes and query selectivities. Upon investigation, both iMinMax and Pyramid return the same candidate answer set. The improvement of iMinMax stems from its reduced number of subqueries compared to the Pyramid scheme.
4.3 Effect of Data Distributions
In this experiment, relative performance of iMinMax and Pyramid is studied on skewed data distributions. The results on two distributions, namely skewed normal and skewed exponential are shown.
The first set of experiments studies the effect of θ on skewed normal distribution. For normal distribution, the closer the data center is to the cluster center, the more points can be evenly assigned to each edge. For queries that follow the same distribution, the data points will have the same probability of being kept far from the query cube. In these experiments, each dimension of the query Is fixed to have a width of 0.4.
In
The second set of experiments looks at the relative performance of the schemes for skewed exponential data sets. As above, each dimension of the query is fixed to have a width of 0.4. For an exponential distribution (we choose to be exponential to small value), many dimensions will have small values, and a small number of dimensions will have large values. Thus, many data points will have at least one large value. Because many of the dimensions are associated with small values, the data points tend to lie close along the edges of the data space. We note that exponential data distributions can be very different from each other. They may be more likely to be close along the edges, or close to the different corners depending on the number of dimensions that are skewed to be large, or small. A range query, if it is with exponentially distribution characteristics, will have subqueries which are mostly close to the low corner. Therefore, tuning the keys to choose large values is likely to keep away more points from the query.
Although the present invention has been described in considerable detail with reference to certain embodiments, it should be realized that numerous modifications are possible without departing from the spirit and scope of the invention. For example, although an exemplary implementation of the present invention has been described in which a B+-tree is used as the underlying single-dimensional indexing structure, other single-dimensional indexing structures may be used.
Claims
1. A method of managing a database which stores high-dimensional data items, comprising: q j = { [ j + max i = 1 d x i1, j + x j2 ] if min i = 1 d x i1 + θ ≥ 1 - max i = 1 d x i1 [ j + x j1, j + min i = 1 d x i2 ] if min i = 1 d x i2 + θ < 1 - max i = 1 d x i2 [ j + x j1, j + x j2 ] otherwise, where | is a tuning parameter, and
- (a) applying a transform function to a high-dimensional data item to map the high-dimensional data item to single-dimensional space, thereby obtaining a single-dimensional value which represents the high-dimensional data item;
- (b) indexing the single-dimensional value obtained by said applying step using a single-dimensional index structure; wherein (i) the high-dimensional data item includes a plurality of attribute values, each attribute value corresponding to a different dimension of the high-dimensional data item; (ii) said step of applying a transform function maps each attribute value of the high-dimensional data item to a predetermined range, thereby obtaining a mapped attribute value for each attribute value, and calculates the single-dimensional value which represents the high-dimensional data item as dmin +xmin or dmax+xmax, where xmin is the smallest mapped attribute value associated with the high-dimensional data item, dmin is a value associated with the dimension which corresponds to the smallest mapped attribute value, xmax is the largest mapped attribute value associated with the high-dimensional data item, and dmax is a value associated with the dimension which corresponds to the largest mapped attribute value; and (iii) said applying and indexing steps are performed for a plurality of high-dimensional data items to form an indexed set of single-dimensional values; and
- (c) performing a search on the indexed set of single-dimensional values to retrieve a set of points, wherein said performing includes
- transforming a range query into a set of d subqueries in the single-dimensional space represented as q1,q2,...,qd, where qi=[Ii,hj], 1≦i≦d and for a jth query subrange in q, [xj1,xj2]:
- evaluating each subquery in said set of subqueries using the single-dimensional index structure.
2. The method according to claim 1, wherein subqueries in said set of subqueries are pruned without performing said evaluating step.
3. The method according to claim 1, wherein the number of subqueries in said set of subqueries equals the number of dimensions in the high-dimensional data item.
4. An apparatus for managing a database which stores high-dimensional data items, comprising: q j = { [ j + max i = 1 d x i1, j + x j2 ] if min i = 1 d x i1 + θ ≥ 1 - max i = 1 d x i1 [ j + x j1, j + min i = 1 d x i2 ] if min i = 1 d x i2 + θ < 1 - max i = 1 d x i2 [ j + x j1, j + x j2 ] otherwise, where | is a tuning parameter, and to evaluate each subquery in said set of subqueries using the single-dimensional index structure.
- (a) transform means for applying a transform function to a high-dimensional data item to map the high-dimensional data item to single-dimensional space, thereby obtaining a single-dimensional value which represents the high-dimensional data item;
- (b) indexing means for indexing the single-dimensional value obtained by said transform means using a single-dimensional index structure; wherein (i) the high-dimensional data item includes a plurality of attribute values, each attribute value corresponding to a different dimension of the high-dimensional data item; (ii) said step of applying a transform function maps each attribute value of the high-dimensional data item to a predetermined range, thereby obtaining a mapped attribute value for each attribute value, and calculates the single-dimensional value which represents the high-dimensional data item as dmin+xmin or dmax+xmax, where xmin is the smallest mapped attribute value associated with the high-dimensional data item, dmin is a value associated with the dimension which corresponds to the smallest mapped attribute value, xmax is the largest mapped attribute value associated with the high-dimensional data item, and dmax is a value associated with the dimension which corresponds to the largest mapped attribute value; and (iii) said transform means and said index means are operable on a plurality of high-dimensional data items to form an indexed set of single-dimensional values; and
- (c) searching means for performing a search on the indexed set of single-dimensional values to retrieve a set of points, wherein said searching means is operable to transform a range query into a set of d subqueries in the single-dimensional space represented as q1,q2,...,qd, where qi=[Ii,hj], 1≦i≦d, and for a jth query subrange in q, [xj1,xJ2]:
5. The apparatus according to claim 4, wherein said searching means is operable to prune subqueries in said set of subqueries.
6. The apparatus according to claim 4, wherein the number of subqueries in said set of subqueries equals the number of dimensions in the high-dimensional data item.
6148295 | November 14, 2000 | Megiddo et al. |
6154746 | November 28, 2000 | Berchtold et al. |
6477553 | November 5, 2002 | Druck |
6625611 | September 23, 2003 | Teig et al. |
6834278 | December 21, 2004 | Yu et al. |
- Friedman, et al., “An Algorithm for Finding Nearest Neighbors,” IEEE Transaction on Computers, vol. C-24, pp. 1000-10006, Oct. 1975.
- R. Ramarkrishnan, “Database Management Systems,” Chapter 5, McGraw-Hill.
- Berchtold S. et al., “The Pyramid-Techique: Towards Breaking the Curse of Dimensionality,” Sigmod Record, Sigmod, New York, NY, vol. 27, No. 2., Jun. 1, 1998 pp. 142-153.
- Bohm, C., et al., “XZ-Ordering: A Space-Filling Curve for Objects With Spacial Extension,” 6th International Symposium, SSD'99. Proceedings (Lecture Notes in Computer Science vol. 1651), Proceedings of 6th International Symposium on Spacial Databases, Hong Kong, Jul. 20-23, 1999, pp. 75-90.
Type: Grant
Filed: Apr 27, 2001
Date of Patent: Oct 3, 2006
Patent Publication Number: 20040006568
Assignee: National University of Singapore (Singapore)
Inventors: Beng Chin Ooi (Kent Vale), Kian Lee Tan (Singapore), Stephen Bressan (Kent Vale), Cui Yu (Athens, GA)
Primary Examiner: Frantz Coby
Assistant Examiner: Cindy Nguyen
Attorney: Pillsbury Winthrop Shaw Pittman LLP
Application Number: 10/276,357
International Classification: G06F 7/00 (20060101); G06F 17/30 (20060101); G06F 17/00 (20060101);