15 721
play

15-721 DATABASE SYSTEMS Lecture #07 Latch-free OLTP Indexes - PowerPoint PPT Presentation

15-721 DATABASE SYSTEMS Lecture #07 Latch-free OLTP Indexes (Part I) Andy Pavlo / / Carnegie Mellon University / / Spring 2016 @Andy_Pavlo // Carnegie Mellon University // Spring 2017 2 ADMINISTRIVIA Peloton master branch has been


  1. 15-721 DATABASE SYSTEMS Lecture #07 – Latch-free OLTP Indexes (Part I) Andy Pavlo / / Carnegie Mellon University / / Spring 2016 @Andy_Pavlo // Carnegie Mellon University // Spring 2017

  2. 2 ADMINISTRIVIA Peloton master branch has been updated to provide cleaner test cases. → There is now a separate file for Skip List tests. → Your implementation should match the behavior of the Bw-Tree. We will be sending out information on how to access the MemSQL development machines. CMU 15-721 (Spring 2017)

  3. 3 TODAY’S AGENDA T-Trees Skip Lists Index Implementation Issues CMU 15-721 (Spring 2017)

  4. 4 T-TREES Based on AVL Trees. Instead of storing keys in nodes, store pointers to their original values. Proposed in 1986 from Univ. of Wisconsin Used in TimesTen and other early in-memory DBMSs during the 1990s. A STUDY OF INDEX STRUCTURES FOR MAIN MEMORY DATABASE MANAGEMENT SYSTEMS VLDB 1986 CMU 15-721 (Spring 2017)

  5. 5 T-TREES T-Tree Node Parent Pointer ¤ ¤ ¤ ¤ Max-K Min-K ¤ ¤ Left Child Right Child Pointer Pointer CMU 15-721 (Spring 2017)

  6. 5 T-TREES T-Tree Node Parent Pointer Data ¤ Pointers ¤ ¤ ¤ Max-K Min-K ¤ ¤ Left Child Right Child Pointer Pointer CMU 15-721 (Spring 2017)

  7. 5 T-TREES T-Tree Node Parent Pointer Node ¤ Boundaries ¤ ¤ ¤ Max-K Min-K ¤ ¤ Left Child Right Child Pointer Pointer CMU 15-721 (Spring 2017)

  8. 5 T-TREES T-Tree Node Parent Pointer ¤ ¤ ¤ ¤ Max-K Min-K ¤ ¤ Left Child Right Child Pointer Pointer Key Space (Low → High) 1 2 3 4 5 6 7 CMU 15-721 (Spring 2017)

  9. 5 T-TREES T-Tree Node 4 Parent Pointer 2 6 ¤ ¤ ¤ ¤ Max-K Min-K 1 3 5 7 ¤ ¤ Left Child Right Child Pointer Pointer Key Space (Low → High) 1 2 3 4 5 6 7 CMU 15-721 (Spring 2017)

  10. 5 T-TREES T-Tree Node 4 Parent Pointer 2 6 ¤ ¤ ¤ ¤ Max-K Min-K 1 3 5 7 ¤ ¤ Left Child Right Child Pointer Pointer Key Space (Low → High) 1 2 3 4 5 6 7 CMU 15-721 (Spring 2017)

  11. 6 T-TREES Advantages → Uses less memory because it does not store keys inside of each node. → Inner nodes contain key/value pairs (like B-Tree). Disadvantages → Difficult to rebalance. → Difficult to implement safe concurrent access. → Have to chase pointers when scanning range or performing binary search inside of a node. CMU 15-721 (Spring 2017)

  12. 7 OBSERVATION The easiest way to implement a dynamic order- preserving index is to use a sorted linked list. All operations have to linear search. → Average Cost: O(N) K1 K2 K3 K4 K5 K6 K7 CMU 15-721 (Spring 2017)

  13. 7 OBSERVATION The easiest way to implement a dynamic order- preserving index is to use a sorted linked list. All operations have to linear search. → Average Cost: O(N) K1 K2 K3 K4 K5 K6 K7 CMU 15-721 (Spring 2017)

  14. 7 OBSERVATION The easiest way to implement a dynamic order- preserving index is to use a sorted linked list. All operations have to linear search. → Average Cost: O(N) K1 K2 K3 K4 K5 K6 K7 CMU 15-721 (Spring 2017)

  15. 8 SKIP LISTS Multiple levels of linked lists with extra pointers that skip over intermediate nodes. Maintains keys in sorted order without requiring global rebalancing. SKIP LISTS: A PROBABILISTIC ALTERNATIVE TO BALANCED TREES CACM Volume 33 Issue 6 1990 CMU 15-721 (Spring 2017)

  16. 9 SKIP LISTS A collection of lists at different levels → Lowest level is a sorted, singly linked list of all keys → 2nd level links every other key → 3rd level links every fourth key → In general, a level has half the keys of one below it To insert a new key, flip a coin to decide how many levels to add the new key into. Provides approximate O(log n) search times. CMU 15-721 (Spring 2017)

  17. 10 SKIP LISTS: EXAMPLE Levels End ∞ P=N/4 ∞ K2 K4 P=N/2 ∞ K1 K2 K3 K4 K6 P=N V1 V2 V3 V4 V6 CMU 15-721 (Spring 2017)

  18. 10 SKIP LISTS: EXAMPLE Levels End ∞ P=N/4 ∞ K2 K4 P=N/2 ∞ K1 K2 K3 K4 K6 P=N V1 V2 V3 V4 V6 CMU 15-721 (Spring 2017)

  19. 10 SKIP LISTS: EXAMPLE Levels End ∞ P=N/4 ∞ K2 K4 P=N/2 ∞ K1 K2 K3 K4 K6 P=N V1 V2 V3 V4 V6 CMU 15-721 (Spring 2017)

  20. 10 SKIP LISTS: EXAMPLE Levels End ∞ P=N/4 ∞ K2 K4 P=N/2 ∞ K1 K2 K3 K4 K6 P=N V1 V2 V3 V4 V6 CMU 15-721 (Spring 2017)

  21. 11 SKIP LISTS: INSERT Insert K5 Levels End ∞ P=N/4 ∞ K2 K4 P=N/2 ∞ K1 K2 K3 K4 K6 P=N V1 V2 V3 V4 V6 CMU 15-721 (Spring 2017)

  22. 11 SKIP LISTS: INSERT Insert K5 Levels End ∞ K5 P=N/4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N V1 V2 V3 V4 V5 V6 CMU 15-721 (Spring 2017)

  23. 11 SKIP LISTS: INSERT Insert K5 Levels End ∞ K5 P=N/4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N V1 V2 V3 V4 V5 V6 CMU 15-721 (Spring 2017)

  24. 11 SKIP LISTS: INSERT Insert K5 Levels End ∞ K5 P=N/4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N V1 V2 V3 V4 V5 V6 CMU 15-721 (Spring 2017)

  25. 12 SKIP LISTS: SEARCH Find K3 Levels End ∞ K5 P=N/4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N V1 V2 V3 V4 V5 V6 CMU 15-721 (Spring 2017)

  26. 12 SKIP LISTS: SEARCH Find K3 Levels End ∞ K5 P=N/4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N V1 V2 V3 V4 V5 V6 CMU 15-721 (Spring 2017)

  27. 12 SKIP LISTS: SEARCH Find K3 Levels End K3<K5 ∞ K5 P=N/4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N V1 V2 V3 V4 V5 V6 CMU 15-721 (Spring 2017)

  28. 12 SKIP LISTS: SEARCH Find K3 Levels End K3<K5 ∞ K5 P=N/4 K3>K2 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N V1 V2 V3 V4 V5 V6 CMU 15-721 (Spring 2017)

  29. 12 SKIP LISTS: SEARCH Find K3 Levels End K3<K5 ∞ K5 P=N/4 K3>K2 K3<K4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N V1 V2 V3 V4 V5 V6 CMU 15-721 (Spring 2017)

  30. 12 SKIP LISTS: SEARCH Find K3 Levels End K3<K5 ∞ K5 P=N/4 K3>K2 K3<K4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N V1 V2 V3 V4 V5 V6 CMU 15-721 (Spring 2017)

  31. 13 SKIP LISTS: ADVANTAGES Uses less memory than a typical B+tree (only if you don’t include reverse pointers). Insertions and deletions do not require rebalancing. It is possible to implement a concurrent skip list using only CAS instructions. CMU 15-721 (Spring 2017)

  32. 14 CONCURRENT SKIP LIST Can implement insert and delete without locks using only CAS operations. → Only support linking in one direction CONCURRENT MAINTENANCE OF SKIP LISTS Univ. of Maryland Tech Report 1990 CMU 15-721 (Spring 2017)

  33. 15 SKIP LISTS: INSERT Insert K5 Levels End ∞ P=N/4 ∞ K2 K4 P=N/2 ∞ K1 K2 K3 K4 K6 P=N V1 V2 V3 V4 V6 CMU 15-721 (Spring 2017)

  34. 15 SKIP LISTS: INSERT Insert K5 Levels End ∞ K5 P=N/4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N V1 V2 V3 V4 V5 V6 CMU 15-721 (Spring 2017)

  35. 15 SKIP LISTS: INSERT Insert K5 Levels End ∞ K5 P=N/4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N V1 V2 V3 V4 V5 V6 CMU 15-721 (Spring 2017)

  36. 15 SKIP LISTS: INSERT Insert K5 Levels End ∞ K5 P=N/4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N V1 V2 V3 V4 V5 V6 CMU 15-721 (Spring 2017)

  37. 15 SKIP LISTS: INSERT Insert K5 Levels End ∞ K5 P=N/4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N V1 V2 V3 V4 V5 V6 CMU 15-721 (Spring 2017)

  38. 15 SKIP LISTS: INSERT Insert K5 Levels End ∞ K5 P=N/4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N V1 V2 V3 V4 V5 V6 CMU 15-721 (Spring 2017)

  39. 15 SKIP LISTS: INSERT Insert K5 Levels End ∞ K5 P=N/4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N V1 V2 V3 V4 V5 V6 CMU 15-721 (Spring 2017)

  40. 15 SKIP LISTS: INSERT Insert K5 Levels End ∞ K5 P=N/4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N V1 V2 V3 V4 V5 V6 CMU 15-721 (Spring 2017)

  41. 16 SKIP LISTS: DELETE First logically remove a key from the index by setting a flag to tell threads to ignore. Then physically remove the key once we know that no other thread is holding the reference. → Perform CaS to update the predecessor’s pointer. Source: Stephen Tu CMU 15-721 (Spring 2017)

  42. 17 SKIP LISTS: DELETE Delete K5 Levels End ∞ K5 P=N/4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N Del Del Del Del Del Del V1 V2 V3 V4 V5 V6 false false false false false false CMU 15-721 (Spring 2017)

  43. 17 SKIP LISTS: DELETE Delete K5 Levels End ∞ K5 P=N/4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N Del Del Del Del Del Del V1 V2 V3 V4 V5 V6 false false false false false false CMU 15-721 (Spring 2017)

  44. 17 SKIP LISTS: DELETE Delete K5 Levels End ∞ K5 P=N/4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N Del Del Del Del Del Del Del V1 V2 V3 V4 V5 V6 false false false false false true false CMU 15-721 (Spring 2017)

  45. 17 SKIP LISTS: DELETE Delete K5 Levels End ∞ K5 P=N/4 ∞ K2 K4 K5 P=N/2 ∞ K1 K2 K3 K4 K5 K6 P=N Del Del Del Del Del Del Del V1 V2 V3 V4 V5 V6 false false false false false true false CMU 15-721 (Spring 2017)

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