1 / 22

Multiple-key indexes

Multiple-key indexes. Index on one attribute provides pointer to an index on the other.

Télécharger la présentation

Multiple-key indexes

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Multiple-key indexes • Index on one attribute provides pointer to an index on the other. • If V is a value of the first attribute, then the index we reach by following key V and its pointer is an index into the set of points that have V for their first value in the first attribute and any value for the second attribute.

  2. Example • ``Who buys gold jewelry'' (age and salary only). Raw data in age­salary pairs: (25; 60) (45; 60) (50; 75) (50; 100) (50; 120) (70; 110) (85; 140) (30; 260) (25; 400) (45; 350) (50; 275) (60; 260) • Question: For what kinds of queries will a multiple­key index (age first) significantly reduce the number of disk I/O's? The indexes can be organized as B-Trees.

  3. Operations Partial match queries • If the first attribute is specified, then the access is quite efficient • If the first attribute isn’t specified, then we have to search every sub-index. Range queries • Quite well, provided the individual indexes themselves support range queries on their attribute (e.g. they are B-Trees) • Example. Range query is 35age55 AND 100sal200 NN queries • Similar to range queries. Also, the sub-indexes should be “primary” ones if we want to support efficiently range queries.

  4. KD-Trees • Generalizes binary search trees, but search attributes rotate among dimensions • Levels rotate among the dimensions, partitioning the points by comparison with a value for that dimension. • Leaves are blocks

  5. Geometrically… • Remember we didn’t want the stripes in grid files to continue all along the vertical or horizontal direction? • Here they don’t.

  6. Operations Lookup in KD­Trees • Find appropriate leaf by binary search. Is the record there? Insert Into KD­Trees • Lookup record to be inserted, reaching the appropriate leaf. • If there is room, put record in that block. • If not, find a suitable value for the appropriate dimension and split the leaf block. Example • Someone 35 years old with a salary of $500K buys gold jewelry. • Belongs in leaf with (25; 400) and (45; 350). • Too full: split on age. See figure next.

  7. Split at 35 is because it is the median.

  8. Queries Partial match queries • When we don’t know the value of the attribute at the node, we must explore both of its children. • E.g. find points with age=50 Range Queries • Sometimes a range will allow us to move to only one child of a node. • But if the range straddles the splitting value then we must explore both children.

  9. KD-trees in secondary storage • 1000 leaves  log2(1000) = 10 levels. • If each internal node is stored in one block then too many disk I/O’s • Solution: Group nodes into blocks

  10. 400 Sal g b h d e a k c f j l i Age 50, Sal 200 0 Age 100 i h c e Age 75, Sal 100 Age 25, Sal 300 a b f g l j k d Quad trees • Nodes split at all dimensions at once • For a quad tree of k dimension, each interior node has 2k children. • Division fixed; tree can’t be balanced

  11. Why quad trees? • k-dimensions  node has 2k children, e.g. k=7  128 children. • We can pack all children of a node in 1 block

  12. Quad­Tree Insert and Queries Insert • Find leaf node in which new point belongs. • If room, put it there. • If not, make the leaf an interior node and give it leaves for each quadrant. Split the points among the new leaves. • Problem: may make lots of null pointers, especially in high­dimensions. Quad­Tree Queries • Single point queries: easy; just go down the tree to proper leaf. • Range queries: varies by position of range. • Example: a range like 45<age<55; 180<salary<220 requires search of four leaves, none of which is guaranteed to produce any answers. • But if range covers a large subtree of the quad tree, then even if we have to search a large number of leaves, we know that everything we find is an answer. Nearest neighbor: Problems and strategies similar to grid files.

  13. R-Trees • For “regions” (typically rectangles) but can represent points. • Supports NN, “where­am­I” queries. • Generalizes B­tree to multidimensional case. • Problem: no ideal way to partition children without overlap. • In place of B­tree's key­pointer pairs, R­tree has region­pointer pairs.

  14. Lookup • We start at the root, with which the entire region is associated. • We examine the subregions at the root and determine which children correspond to interior regions that contain point P. • If there are zero regions we are done; P is not in any data region. • If there are some subregions we must recursively search those children as well, until we reach the leaves of the tree.

  15. Insertion • We start at the root and try to find some subregion into R fits. If more than one we pick just one, and repeat the process there. • If there is no region, we expand, and we want to expand as little as possible. So, we pick the child that will be expanded as little as possible. • Eventually we reach a leaf, where we insert the region R. • However, if there is no room we have to split the leaf. We split the leaf in such a way as to have the smallest subregions.

  16. Example • Suppose that the leaves have room for six regions. • Further suppose that the six regions are together on one leaf, whose region is represented by the outer solid rectangle. • Now suppose that another region POP is added.

  17. Example (Cont’ ed) ((0,0),(60,50)) ((20,20),(100,80)) Road1 Road2 House1 School House2 Pipeline Pop

  18. Example (Cont’ ed) • Suppose now that House3 ((70,5),(80,15)) gets added. • We do have space to the leaves, but we need to expand one of the regions at the parent. • We choose to expand the one which needs to be expanded the least.

  19. Which one should we expand? ((0,0),(80,50)) ((20,20),(100,80)) Road1 Road2 House1 House3 School House2 Pipeline Pop ((0,0),(60,50)) ((5,20),(100,80)) Road1 Road2 House1 School House2 Pipeline Pop House3

  20. Bitmap Indexes • Suppose we have n tuples. • A bitmap index for a field F is a collection of bit vectors of length n, one for each possible value that may appear in the field F. • The vector for value v has 1 in position i if the i-th record has v in field F, and it has 0 there if not. (30, foo) (30, bar) (40, baz) (50, foo) (40, bar) (30, baz) foo 100100 bar 0… baz …

  21. Motivation for Bitmap Indexes • They allow very fast evaluation of partial match queries. SELECT title FROM Movie WHERE studioName=‘Disney’ AND year=1995; If there are bitmap indexes on both studioName and year, we can intersect the vectors for the Disney value and 1995 value. We should have another index to retrieve the tuples by number.

  22. Compressed Bitmaps 00000000000001 i-1 in unary and followed by the binary representation. i=4 Encoding: 1110

More Related