indexes
play

Indexes Database Systems: The Complete Book Ch. 13.1-13.3, - PowerPoint PPT Presentation

Indexes Database Systems: The Complete Book Ch. 13.1-13.3, 14.1-14.2 1 2 3 $88 $24 4 $88 $24 Hardcover (heavy) Paperback (light) 5 $88 $24 Hardcover (heavy) Paperback (light) Bigger Small 6 $88 $24 Hardcover (heavy) Paperback


  1. Indexes Database Systems: The Complete Book Ch. 13.1-13.3, 14.1-14.2 1

  2. 2

  3. 3

  4. $88 $24 4

  5. $88 $24 Hardcover (heavy) Paperback (light) 5

  6. $88 $24 Hardcover (heavy) Paperback (light) Bigger Small 6

  7. $88 $24 Hardcover (heavy) Paperback (light) Bigger Small Good ToC/Index Bad ToC/Index 7

  8. The Memory Hierarchy Fast (but small) Big (but slow) 8

  9. Data Organization Clustered/ Sorted Heap Indexed Secondary file Records grouped Records stored used to organize together or stored in any order in sorted order, data records What are the benefits/drawbacks of each method? Does it matter what medium the data is being stored on? When do we use each method? 9

  10. IO Operations are Bad 10

  11. Recap / GroupWork SELECT o.FirstName, o.LastName FROM Officers o WHERE o.Rank >= 3 AND ( o.Ship = 1701 OR o.Ship = 2000 ) What is an equivalent Relational Algebra expression? What is the maximum working set size? What is the time complexity? 11

  12. Query Evaluation • A query plan identifies the evaluation path. • Individual operators express primitive operations. • Select, project, join, sort, etc… • Individual operators can be evaluated in isolation. • e.g., Select: Drop rows that fail the predicate • … but sometimes combinations of operators are better. • e.g., Select+Cross Product vs Join 12

  13. Let’s Consider Select… SELECT o.FirstName, o.LastName FROM Officers o WHERE o.Rank >= 3 AND ( o.Ship = 1701 OR o.Ship = 2000 ) How would you evaluate this query? How would you organize the data for this query? 13

  14. Problem Select searches for data Checking every data value is correct , but not efficient Solution Organize the data! What are some ways of organizing the data? 14

  15. Organizing the Data • Solution 1: Sort • Store the data sorted • Solution 2: Partition (e.g., Hash) • Deterministically create ‘buckets’ of data. • Solution 3: Organize References • Store/organize ‘pointers’ to the data. What are some pros and cons for each solution? 15

  16. Indexing (high level) A, B 10,5 5,1 3,9 1, 5 1,8 6,1 16

  17. Indexing (high level) Data Sorted on A Pointers Sorted on B (clustered index) (unclustered index) 1,8 8 1, 5 5 3,9 5 5,1 9 6,1 1 10,5 1 Want Efficient Lookups on Both A and B! 17

  18. Back to Select How would you sort your data for… (and how would you evaluate it) σ A = 1 σ A < 1 σ A = 1 AND B = 2 18

  19. Data Organization Each clause in a CNF boolean formula must be true. • API: Give me all records (or record IDs) that satisfy this • predicate (these predicates) Equality search: All records with field X = ‘Y’ • Officer.Ship = ‘1701A’ • Range search: All records with field X ∈ [Y, Z] • Officer.Rank ∈ [3, + ∞ ) • 19

  20. Problem… Let’s say you have 2 20 blocks (~4GB) of data sorted on A How many IOs are required to find one A? In general, for N blocks, how many IOs? log 2 (N) Why? 20

  21. “Searching” All Things Things < 5 Things > 5 Things < 2 2 < Things < 5 0 1 2 3 4 5 6 7 8 9 10 “Find 3” As you search, you are effectively building a binary tree. 21

  22. Shorter Trees Binary Tree → Log 2 Depth N-ary Tree → Log N Depth 22

  23. Tree-Based Indexes 23

  24. The ISAM Datastructure … Non-Leaf Page p0 k1 p1 k2 p2 k3 p3 k4 p4 Non-Leaf Pages … … … Leaf Pages … … … … Leaf Pages contain <K, RID> or <K, Record> pairs 24

  25. Constructing an ISAM Index 1) Allocate (sequential) leaf pages 2) Ensure that the data on the leaf pages is sorted 3) Build the non-leaf pages (in arbitrary order) … … … … … … … 25

  26. ISAM Index Searches Equality : Start at root, use key comparisons to find leaf Range : Use key comparisons to find start and end page Scan all pages in between start/end leaves. … … … … … … … 26

  27. Constructing an ISAM Index Do you see any problems with this? … … … … … … … 27

  28. Updating an ISAM Index 1) When creating the index leave free space in each leaf page 2) The index stays the same, new data is added to the free space 3) If a leaf page overflows, we create an overflow page (or more) … … … … … … … 28

  29. An Example ISAM 23 42 41 48 40 20 33 51 63 51,55 63,97 10,15 20,27 33,37 40,46 , 29

  30. B+ Trees Index Entries Data Entries Data pages not sequential - Need linked list for traversals 30

  31. B+ Trees Search proceeds as in ISAM via key comparisons Find 5. Find 15. Find [24, ∞ ) 13 17 24 30 2, 3,5, 7 14,16,_,_ 19,20,22,_ 24,27,29,_ 33,34,38,39 31

  32. B+ Tree Invariants • Keep space open for insertions in inner/data nodes. • ‘Split’ nodes when they’re full • Avoid under-using space • ‘Merge’ nodes when they’re under-filled • Maintain Invariant : All Nodes ≥ 50% Full • (Exception: The Root) 32

  33. Example Inner Nodes : 4 values, 5 pointers Data Nodes : 4 values 33

  34. Inserting into B+ Trees 13 17 24 30 2, 3,5, 7 14,16 19,20,22 24,27,29 33,34,38,39 Insert 8 34

  35. Inserting into B+ Trees 13 17 24 30 5 2, 3 5,7,8 2, 3,5, 7 , Copy <5> into parent index Insert 8 35

  36. Inserting into B+ Trees 5 13 17 24 30 Move <17> into parent index : Root Split! Copy <5> into parent index 36

  37. Inserting into B+ Trees 17 5 13 24 30 Move <17> into parent index : Root Split! Copy <5> into parent index 37

  38. Inserting into B+ Trees 17 5 13 24 30 2, 3 5, 7,8 14,16 19,20,22 24,27,29 33,34,38,39 Why do we move, rather than copy the 17? Are we guaranteed to satisfy our occupancy guarantee? 38

  39. Deleting from B+ Trees 17 5 13 24 27 30 2, 3 5, 7,8 14,16 19,20,22 20,22 22,24 22 24,27,29 27,29 33,34,38,39 Delete 19 Delete 20 39

  40. Deleting from B+ Trees 17 5 13 27 30 2, 3 5, 7,8 14,16 22,27,29 22,24 22 27,29 33,34,38,39 Delete 24 40

  41. Non-Leaf Redistribution 22 5 13 17 20 30 2, 3 5, 7,8 14,16 17,18 20,21 22,27,29 33,34,38 41

  42. Non-Leaf Redistribution 17 5 13 20 22 30 2, 3 5, 7,8 14,16 17,18 20,21 22,27,29 33,34,38 Intuitively, we rotate index entries 17-22 through the root 42

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