pawe lebioda tomasz kapela agenda
play

Pawe Lebioda, Tomasz Kapela Agenda Introduction: Tutorial: - PowerPoint PPT Presentation

Pawe Lebioda, Tomasz Kapela Agenda Introduction: Tutorial: Persistent Memory Kernel support NVML NVML overview PMEMCHECK libpmem libpmemblk libpmemobj C API libpmemobj C++ API PMEMCHECK


  1. Paweł Lebioda, Tomasz Kapela

  2. Agenda Introduction: Tutorial: Persistent Memory Kernel support • • NVML NVML overview • • PMEMCHECK libpmem • • libpmemblk • libpmemobj C API • libpmemobj C++ API • PMEMCHECK • 2

  3. Just a little bit of theory...

  4. What is it ?

  5. Persistent Memory What is Persistent Memory ?  Non-volatile  Retains data without power  Byte addressable  Load/Store access  Memory-like performance  DMA-able  NVDIMM 5

  6. Persistent Memory use cases  Block storage  Volatile Memory  Persistent Memory aware filesystem  Persistent Memory aware applications 6

  7. Persistent Memory characteristics  Stores are not durable  The data must be flushed  8-byte atomicity  Virtual address may change 7

  8. Persistent Memory kernel support  NVDIMM subsystem  DAX (Direct Access)  ndctl – github.com/pmem/ndctl  DAX support in ext2, ext4, xfs 8

  9. Non-Volatile Memory Libraries https://github.com/pmem/nvml

  10. Persistent Memory Programming Model 10

  11. NVML introduction  Set of user-space libraries  PMEM-aware applications  Source code on github - github.com/pmem/nvml  BSD license  Web page - pmem.io  Distros (Fedora, openSUSE) 11

  12. NVML libraries Library Description libvmem Volatile memory allocator libvmmalloc malloc() replacement using libvmem libpmem Low-level support for persistence libpmemlog Append only log structure libpmemblk Atomic access to memory blocks libpmemobj Transactional object store libpmempool Managing library 12

  13. „In theory, theory and practice are the same. In practice, they are not” Albert Einstein

  14. How to configure my Linux OS for persistent memory ?

  15. Kernel support  Kernel config: NVDIMM, DAX  Persistent memory emulation: – http://pmem.io/2016/02/22/pm-emulation.html – X86_PMEM_LEGACY – Memmap=<size>!<offset>  Create filesystem  Mount with DAX 15

  16. Persistent Memory configuration 16

  17. Quick insight into source tree

  18. NVML overview  Source tree organization  Building  Running tests  Examples  Packages 18

  19. NVML packages 19

  20. Low level persistent memory support

  21. libpmem examples  How to check if memory is Persistent Memory ?  How to access Persistent Memory ?  Debug library and log messages  How to make memory persistent ?  Running examples under Valgrind pmemcheck 21

  22. How to check if memory is Persistent Memory ? 22

  23. How to access Persistent Memory ? 23

  24. Running pmem_is_pmem example 24

  25. libpmem: turning on log messages 25

  26. libpmem: pmem_persist - 1 26

  27. libpmem: pmem_persist - 2 27

  28. Persistent Memory aware tool for Valgrind github.com/pmem/valgrind

  29. PMEMCHECK  Valgrind tool  Need to build nvml with special flags  Checks correctness of persistent memory usage  Checking data persistence  Support for transactions (libpmemobj)  NVML: make EXTRA_CFLAGS=-DUSE_VALGRIND 29

  30. libpmem: valgrind support 30

  31. libpmem: pmem_persist + valgrind pmemcheck 31

  32. libpmem: pmem_persist - 2 32

  33. Persistent Memory pools utils

  34. pmempool: available commands 34

  35. Persistent Memory resident array of blocks

  36. Libpmemblk: examples  Pmempool introduction  Creating pmemblk pool with pmempool  Opening pmemblk pool  Reading pool parameters  Reading and writing blocks 36

  37. pmempool: create command 37

  38. Opening pmemblk pool 38

  39. Reading and writing block 39

  40. libpmempool: running example 40

  41. Persistent Memory Transactional Object Store

  42. libpmemobj  Creating pmemobj pool with pmempool  Opening pmemobj pool  PMEMoid – persistent memory pointer  Root object  Allocations 42

  43. Libpmemobj: simple example  Application which stores list of people  Stores first and last name  Constant size array 43

  44. Data structures 44

  45. Main function 45

  46. List of people 46

  47. Insert function - 1 47

  48. Insert function - 2 48

  49. Object’s constructor 49

  50. Clear function 50

  51. Recovery 51

  52. Running example 52

  53. Missing persist 53

  54. Valgrind pmemcheck 54

  55. libpmemobj: type safety macros  PMEMoid as void *  Type safety macros for convenience  No need to track persistent and volatile pointers 55

  56. Type safety macros: data structures 56

  57. Type safety macros: insert function 57

  58. Type safety macros: clear function 58

  59. libpmemobj: foreach macros  API for traversing through all objects  Foreach object per type  Useful for recovery actions  Avoids persistent memory leaks 59

  60. Foreach type macro 60

  61. libpmemobj: atomic lists API  Circular doubly linked list  Atomic operations  sys/queue – like API  Useful for hybrid persistent-volatile data structures 61

  62. atomic lists API: data structures 62

  63. Atomic lists API: insert function 63

  64. Atomic lists: clear function 64

  65. Atomic lists API: listing people 65

  66. Atomic lists API: recovery 66

  67. libpmemobj: transactions  Most generic API  No need for recovery  Convenient macros  Operations: – Alloc – Free – Modify 67

  68. Transactions: data structures 68

  69. Transactions: insert function 69

  70. Transactions: entry initialization 70

  71. Transactions: inserting elements 71

  72. Transactions: clear function 72

  73. Transactions: listing people 73

  74. Transactions: valgrind pmemcheck 74

  75. Transactions: valgrind pmemcheck 75

  76. C++ API  Using language features  Overloading operators  Hiding required operations  Scope transactions  Lambda 76

  77. C++ API: main function 77

  78. C++ API: list of people class 78

  79. C++ API: listing people 79

  80. C++ API: insert function 80

  81. C++ API: clear function 81

  82. C++ API: list entry class 82

  83. C++ API: persistent string 83

  84. C++ API: valgrind pmemcheck 84

  85. C++ API: valgrind pmemcheck - 1 85

  86. C++ API: valgrind pmemcheck - 2 86

  87. C++ STL  STL allocator concept for libpmemobj  Using STL containers  Need some changes in std libraries 87

  88. C++ STL: list of people class 88

  89. C++ STL: list entry class 89

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