class 12 tree structured indexing
play

Class 12: Tree-Structured Indexing Instructor: Manos Athanassoulis - PowerPoint PPT Presentation

CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis CS460: Intro to Database Systems Class 12: Tree-Structured Indexing Instructor: Manos Athanassoulis https://midas.bu.edu/classes/CS460/ CAS CS 460 [Fall 2019] -


  1. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis CS460: Intro to Database Systems Class 12: Tree-Structured Indexing Instructor: Manos Athanassoulis https://midas.bu.edu/classes/CS460/

  2. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Tree-structured indexing Intro & B + -Tree Insert into a B + -Tree Delete from a B + -Tree Prefix Key Compression & Bulk Loading Units

  3. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Introduction Recall: 3 alternatives for data entries k*: • Data record with key value k • < k , rid of data record with search key value k > • < k , list of rids of data records with search key k > Choice is orthogonal to the indexing technique used to locate data entries k*. Tree-structured indexing techniques support both range searches and equality searches . 4

  4. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Range Searches “Find all students with gpa > 3.0” – If data is in sorted file, do binary search to find first such student, then scan to find others. – Cost of maintaining sorted file + performing binary search in a database can be quite high. Q: Why??? Simple idea: Create an “index” file. Index File kN k1 k2 Data File Page N Page 1 Page 3 Page 2 ☛ Can do binary search on a (smaller) index file! 5

  5. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis B+ Tree: The Most Widely-Used Index Insert/delete at !"# $ (&) cost; keep tree height-balanced . ( ( = fanout, & = # leaf pages) Minimum 50% occupancy (except for root). Each node contains ) ≤ + ≤ 2) entries. “ ) ” is called the order of the tree. Supports equality and range-searches efficiently. All searches go from root to leaves, in a dynamic structure. Index Entries (Direct search) Data Entries 6

  6. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Example B+ Tree Search begins at root, and key comparisons direct it to a leaf. Search for 5*, 15*, all data entries >= 24* ... Root 30 13 17 24 33* 34* 38* 39* 3* 5* 19* 20* 22* 24* 27* 29* 2* 7* 14* 16* ☛ Based on the search for 15*, we know it is not in the tree! 7

  7. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis B+ Trees in Practice (cool facts!) Typical order: 100. Typical fill-factor: 67%. – average fanout = 2 " 100 " 0.67 = 134 Typical capacities: – Height 4: 133 4 = 312,900,721 entries – Height 3: 133 3 = 2,406,104 entries 1 Can often hold top levels in buffer pool: 134 – Level 1 = 1 page = 8 KB – Level 2 = 134 pages = 1 MB – Level 3 = 17,956 pages = 140 MB 17,956 8

  8. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Tree-structured indexing Intro & B + -Tree Insert into a B + -Tree Delete from a B + -Tree Prefix Key Compression & Bulk Loading Units

  9. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis 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. 10

  10. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Example B+ Tree - Inserting 8* Root 13 17 24 3* 5* 19* 20* 22* 23* 24* 27* 29* 2* 7* 14* 16* 11

  11. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Example B+ Tree - Inserting 8* Root 13 17 24 3* 5* 19* 20* 22* 23* 24* 27* 29* 2* 7* 14* 16* 23* 2* 3* 5* 7* 14* 16* 19* 20* 22* 24* 27* 29* 12

  12. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Example B+ Tree - Inserting 8* Root 13 17 24 3* 5* 19* 20* 22* 23* 24* 27* 29* 2* 7* 14* 16* 23* 2* 3* 5* 7* 8* 14* 16* 19* 20* 22* 24* 27* 29* 13

  13. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Example B+ Tree - Inserting 8* Root 13 17 24 3* 5* 19* 20* 22* 23* 24* 27* 29* 2* 7* 14* 16* 13 17 24 23* 2* 3* 5* 7* 8* 14* 16* 19* 20* 22* 24* 27* 29* 14

  14. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Example B+ Tree - Inserting 8* Root 13 17 24 3* 5* 19* 20* 22* 23* 24* 27* 29* 2* 7* 14* 16* 5 13 17 24 23* 2* 3* 5* 7* 8* 14* 16* 19* 20* 22* 24* 27* 29* 15

  15. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Example B+ Tree - Inserting 21* Root 5 13 17 24 2* 3* 5* 7* 8* 19* 20* 22* 24* 27* 29* 14* 16* 23* 5 13 17 24 2* 3* 5* 7* 8* 19* 20* 22* 23* 24* 27* 29* 14* 16* 16

  16. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Example B+ Tree - Inserting 21* Root 5 13 17 24 2* 3* 5* 7* 8* 19* 20* 22* 24* 27* 29* 14* 16* 23* 5 13 17 24 2* 3* 5* 7* 8* 19* 20* 21* 22* 23* 24* 27* 29* 14* 16* 17

  17. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Example B+ Tree - Inserting 21* Root 5 13 17 24 2* 3* 5* 7* 8* 19* 20* 22* 24* 27* 29* 14* 16* 23* 17 21 5 13 24 2* 3* 5* 7* 8* 19* 20* 21* 22* 23* 24* 27* 29* 14* 16* 18

  18. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Example B+ Tree - Inserting 21* Root 5 13 17 24 2* 3* 5* 7* 8* 19* 20* 22* 24* 27* 29* 14* 16* 23* Root 17 21 5 13 24 2* 3* 5* 7* 8* 19* 20* 21* 22* 23* 24* 27* 29* 14* 16* 19

  19. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Example B+ Tree Root 17 21 5 13 24 2* 3* 5* 7* 8* 19* 20* 21* 22* 23* 24* 27* 29* 14* 16* 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. 20

  20. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Example: Data vs. Index Page Split 2* 3* 5* 7* 8* Data minimum occupancy is Entry to be inserted in parent node. Page … (Note that 5 is s copied up and 5 guaranteed in both leaf and Split continues to appear in the leaf.) index page splits copy-up for data page splits 3* 5* 2* 7* 8* Index 24 5 13 17 21 Page Entry to be inserted in parent node. Split (Note that 17 is pushed up and only 17 push-up for index page split appears once in the index. Contrast this with a leaf split.) 5 13 21 24 21

  21. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Now you try… Root 30 … (not shown) 5 13 20 28* 2* 3* 5* 7* 8* 21* 22* 23* 14* 16* 11* 5* 6* 7* 8* 11* Insert the following data entries (in order): 28*, 6*, 25* 22

  22. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Answer… After inserting 28*, 6* 30 5 7 23 13 20 … 5 7 13 20 2* 3* 5* 6* 14* 16* 21* 22* 23* 28* 7* 8* 11* 21* 22* 23* 25* 28* After inserting 25* 13 30 … 20 23 5 7 2* 3* 5* 6* 21* 22* 23* 25* 28* 7* 8* 11* 14* 16* 23

  23. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Tree-structured indexing Intro & B + -Tree Insert into a B + -Tree Delete from a B + -Tree Prefix Key Compression & Bulk Loading Units

  24. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis 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. 25

  25. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis Example: Delete 19* & 20* Root Deleting 19* is easy: 17 2 1 24 30 5 13 2* 3* 33* 34* 38* 39* 5* 7* 8* 19* 20* 22* 20* 22* 24* 27* 29* 14* 16* Root 17 3 27 30 5 13 2* 3* 33* 34* 38* 39* 5* 7* 8* 22* 24* 27* 29* 14* 16* Deleting 20* is done with re-distribution. Notice how middle key is copied up . 26

  26. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis ... and then deleting 24* Root 17 3 27 30 5 13 2* 3* 33* 34* 38* 39* 5* 7* 8* 22* 24* 27* 29* 14* 16* Root 4 17 30 5 13 33* 34* 38* 39* 2* 3* 5* 7* 8* 22* 27* 29* 14* 16* Must merge leaves … but are we done?? 27

  27. CAS CS 460 [Fall 2019] - https://midas.bu.edu/classes/CS460/ - Manos Athanassoulis ... merge non-leaf nodes, shrink tree Root 17 4 30 5 13 2* 3* 33* 34* 38* 39* 5* 7* 8* 22* 27* 29* 14* 16* 5 Root 5 13 17 30 3* 39* 2* 5* 7* 8* 22* 34* 38* 27* 33* 14* 16* 29* 28

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