nvm ove helping programmers move to byte based persistence
play

NVM OVE: Helping Programmers Move to Byte-based Persistence NVMOVE - PowerPoint PPT Presentation

NVM OVE: Helping Programmers Move to Byte-based Persistence NVMOVE Himanshu Chauhan with Irina Calciu, Vijay Chidambaram, Eric Schkufza, Onur Mutlu, Pratap Subrahmanyam Fast, but volatile. Cache DRAM Critical Performance Gap Persistent,


  1. NVM OVE: Helping Programmers Move to Byte-based Persistence NVMOVE Himanshu Chauhan with Irina Calciu, Vijay Chidambaram, Eric Schkufza, Onur Mutlu, Pratap Subrahmanyam

  2. Fast, but volatile. Cache DRAM Critical Performance Gap Persistent, SSD but slow. Hard Disk

  3. Fast, but volatile. Cache DRAM Fast, and persistent. Non-Volatile Memory Persistent, SSD but slow. Hard Disk

  4. Cache DRAM SSD Hard Disk

  5. Persistent Programs typedef struct { } node 1. allocate from memory 2. data read/write + program logic 3. save to storage

  6. Persistence Today In-memory binary search tree Serialization Flat Buffer sprintf(buf, “%d:%s”, node->id, node->value) write(fd, buf, sizeof(buf)) File fsync(fd) Block-sized Writes Block-based Storage

  7. Persistence with NVM Ideal Persistence on NVM In-memory binary search tree node->id = 10 pmemcopy(node->value, myvalue) pmemobj_persist(node) Byte-sized Writes Byte-based NVM

  8. Changing Persistence Code Present NVM /* allocate from non-volatile memory*/ /* allocate from volatile memory*/ node n* = pmalloc(sizeof(…)) node n* = malloc(sizeof(…)) node->value = val //persistent node->value = val //volatile update update … … /* persist to block-storage*/ /* flush cache and commit*/ char *buf= malloc(sizeof(…)); __cache_flush + __commit int fd = open("data.db",O_WRITE); sprintf(buf,"…", node->id, node->value); write(fd, buf, sizeof(buf));

  9. Porting to NVM: Tedious • Identify data structures that should be on NVM • Update them in a consistent manner Redis: simple key-value store (~50K LOC) - Industrial effort to port Redis is on-going after two years - Open-source effort to port Redis has minimum functionality

  10. Changing Persistence Code Present NVM /* allocate from non-volatile memory*/ /* allocate from volatile memory*/ node n* = pmalloc(sizeof(…)) node n* = malloc(sizeof(…)) node->value = val //persistent node->value = val //volatile update update … … /* persist to block-storage*/ /* flush cache and commit*/ char *buf= malloc(sizeof(…)); __cache_flush + __commit int fd = open("data.db",O_WRITE); sprintf(buf,"…", node->id, node->value); write(fd, buf, sizeof(buf));

  11. Goal: Port existing applications to NVM with minimal programmer involvement.

  12. By Kiko Alario Salom [CC BY 2.0 (http://creativecommons.org/licenses/by/2.0)], via Wikimedia Commons

  13. Persistent Types in Source User defined source types (structs in C) that are persisted to block-storage. Application Code Block Storage

  14. First Step: Identify persistent types in application source.

  15. Solution: Static Analysis

  16. Current Focus: C types = structs

  17. Application Code write system call Block Storage

  18. node node *n = malloc(sizeof(node)) iter *it = malloc(sizeof(iter)) /* persist to block-storage*/ char *buf= malloc(…)) int fd = open(…) write system call sprintf(buf,”…”,node->value) write(fd, buf, …)

  19. node node *n = malloc(sizeof(node)) iter *it = malloc(sizeof(iter)) /* persist to block-storage*/ char *buf= malloc(…)) int fd = open(…) write system call sprintf(buf,”…”,node->value) write(fd, buf, …)

  20. node node *n = malloc(sizeof(node)) iter iter *it = malloc(sizeof(iter)) /* persist to block-storage*/ char *buf= malloc(…)) int fd = open(…) write system call sprintf(buf,”…”,node->value) write(fd, buf, …)

  21. node /* write to network socket*/ … write(socket, “404”, …) /* write to error stream*/ … write(stderr, “All is lost.”, …) /* persist to block-storage*/ write system call … write(fd, buf, …) Pipe Storage Network

  22. node Save to block-storage Block Storage

  23. node Save to block-storage Load/recover Block Storage

  24. “rdbLoad” is the load/recovery function.

  25. Mark every type that can be created during the recovery. *if defined in application source.

  26. Call Graph from Load rdbLoad external library

  27. BFS on Call Graph from Load rdbLoad external library

  28. BFS on Call Graph from Load Application type created/modified external library

  29. NVMov E Implementation • Clang - Frontend Parsing • Parse AST and Generate Call Graph - Find all statements that create/modify ap plication types in graph • Currently supports C applications

  30. Evaluation

  31. • In-memory data structure store - strings, hashes, lists, sets, indexes • On-disk persistence — data-snapshots(RDB), — command-logging (AOF) • ~50K lines-of-code

  32. Identification Accuracy 122 types (structs) in Redis Source

  33. Identification Accuracy

  34. Identification Accuracy

  35. Identification Accuracy Total types 122 NVM OVE identified persistent types 25 True positives (manually identified) 14 False positives 11 False negatives 0

  36. Performance Impact

  37. Redis Persistence Snapshot (RDB) Logging (AOF) • Data snapshot per • Append each update second command to a file • Not fully durable • Slow Both performed by forked background process.

  38. NVM Emulation • Emulate allocation of NVMov E identified types on NVM heap - Slow and Fast NVM - Inject delays for load/store of all NVM allocated types. - Worst-case performance estimate. • Compare emulated NVM throughput against logging, and snapshot based persistence.

  39. YCSB Benchmark Results write-heavy (90% updated, 10% read ops) in-memory (=1.0) 0.98 Fraction of in-memory Possible Data loss throughput 111 MB 0.45 0.36 0.24 0.11 Logging (disk) Logging (ssd) NVM (slow) NVM (fast) Snapshot (ssd)

  40. Performance without False-Positives Slow 1.04x NVM Fast 1.49x NVM 1.0 Speedup in throughput

  41. First Step: Identify persistent types in application source.

  42. Next steps: • Improve identification accuracy. • Evaluate on other applications.

  43. Backup

  44. Throughputs (ops/sec) readheavy balance writeheavy PCM 28399 25,302 9759 STTRam 41213 38,048 12155 AoF (disk) 15634 6,457 2868 AoF (SSD) 27946 17,612 6605 RDB 46355 47,609 26605 Memory 50163 48,360 27156

  45. NVM Emulation Read Cache-line PCOMMIT Latency Flush Latency Latency STT-RAM 100 ns 40 ns 200 ns (Fast NVM) PCM 300 ns 40 ns 500 ns (Slow NVM) *Xu & Swanson, NOVA: A Log-structured File System for Hybrid Volatile/Non-volatile Main Memories, FAST16.

  46. YCSB Benchmark Results in-memory (=1.0) Fraction of in-memory throughput PCM STT AOF AOF RDB PCM STT AOF AOF RDB PCM STT AOF AOF RDB (disk) (ssd) (disk) (ssd) (disk) (ssd) NVM read-heavy

  47. YCSB Benchmark Results in-memory (=1.0) Fraction of in-memory throughput PCM STT AOF AOF RDB PCM STT AOF AOF RDB PCM STT AOF AOF RDB (disk) (ssd) (disk) (ssd) (disk) (ssd) NVM NVM read-heavy balanced

  48. YCSB Benchmark Results in-memory (=1.0) Fraction of in-memory throughput PCM STT AOF AOF RDB PCM STT AOF AOF RDB PCM STT AOF AOF RDB (disk) (ssd) (disk) (ssd) (disk) (ssd) NVM NVM NVM read-heavy balanced write-heavy

  49. RDB Data Loss 111 MB 42 MB 26 MB read-heavy balanced write-heavy

  50. Performance without False-Positives 1.49x Speedup in throughput 1.15x 1.13x 1.09x 1.03x 1.04x 1.0 PCM PCM STT AOF AOF RDB PCM STT AOF AOF RDB STT (disk) (ssd) (disk) (disk) (ssd) (disk) STT STT STT PCM PCM PCM read-heavy balanced write-heavy

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