roadmap
play

Roadmap Basic Concepts CS 2550 / Spring 2006 Ordered Indices - PowerPoint PPT Presentation

Roadmap Basic Concepts CS 2550 / Spring 2006 Ordered Indices B+-Tree Index Files Principles of Database Systems B-Tree Index Files Static Hashing Comparison of Ordered Indexing and Hashing 06 Indexing Index


  1. Roadmap  Basic Concepts CS 2550 / Spring 2006  Ordered Indices  B+-Tree Index Files Principles of Database Systems  B-Tree Index Files  Static Hashing  Comparison of Ordered Indexing and Hashing 06 – Indexing  Index Definition in SQL Alexandros Labrinidis University of Pittsburgh 2 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 Basic Concepts Index Evaluation Metrics Indexing mechanisms used to speed up access to desired data. Indexing techniques evaluated on basis of:  E.g., author catalog in library   Access types supported efficiently. For example: Search Key - attribute or set of attributes used to look up records in a file.  An index file consists of records (called index entries ) of the form  records with a specified value in the attribute   records with an attribute value within a specified range of values.  Access time search-key pointer Index files are typically much smaller than the original file  Insertion time  Two basic kinds of indices:   Deletion time Ordered indices: search keys are stored in sorted order   Space overhead Hash indices: search keys are distributed uniformly across “buckets” using a  “hash function”. 3 4 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 1

  2. Ordered Indices Dense Index Files  In an ordered index, index entries are stored sorted on  Dense index — Index record appears for every search- the search key value. E.g., author catalog in library. key value in the file.  Primary index/clustering index: in a sequentially ordered file, the index whose search key specifies the sequential order of the file.  The search key of a primary index is usually the primary key (but this is not necessary).  Secondary index/non-clustering index : an index whose search key specifies an order different from the sequential order of the file.  Index-sequential file : ordered sequential file with a primary index. 5 6 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 Sparse Index Files Example of Sparse Index Files  Sparse Index: contains index records for only some search-key values.  Applicable when records are sequentially ordered on search-key  To locate a record with search-key value K we:  Find index record with largest search-key value less than K  Search file sequentially starting at the record to which the index record points  Advantages/disadvantages:  Less space and less maintenance overhead for insertions and deletions.  Generally slower than dense index for locating records.  Good tradeoff: sparse index with an index entry for every block of file, corresponding to least search-key value in the block. 7 8 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 2

  3. Multi-level Index Example  If primary index does not fit in memory, access becomes expensive.  To reduce number of disk accesses to index records, treat primary index kept on disk as a sequential file and construct a sparse index on it.  outer index – a sparse index of primary index  inner index – the primary index file  If even outer index is too large to fit in main memory, yet another level of index can be created, and so on.  Indices at all levels must be updated on insertion or deletion from the file. 9 10 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 Index Update: Deletion Index Update: Insertion  If deleted record was the only record in the file with its  Single-level index insertion: particular search-key value, the search-key is deleted  Perform a lookup using the search-key value appearing in the from the index also. record to be inserted.  Dense indices  if the search-key value does not appear in the index, insert it.  Single-level index deletion:  Sparse indices  Dense indices  if index stores an entry for each block of the file, no change  deletion of search-key is similar to file record deletion. needs to be made to the index unless a new block is created.  Sparse indices  In this case, the first search-key value appearing in the new  if an entry for the search key exists in the index, it is deleted block is inserted into the index. by replacing the entry in the index with the next search-key value in the file (in search-key order)  Multilevel insertion (as well as deletion) algorithms are  If the next search-key value already has an index entry, the simple extensions of the single-level algorithms entry is deleted instead of being replaced. 11 12 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 3

  4. Secondary Indices Secondary Index Example  Frequently, one wants to find all the records whose  Secondary Index on balance field of account values in a certain field satisfy some condition (and the field is not the search-key of the primary index).  Example 1: In the account database stored sequentially by account number, we may want to find all accounts in a particular branch  Example 2: as above, but where we want to find all accounts with a specified balance or range of balances  We can have a secondary index with an index record for each search-key value  index record points to a bucket that contains pointers to all the actual records with that particular search-key value. 13 14 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 Primary and Secondary Indices Roadmap  Secondary indices have to be dense.  Basic Concepts  Ordered Indices  Indices offer substantial benefits when searching for  B+-Tree Index Files records.  B-Tree Index Files  Static Hashing  When a file is modified, every index on the file must be  Comparison of Ordered Indexing and Hashing updated  Index Definition in SQL  Updating indices imposes overhead on database modification.  Sequential scan using primary index is efficient, but a sequential scan using a secondary index is expensive  each record access may fetch a new block from disk 15 16 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 4

  5. B + -Tree Index Files B + -Tree Index Files (Cont.) A B + -tree is a rooted tree satisfying the following properties: B + -tree indices are an alternative to indexed-sequential files.  Disadvantage of indexed-sequential files  All paths from root to leaf are of the same length  performance degrades as file grows, since many overflow blocks get created  Each node that is not a root or a leaf has between  Periodic reorganization of entire file is required. [ n /2] and n children.  Advantage of B + -tree index files:  automatically reorganizes itself with small, local, changes, in the face of insertions and deletions.  A leaf node has between [( n –1)/2] and n –1 values  Reorganization of entire file is not required to maintain performance.  Special cases:  Disadvantage of B + -trees:  If the root is not a leaf, it has at least 2 children.  extra insertion and deletion overhead, space overhead.  If the root is a leaf (that is, there are no other nodes in the  Advantages of B + -trees outweigh disadvantages tree), it can have between 0 and ( n –1) values.  B + -trees are used extensively. 17 18 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 B + -Tree Node Structure Leaf Nodes in B + -Trees  Typical node Properties of a leaf node   For i = 1, 2, . . ., n– 1, pointer P i either points  to a file record with search-key value K i , or  to a bucket of pointers to file records, each record having  K i are the search-key values search-key value K i .  P i are pointers to children (for non-leaf nodes) or pointers to  Only need bucket structure if search-key does not form a records or buckets of records (for leaf nodes). primary key.  The search-keys in a node are ordered  If L i , L j are leaf nodes and i < j, K 1 < K 2 < K 3 < . . . < K n– 1 L i ’s search-key values are less than L j ’s search-key values  P n points to next leaf node in search-key order 19 20 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 Alexandros Labrinidis, Univ. of Pittsburgh CS 2550 / Spring 2006 5

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend