big and fast
play

Big and Fast Anti-Caching in OLTP Systems Justin DeBrabant Online - PowerPoint PPT Presentation

Big and Fast Anti-Caching in OLTP Systems Justin DeBrabant Online Transaction Processing transaction-oriented small footprint write-intensive 2 A bit of history 3 OLTP Through the Years relational model rise of the web


  1. Big and Fast 
 Anti-Caching in OLTP Systems Justin DeBrabant

  2. Online Transaction Processing transaction-oriented small footprint write-intensive 2

  3. A bit of history… 3

  4. OLTP Through the Years relational model rise of the web Ingres/System R “end of an era” OLAP 2015 1972 1993 4

  5. Modern OLTP Requirements 1. web-scale (big) 2. high-throughput (fast) 5

  6. Thesis Motivation ▸ traditional disk-based architectures aren’t fast enough ▸ newer main memory architectures aren’t big enough 6

  7. Can we have main- memory performance for larger-than-memory datasets? 7

  8. Thesis Overview: Contributions 1. anti-caching architecture larger than memory datasets in main ‣ memory DBMS 2. anti-caching + persistent memory exploring next-generation hardware and ‣ OLTP systems 8

  9. Outline ▸ Introduction ▸ Overview and Motivation ▸ Anti-Caching Architecture ▸ Memory Optimizations ▸ Anti-Caching on NVM ▸ Future Work and Conclusions 9

  10. Disk-Oriented Architectures ▸ assumption: data won’t fit in memory ▸ disk-resident data, main memory buffer pool for execution ▸ concurrency is a must ▸ transaction serialization and locks 10

  11. Memory Costs 1E+10 price per GB ($) 1E+05 1E+00 1970 1973 1976 1979 1982 1985 1988 1991 1994 1997 2000 2003 2006 2009 2012 11

  12. Now What? 1. DBMS buffer pool 2. distributed cache 3. in-memory DBMS 12

  13. Buffer Pool ▸ must still… ‣ maintain buffer pool ‣ lock/latch data ‣ maintain ARIES-style recovery logs ▸ question: What is the overhead of all these things? 13

  14. Buffer Pool 31% Locking Recovery Real Work 26% 31% 12% OLTP Through the Looking Glass, and What We Found There 
 SIGMOD ‘08 14

  15. Now What? 1. DBMS buffer pool 2. distributed cache 3. in-memory DBMS 15

  16. Cache Layer Persistence Layer 16

  17. Main Memory Cache ▸ fast and scalable, but… ▸ key-value interface ▸ not ACID (AI, not CD) 17

  18. Consistency and Durability ▸ reads are easy, writes are not ▸ multiple copies of data ▸ application’s responsibility ▸ for OLTP, writes are common and consistency is essential 18

  19. Now What? 1. DBMS buffer pool 2. distributed cache 3. in-memory DBMS 19

  20. 20

  21. H-Store Architecture ▸ partitioned, shared-nothing ▸ single-threaded main memory execution ‣ no need for locks and latches ▸ lightweight recovery ‣ snapshots + command log 21

  22. 22

  23. virtual memory! data > memory? 23

  24. persistent storage 24

  25. Big and Fast big: disk-oriented fast: memory-oriented big and fast: anti-caching 25

  26. OLTP workloads are skewed 26

  27. Design Principles ▸ asynchronous disk fetches ‣ don’t block ▸ maintain ordering of evicted data accesses ‣ ensures transactional consistency ▸ single copy of data ‣ consistency is free ▸ efficient memory use, no swizzling 27

  28. Outline ▸ Introduction ▸ Overview and Motivation ▸ Anti-Caching Architecture ▸ Memory Optimizations ▸ Anti-Caching on NVM ▸ Future Work and Conclusions 28

  29. Architectural Overview ▸ memory is primary storage, cold data is evicted to disk-based anti- cache ▸ reading data from the anti-cache is done in 3 phases ‣ avoids blocking, ensures consistency 29

  30. Anti-Caching Phases ▸ evict ▸ pre-pass ▸ fetch ▸ merge 30

  31. Evict 1. data > anti-cache threshold 2. dynamically construct anti- cache blocks of coldest tuples 3. asynchronously write to disk 31

  32. Pre-Pass 1. a transaction enters pre-pass when evicted data is accessed 2. continues execution, creating list of evicted blocks 3. abort, queue blocks to be fetched 32

  33. Fetch 1. data is fetched asynchronously from disk ‣ avoids blocking 2. moved into merge buffer 33

  34. Merge 1. data is moved from in-memory merge buffer to in-memory table 2. previously aborted transaction is restarted 3. transaction executes normally 34

  35. Anti-Caching Phase: Pre-Pass Anti-Caching Phase: Merge Anti-Caching Phase: Fetch Anti-Caching Phase: Evict anti-cache

  36. Tracking Access Patterns ▸ done online, more responsive to changes in workload ▸ goal is low CPU and memory overhead ▸ approximate ordering is OK 36

  37. Approximate LRU (aLRU) ▸ maintain LRU chain embedded in tuple headers ▸ per-partition ▸ transactions that update LRU chain are sampled randomly ▸ configurable sample rate 37

  38. Anti-Caching vs. Swapping ▸ fine-grained eviction ▸ blocks constructed dynamically ▸ asynchronous batched fetches ▸ possible because of transactions 38

  39. Anti-Caching vs. Caching ▸ data exists in exactly one location ‣ caching architectures have multiple copies, must maintain consistency ‣ data is moved, not copied ▸ goal is increased data size, not throughput 39

  40. Benchmarking ▸ YCSB ▸ Zipfian skew ▸ data > memory ▸ read/write mix ▸ MySQL, MySQL + memcached 40

  41. YCSB, read-only, data 8X memory anti-cache MySQL MySQL + memcached 120000 throughput (txn/s) 90000 60000 30000 0 1.5 1.25 1 0.75 0.5 workload skew (high —> low) 41

  42. YCSB, read-heavy, data 8X memory anti-cache MySQL MySQL + memcached 120000 throughput (txn/s) 90000 60000 30000 0 1.5 1.25 1 0.75 0.5 workload skew (high —> low) 42

  43. Tracking Accesses Revisited ▸ approximate ordering is OK ▸ original implementation ▸ aLRU (linked list) ▸ compute vs. memory Can we reduce the memory overhead? 43

  44. Timestamp-Based Eviction ▸ use relative timestamps to track accesses ▸ to evict, take subset of tuples and evict based on timestamp age ▸ questions: ▸ timestamp granularity ▸ sample size (power of two) 44

  45. Timestamp Granularity ▸ 4 byte timestamps ▸ use instruction counter ▸ 2 byte timestamps ▸ use epochs, set the timestamp to the current epoch 45

  46. YCSB, read-heavy, data 8X aLRU chain timestamp-low timestamp-high 90000 throughput (txn/s) 67500 45000 22500 0 1.5 1.25 1 0.75 0.5 workload skew (high —> low) 46

  47. Key Take-Aways ▸ 8-17X improvement for skewed workloads at larger- than-memory data sizes ▸ disk becomes the bottleneck for lower skew 47

  48. Hardware Assumptions are Key ▸ heavily influence system architectures ▸ many factors ▸ capacity ▸ latency ▸ volatility 48

  49. What’s next for OLTP? 49

  50. Non-Volatile Memory 50

  51. Properties of NVM ▸ non-volatile ▸ random-access ▸ high write endurance ‣ except flash ▸ byte-addressable ‣ except flash 51

  52. The NVM Arms Race ▸ FeRAM ‣ high write endurance ▸ MRAM ‣ DRAM-like latency ▸ PCM (PRAM) ‣ DRAM-like capacity 52

  53. Looking Forward… ▸ OLTP architectures and NVM ‣ anti-cache architecture ‣ disk-based architecture ▸ open questions ‣ Which architecture is best suited for NVM? ‣ What adaptations are needed? 53

  54. NVM Emulation ▸ goal: provide product-independent analysis ▸ test wide range of latency profiles ▸ automatically add specified latency ▸ built by collaborators at Intel 54

  55. Anti-Caching on NVM ▸ replace disk with NVM ▸ several adaptations necessary ▸ lightweight array-based anti-cache ▸ utilizes mmap interface ▸ fine-grained block and tuple eviction interface 55

  56. Disk-Oriented Architectures on NVM ▸ must adapt both storage and log files to be use NVM mmap interface ▸ configure to use fine-grained buffer pool pages 56

  57. YCSB, read-only, data 8X anti-caching MySQL 180000 throughput (txn/s) 135000 90000 45000 0 1.5 1.25 1 0.75 0.5 workload skew (high —> low) 57

  58. YCSB, read-heavy, data 8X anti-caching MySQL 180000 throughput (txn/s) 135000 90000 45000 0 1.5 1.25 1 0.75 0.5 workload skew (high —> low) 58

  59. Future Work 59

  60. Multi-Tier Architectures ▸ DRAM -> NVM -> Disk/SSD ▸ open questions ▸ indexing structures ▸ synchronous/asynchronous fetches 60

  61. Anti-Caching Indexes ▸ index size can be significant ▸ can cold index ranges be evicted to an anti-cache? ▸ open questions ▸ how/what to evict ▸ execution changes 61

  62. Semantic Anti-Caching ▸ current implementation makes no assumption about types of skew ▸ skew typically as semantic meaning ▸ e.g., temporal, spatial ▸ can we leverage these domain semantics? 62

  63. Conclusions ▸ anti-caching architecture outperforms and outscales previous OLTP architectures ▸ well-suited for next-generation NVM- based architectures 63

  64. 64

  65. 
 Questions? 
 debrabant@cs.brown.edu 
 65

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