Indexes and B-Trees Lecture 9 R & G Chapters 8 & 9

Slides:



Advertisements
Similar presentations
Database Management Systems, R. Ramakrishnan and J. Gehrke1 File Organizations and Indexing Chapter 8 How index-learning turns no student pale Yet holds.
Advertisements

File Organizations and Indexing Chapter 8
Overview of Storage and Indexing
File Organizations and Indexing Lecture 4 R&G Chapter 8 "If you don't find it in the index, look very carefully through the entire catalogue." -- Sears,
Tree-Structured Indexes
Introduction to Database Systems1 Records and Files Storage Technology: Topic 3.
CS 405G: Introduction to Database Systems
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Overview of Storage and Indexing Chapter 8 “How index-learning turns no student pale Yet.
File Organizations and Indexing Lecture 5 R&G Chapter 8 "If you don't find it in the index, look very carefully through the entire catalogue." -- Sears,
1 Overview of Storage and Indexing Chapter 8 (part 1)
1 File Organizations and Indexing Module 4, Lecture 2 “How index-learning turns no student pale Yet holds the eel of science by the tail.” -- Alexander.
1 Overview of Storage and Indexing Yanlei Diao UMass Amherst Feb 13, 2007 Slides Courtesy of R. Ramakrishnan and J. Gehrke.
File Organizations and Indexing R&G Chapter 8 "If you don't find it in the index, look very carefully through the entire catalogue." -- Sears, Roebuck,
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Overview of Storage and Indexing Chapter 8 “How index-learning turns no student pale Yet.
File Organizations and Indexing Lecture 4 R&G Chapter 8 "If you don't find it in the index, look very carefully through the entire catalogue." -- Sears,
1.1 CAS CS 460/660 Introduction to Database Systems File Organization Slides from UC Berkeley.
1 Overview of Storage and Indexing Chapter 8 1. Basics about file management 2. Introduction to indexing 3. First glimpse at indices and workloads.
DBMS Internals: Storage February 27th, Representing Data Elements Relational database elements: A tuple is represented as a record CREATE TABLE.
Tree-Structured Indexes. Range Searches ``Find all students with gpa > 3.0’’ –If data is in sorted file, do binary search to find first such student,
Layers of a DBMS Query optimization Execution engine Files and access methods Buffer management Disk space management Query Processor Query execution plan.
Storage and Indexing February 26 th, 2003 Lecture 19.
Database Management Systems, R. Ramakrishnan and J. Gehrke1 File Organizations and Indexing Chapter 8.
Indexing - revisited CS 186, Fall 2012 R & G Chapter 8.
Overview of File Organizations and Indexing Jianlin Feng School of Software SUN YAT-SEN UNIVERSITY courtesy of Joe Hellerstein for some slides.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Overview of Storage and Indexing Chapter 8.
File Organizations and Indexing Lecture 4 R&G Chapter 8 "If you don't find it in the index, look very carefully through the entire catalogue." -- Sears,
1 IT420: Database Management and Organization Storage and Indexing 14 April 2006 Adina Crăiniceanu
Database Management Systems, R. Ramakrishnan and J. Gehrke1 File Organizations and Indexing Chapter 8 “How index-learning turns no student pale Yet holds.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Queries, Database Design, Constraint Enforcement Specify Schema + specify constraints.
1 Overview of Storage and Indexing Chapter 8 (part 1)
Storage and Indexing1 Overview of Storage and Indexing.
1 Overview of Storage and Indexing Chapter 8 “How index-learning turns no student pale Yet holds the eel of science by the tail.” -- Alexander Pope ( )
DATABASE MANAGEMENT SYSTEMS TERM B. Tech II/IT II Semester UNIT-VIII PPT SLIDES Text Books: (1) DBMS by Raghu Ramakrishnan (2) DBMS by Sudarshan.
Implementation of Relational Operators/Estimated Cost 1.Select 2.Join.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Overview of Storage and Indexing Chapter 8.
1 Overview of Storage and Indexing Chapter 8. 2 Data on External Storage  Disks: Can retrieve random page at fixed cost  But reading several consecutive.
Overview of Storage and Indexing Content based on Chapter 4 Database Management Systems, (Third Edition), by Raghu Ramakrishnan and Johannes Gehrke. McGraw.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Overview of Storage and Indexing Chapter 8 “How index-learning turns no student pale Yet.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Overview of Storage and Indexing Chapter 8 “If you don’t find it in the index, look very.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Overview of Storage and Indexing Chapter 8.
File Organizations and Indexing
Storage and Indexing. How do we store efficiently large amounts of data? The appropriate storage depends on what kind of accesses we expect to have to.
Indexing. 421: Database Systems - Index Structures 2 Cost Model for Data Access q Data should be stored such that it can be accessed fast q Evaluation.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Overview of Storage and Indexing Chapter 8.
1 Clustered vs. Unclustered Index Index entries Data entries direct search for (Index File) (Data file) Data Records data entries Data entries Data Records.
CS 405G: Introduction to Database Systems Instructor: Jinze Liu Fall 2007.
Database Management Systems, R. Ramakrishnan and J. Gehrke1 File Organizations and Indexing Chapter 8 Jianping Fan Dept of Computer Science UNC-Charlotte.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Overview of Storage and Indexing Chapter 8.
1 Overview of Storage and Indexing Chapter 8. 2 Review: Architecture of a DBMS  A typical DBMS has a layered architecture.  The figure does not show.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Overview of Storage and Indexing Chapter 8.
Database Management Systems 3ed, R. Ramakrishnan and J. Gehrke1 Overview of Storage and Indexing Chapter 8 “If you don’t find it in the index, look very.
CS522 Advanced database Systems Huiping Guo Department of Computer Science California State University, Los Angeles 3. Overview of data storage and indexing.
CS522 Advanced database Systems
Record Storage, File Organization, and Indexes
Indexing ? Why ? Need to locate the actual records on disk without having to read the entire table into memory.
CS222P: Principles of Data Management Notes #6 Index Overview and ISAM Tree Index Instructor: Chen Li.
Lecture 12 Lecture 12: Indexing.
Introduction to Database Systems File Organization and Indexing
Overview of Storage and Indexing
File Organizations and Indexing
File Organizations and Indexing
Overview of Storage and Indexing
Overview of Storage and Indexing
Indexing 1.
CS222/CS122C: Principles of Data Management Notes #6 Index Overview and ISAM Tree Index Instructor: Chen Li.
Storage and Indexing.
General External Merge Sort
Overview of Storage and Indexing
CS222/CS122C: Principles of Data Management UCI, Fall 2018 Notes #05 Index Overview and ISAM Tree Index Instructor: Chen Li.
Overview of Storage and Indexing
Presentation transcript:

Indexes and B-Trees Lecture 9 R & G Chapters 8 & 9 “If I had eight hours to chop down a tree, I'd spend six sharpening my ax.” Abraham Lincoln The slides for this text are organized into several modules. Each lecture contains about enough material for a 1.25 hour class period. (The time estimate is very approximate--it will vary with the instructor, and lectures also differ in length; so use this as a rough guideline.) This covers Lectures 3 and 4 (of 6) in Module (2). Module (1): Introduction (DBMS, Relational Model) Module (2): Storage and File Organizations (Disks, Buffering, Indexes) Module (3): Database Concepts (Relational Queries, DDL/ICs, Views and Security) Module (4): Relational Implementation (Query Evaluation, Optimization) Module (5): Database Design (ER Model, Normalization, Physical Design, Tuning) Module (6): Transaction Processing (Concurrency Control, Recovery) Module (7): Advanced Topics 1

Administrivia Homework 1 Due Tonight, 10pm Homework 2 Available Today, Due 3 weeks from today Midterm Exam 1 will be a week from Thursday It will be in class, at the usual time Next Tuesday’s class will be a review More SQL Exercises on the Class Website

Review Last two weeks: Formal Query Languages: Rel. Algebra & Calculus Actual Query Language: SQL This week: Indexes Tree Indexes (HW2) Hash Indexes Next week: Review Midterm 1

Review: Division A/B B1 B2 B3 A/B1 A/B2 A/B3 A

Review: Use NOT Exists for Division Recall: X/Y means only give me X tuples that have a match in Y. Find sailors who’ve reserved all boats. X = set of sailors and Y = set of all boats with reservations. SELECT S.sname FROM Sailors S WHERE NOT EXISTS (SELECT B.bid FROM Boats B WHERE NOT EXISTS (SELECT R.bid FROM Reserves R WHERE R.bid=B.bid AND R.sid=S.sid)) Find Sailors S such that ... there is no boat B... without a reservation by Sailor S

Division SELECT S.sname FROM Sailors S WHERE NOT EXISTS (SELECT B.bid FROM Boats B WHERE NOT EXISTS (SELECT R.bid FROM Reserves R WHERE R.bid=B.bid AND R.sid=S.sid)) 101 103 1 3 2 Reserves Sailors sid bid day 1 103 9/12 2 9/13 3 9/14 101 Boats R sid sname rating age 1 Frodo 7 22 2 Bilbo 39 3 Sam 8 27 bid bname color 101 Nina red 103 Pinta blue S B R S R B R S R

Null Values Values are sometimes unknown (e.g., a rating has not been assigned) or inapplicable (e.g., no spouse’s name). SQL provides a special value null for such situations. The presence of null complicates many issues. E.g.: Special operators needed to check if value is/is not null. “rating>8” - true or false when rating is null? What about AND, OR and NOT connectives? Need a 3-valued logic (true, false and unknown). Meaning of constructs must be defined carefully. (e.g., WHERE clause eliminates rows that don’t evaluate to true.) New operators (in particular, outer joins) possible/needed.

Null Values – 3 Valued Logic null AND true is null is null is null is null AND T F Null NULL OR T F Null NULL T F Null T T T F F F T F Null Null F Null T Null Null

Null Values in SQL “Where” clause must evaluate to true “IS NULL” operator, e.g. “where name is null” “IS NOT NULL” operator Outer Joins: Left, Right, Full

SELECT s.sid, s.name, r.bid FROM Sailors s LEFT OUTER JOIN Reserves r ON s.sid = r.sid

SELECT r.sid, b.bid, b.name FROM Reserves r RIGHT OUTER JOIN Boats b ON r.bid = b.bid

Review – Buffer Management and Files Storage of Data Fields, either fixed or variable length... Stored in Records... Stored in Pages... Stored in Files If data won’t fit in RAM, store on Disk Need Buffer Pool to hold pages in RAM Different strategies decide what to keep in pool

Today: File Organization How to keep pages of records on disk but must support operations: scan all records search for a record id “RID” search for record(s) with certain values insert new records delete old records

Alternative File Organizations Many alternatives exist, tradeoffs for each: Heap files: Suitable when typical access is file scan of all records. Sorted Files: Best for retrieval in search key order Also good for search based on search key Indexes: Organize records via trees or hashing. Like sorted files, speed up searches for search key fields Updates are much faster than in sorted files.

Indexes Often want to get records byvalues in one or more fields, e.g., Find all students in the “CS” department Find all students with a gpa > 3 An index on a file is a: Disk-based data structure Speeds up selections on the search key fields for the index. Any subset of the fields of a relation can be index search key Search key is not the same as key (e.g. doesn’t have to be unique ID). An index Contains a collection of key/data entry pairs Supports efficient retrieval of all records with a given search key value k.

Index Classification What selections does it support? What does index actually store? 3 alternatives: Data record with key value k <k, rid of data record> <k, list of rids of data records> Clustered vs. Unclustered Indexes Single Key vs. Composite Indexes Tree-based, hash-based, other Can have multiple (different) indexes per file. E.g. file sorted by age, with a hash index on salary and a B+tree index on name.

First Question to Ask About an Index What kinds of selections does it support? Selections of form field <op> constant Equality selections (op is =) Range selections (op is one of <, >, <=, >=, BETWEEN) More exotic selections: 2-dimensional ranges (“east of Berkeley and west of Truckee and North of Fresno and South of Eureka”) Or n-dimensional 2-dimensional distances (“within 2 miles of Soda Hall”) Ranking queries (“10 restaurants closest to VLSB”) Regular expression matches, genome string matches, etc. One common n-dimensional index: R-tree

What data is held by the index? Alternative 1: Actual data record (with key value k) Index structure is file organization for data records (like Heap files or sorted files). At most one index on a table can use Alternative 1. Saves pointer lookups Can be expensive to maintain with insertions and deletions.

What data is held by the index? (Contd.) Alternative 2 <k, rid> and Alternative 3 <k, list of rids> Easier to maintain than Alt 1. At most one index can use Alternative 1; any others must use Alternatives 2 or 3. Alternative 3 more compact than Alternative 2, but leads to variable sized data entries even if search keys are of fixed length. Even worse, for large rid lists the data entry might have to span multiple pages!

Clustered and Unclustered Clustered vs. unclustered: If order of data records is the same as, or `close to’, order of index data entries, then called clustered index. A file can be clustered on at most one search key. Cost to retrieve data records with index varies greatly based on whether index clustered or not! Alternative 1 implies clustered, but not vice-versa.

Clustered vs. Unclustered Index Suppose that Alternative (2) is used for data entries, and that the data records are stored in a Heap file. To build clustered index, first sort the Heap file (with some free space on each block for future inserts). Overflow blocks may be needed for inserts. (Thus, order of data recs is `close to’, but not identical to, the sort order.) Index entries UNCLUSTERED CLUSTERED direct search for data entries Data entries Data entries (Index File) (Data file) Data Records Data Records

Unclustered vs. Clustered Indexes What are the tradeoffs???? Clustered Pros Efficient for range searches May be able to do some types of compression Possible locality benefits (related data?) Clustered Cons Expensive to maintain (on the fly or sloppy with reorganization)

Hash-Based Indexes Good for equality selections. Index is a collection of buckets. Bucket = primary page plus zero or more overflow pages. Hashing function h: h(r) = bucket in which record r belongs. h looks at the search key fields of r. If Alternative (1) is used, the buckets contain the data records; otherwise, they contain <key, rid> or <key, rid-list> pairs. 2

B+ Tree Indexes Non-leaf Pages Leaf Pages Leaf pages contain data entries, and are chained (prev & next) Non-leaf pages contain index entries and direct searches: index entry P K P K 1 2 P K P 1 2 m m 4

Comparing File Organizations Heap files (random order; insert at eof) Sorted files, sorted on <age, sal> Clustered B+ tree file, Alternative (1), search key <age, sal> Heap file with unclustered B + tree index on search key <age, sal> Heap file with unclustered hash index on search key <age, sal>

Operations to Compare Scan: Fetch all records from disk Fetch all records in sorted order Equality search Range selection Insert a record Delete a record

Cost Model for Analysis I/O cost 150,000 times more than hash function We ignore CPU costs, for simplicity B: The number of data pages R: Number of records per page F: Fanout of B-tree Average-case analysis; based on several simplistic assumptions. Good enough to show the overall trends!

Assumptions in Our Analysis Heap Files: Equality selection on key; exactly one match. Sorted Files: Files compacted after deletions. Indexes: Alt (2), (3): data entry size = 10% size of record Hash: No overflow buckets. 80% page occupancy => File size = 1.25 data size Tree: 67% occupancy (this is typical). Implies file size = 1.5 data size 4

I/O Cost of Operations Heap File Scan all records B Get all in sort order 4B Equality Search 0.5 B Range Search Insert 2 Delete 0.5B + 1 I/O Cost of Operations B: Number of data pages (packed) R: Number of records per page S: Time required for equality search

I/O Cost of Operations Sorted File Scan all records B Get all in sort order Equality Search log2 B Range Search S + # matching pages Insert S + B Delete I/O Cost of Operations B: Number of data pages (packed) R: Number of records per page S: Time required for equality search

I/O Cost of Operations Clustered Tree Scan all records 1.5 B Get all in sort order Equality Search logF (1.5 B) Range Search S + #matching pages Insert S + 1 Delete 0.5B + 1 I/O Cost of Operations B: Number of data pages (packed) R: Number of records per page F: Fanout of B-Tree S: Time required for equality search

I/O Cost of Operations Unclustered Tree Scan all records B (ignore index) Get all in sort order 4B Equality Search logF (.15 B) + 1 Range Search S + #matching records Insert S + 2 Delete I/O Cost of Operations B: Number of data pages (packed) R: Number of records per page F: Fanout of B-Tree S: Time required for equality search

I/O Cost of Operations Hash Index Scan all records B (ignore index) Get all in sort order 4B Equality Search 2 Range Search Insert 4 Delete S + 2 I/O Cost of Operations B: Number of data pages (packed) R: Number of records per page S: Time required for equality search

I/O Cost of Operations B: The number of data pages R: Number of records per page F: Fanout of B-Tree S: Time required for equality search * Don’t Use Index I/O Cost of Operations Heap File Sorted File Clustered Tree Unclustered Tree Hash Index Scan all records B 1.5 B B* Get all in sort order 4B 4B* Equality Search 0.5 B log2 B logF (1.5 B) logF (.15 B) + 1 2 Range Search S + #matching pages S + #matching records Insert S + B S + 1 S + 2 4 Delete 0.5B + 1

Index Selection Guidelines Attributes in WHERE clause are candidates for index keys. Exact match condition suggests hash index. Range query suggests tree index. Clustering is especially useful for range queries; can also help on equality queries if there are many duplicates. Multi-attribute search keys should be considered when a WHERE clause contains several conditions. Order of attributes is important for range queries. Such indexes sometimes enable index-only strategies For index-only strategies, clustering is not important! Choose indexes that benefit as many queries as possible. Since only one index can be clustered per table, choose it based on important queries that would benefit the most from clustering. 14

B+ Tree: The Most Widely Used Index Supports equality and range-searches efficiently. Insert/delete at log F N cost; keep tree height-balanced. (F = fanout, N = # leaf pages) Minimum 50% occupancy (except for root). Each node contains d <= m <= 2d entries. The parameter d is called the order of the tree. Index Entries (Direct search) Data Entries ("Sequence set") 9

Example B+ Tree Search begins at root, and key comparisons direct it to a leaf (as in ISAM). Search for 5*, 15*, all data entries >= 24* ... Root 17 24 30 2* 3* 5* 7* 14* 16* 19* 20* 22* 24* 27* 29* 33* 34* 38* 39* 13 Based on the search for 15*, we know it is not in the tree! 10

B+ Trees in Practice Typical order: 100. Typical fill-factor: 67%. average fanout = 133 Typical capacities: Height 4: 1334 = 312,900,700 records Height 3: 1333 = 2,352,637 records Can often hold top levels in buffer pool: Level 1 = 1 page = 8 Kbytes Level 2 = 133 pages = 1 Mbyte Level 3 = 17,689 pages = 133 MBytes

Inserting a Data Entry into a B+ Tree Find correct leaf L. Put data entry onto L. If L has enough space, done! Else, must split L (into L and a new node L2) Redistribute entries evenly, copy up middle key. Insert index entry pointing to L2 into parent of L. This can happen recursively To split index node, redistribute entries evenly, but push up middle key. (Contrast with leaf splits.) Splits “grow” tree; root split increases height. Tree growth: gets wider or one level taller at top. 6

Example B+ Tree - Inserting 8* Root 13 17 24 30 2* 3* 5* 7* 14* 16* 19* 20* 22* 24* 27* 29* 33* 34* 38* 39* 13

Example B+ Tree - Inserting 8* Root 17 5 13 24 30 2* 3* 5* 7* 8* 14* 16* 19* 20* 22* 24* 27* 29* 33* 34* 38* 39* Notice that root was split, leading to increase in height. In this example, we can avoid split by re-distributing entries; however, this is usually not done in practice. 13

Inserting 8* into Example B+ Tree Entry to be inserted in parent node. Observe how minimum occupancy is guaranteed in both leaf and index pg splits. Note difference between copy-up and push-up; be sure you understand the reasons for this. 5 (Note that 5 is … s copied up and continues to appear in the leaf.) 2* 3* 5* 7* 8* Entry to be inserted in parent node. (Note that 17 is pushed up and only 17 appears once in the index. Contrast … this with a leaf split.) 5 13 24 30 12

Deleting a Data Entry from a B+ Tree Start at root, find leaf L where entry belongs. Remove the entry. If L is at least half-full, done! If L has only d-1 entries, Try to re-distribute, borrowing from sibling (adjacent node with same parent as L). If re-distribution fails, merge L and sibling. If merge occurred, must delete entry (pointing to L or sibling) from parent of L. Merge could propagate to root, decreasing height. 14

B-Tree Demo

Example Tree (including 8*) Delete 19* and 20* ... Root 17 5 13 24 30 2* 3* 5* 7* 8* 14* 16* 19* 20* 22* 24* 27* 29* 33* 34* 38* 39* Deleting 19* is easy. 15

Example Tree (including 8*) Delete 19* and 20* ... Root 17 5 13 27 30 2* 3* 5* 7* 8* 14* 16* 22* 24* 27* 29* 33* 34* 38* 39* Deleting 19* is easy. Deleting 20* is done with re-distribution. Notice how middle key is copied up. 15

... And Then Deleting 24* Must merge. Observe `toss’ of index entry (on right), and `pull down’ of index entry (below). 30 22* 27* 29* 33* 34* 38* 39* Root 5 13 17 30 2* 3* 5* 7* 8* 14* 16* 22* 27* 29* 33* 34* 38* 39* 16

Summary Alternative file organizations, tradeoffs for each If selection queries are frequent, sorting the file or building an index is important. Hash-based indexes only good for equality search. Sorted files and tree-based indexes best for range search; also good for equality search. (Files rarely kept sorted in practice; B+ tree index is better.) Index is a collection of data entries plus a way to quickly find entries with given key values. 14

Summary (Contd.) Data entries can be actual data records, <key, rid> pairs, or <key, rid-list> pairs. Choice orthogonal to indexing technique used to locate data entries with a given key value. Can have several indexes on a given file of data records, each with a different search key. Indexes can be clustered, unclustered B-tree, hash table, etc. 15

Summary (Contd.) Understanding the nature of the workload for the application, and the performance goals, is essential to developing a good design. What are the important queries and updates? What attributes/relations are involved? Indexes must be chosen to speed up important queries (and perhaps some updates!). Index maintenance overhead on updates to key fields. Choose indexes that can help many queries, if possible. Build indexes to support index-only strategies. Clustering is an important decision; only one index on a given relation can be clustered! Order of fields in composite index key can be important.