hmvfs a hybrid memory versioning file system
play

HMVFS: A Hybrid Memory Versioning File System Shengan Zheng, - PowerPoint PPT Presentation

HMVFS: A Hybrid Memory Versioning File System Shengan Zheng, Linpeng Huang, Hao Liu, Linzhu Wu, Jin Zha Department of Computer Science and Engineering Shanghai Jiao Tong University Outline Introduction Design Implementation


  1. HMVFS: A Hybrid Memory Versioning File System Shengan Zheng, Linpeng Huang, Hao Liu, Linzhu Wu, Jin Zha Department of Computer Science and Engineering Shanghai Jiao Tong University

  2. Outline • Introduction • Design • Implementation • Evaluation • Conclusion

  3. Introduction • Emerging Non-Volatile Memory (NVM) • Persistency as disk • Byte addressability as DRAM • Current file systems for NVM • PMFS, SCMFS, BPFS • Non-versioning, unable to recover old data • Hardware and software errors • Large dataset and long execution time • Fault tolerance mechanism is needed • Current versioning file systems • BTRFS, NILFS2 • Not optimized for NVM

  4. Design Goals • Strong consistency • A Stratified File System Tree (SFST) represents the snapshot of whole file system • Atomic snapshotting is ensured • Fast recovery • Almost no redo or undo overhead in recovery • High performance • Utilize the byte-addressability of NVM to update the tree metadata at the granularity of bytes • Log-structured updates to files balance the endurance of NVM • Avoid write amplification • User friendly • Snapshots are created automatically and transparently

  5. Overview • HMVFS is an NVM-friendly log-structured versioning file system • Space-efficient file system snapshotting • HMVFS decouples tree metadata from tree data • High performance and consistency guarantee • POSIX compliant

  6. Outline • Introduction • Design • Implementation • Evaluation • Conclusion

  7. On-Memory Layout • DRAM: cache and journal DRAM Segment Checkpoint Information Information Node Address Tree Cache Tree Table (NAT Cache) (CIT) Journal NVM Superblock Superblock Block Segment Node Address Tree (NAT) Checkpoint Blocks (CP) Information Information Table Table Node Blocks Data Blocks (BIT) (SIT) Auxiliary Information Main Area (SFST) Random Writes Sequential Writes • NVM: • Random write zone • Sequential write zone • File system metadata • File metadata and data • Tree metadata • Tree data

  8. Index Structure in traditional Log-structured File Systems • Update propagation problem Node Updated blocks Inode block Indirect node Metadata Data Direct block node Triple-indirect Indirect Indirect Indirect … Double-indirect node node node Indirect Inode Single-indirect node Direct pointer Direct Direct Direct Direct Direct Or … … … node node node node node Inline data … … Data Data block Data block Data block Data block Data block Data block Data block Data block Data block … … … … …

  9. Index Structure without write amplification • Node Address Table Node Updated blocks Inode block Indirect node Metadata Data Direct block node Triple-indirect Indirect Indirect Indirect … Double-indirect node node node Single-indirect Direct pointer Direct Direct Direct Direct Direct Or … … … node node node node node Inline data Node Address Table … … Node-ID Address Data … … n-1 0x38 Data block Data block Data block Data block Data block Data block Data block Data block Data block 0x73 n 0x42 … … … … … n+1 0x24 … …

  10. Index Structure for versioning • Node Address Table with the dimension of version. Node Updated blocks Inode block Indirect node Metadata Data Direct block node Triple-indirect Indirect Indirect Indirect … Double-indirect node node node Single-indirect Direct pointer Direct Direct Direct Direct Direct Or … … … node node node node node Inline data Node Address Table with Version Version1 Version2 Version3 … … Node-ID Address Address Address Data … … … … n-1 0x14 0x38 0x38 Data block Data block Data block Data block Data block Data block Data block Data block Data block n 0x42 0x42 0x73 … … … … … n+1 0x24 0x24 0x24 … … … …

  11. How to store different trees space-efficiently Original New Node Address Tree NAT NAT • Node Address Tree (NAT) root root • A four-level B-tree to store multi-version Node Address NAT NAT NAT … Table space-efficiently internal internal internal • Adopt the idea of CoW friendly B-tree NAT NAT NAT NAT … … internal internal • NAT leaves contain NodeID-address pairs internal internal • Other tree blocks in NAT contain pointers to lower level NAT NAT NAT NAT …… … leaf leaf leaf leaf blocks. Node P,1 P,0 P,1 Q,1 Q,1 Indirect Direct Direct Inode node node node E,1 F,1 E,2 F,1 E,1 F,0 F',1 F',1 A,1 B,1 C,1 D,1 A,1 B,1 C,2 D,1 D',1 A,1 B,1 C,1 D,0 D',1

  12. Original snapshot New snapshot Checkpoint CP CP Stratified File System Tree (SFST) block block Node Address Tree NAT NAT • Four different categories of blocks: root root • Checkpoint layer NAT NAT NAT … internal internal internal • Node Address Tree (NAT) layer • Node layer NAT NAT NAT NAT … … internal internal internal internal • Data layer • All blocks from SFST are stored in the main area with NAT NAT NAT NAT …… … leaf leaf leaf leaf log-structured writes Node • Balance the endurance of NVM media Indirect Direct Direct Inode node node node • Each SFST represents a valid snapshot of file system • Share overlapped blocks to achieve space-efficiency Data Data block Data block Data block Data block Data block Data block … …

  13. Original snapshot New snapshot Checkpoint CP CP Stratified File System Tree (SFST) block block Node Address Tree NAT NAT • The metadata of SFST root root • In auxiliary information zone NAT NAT NAT • Random write updates … internal internal internal • Segment Information Table (SIT) NAT NAT NAT NAT … … • Contains the status information of every segment internal internal internal internal • Block Information Table (BIT) NAT NAT NAT NAT …… … leaf leaf leaf leaf • Keeps the information of every block • Update precisely at variable bytes granularity Node • Contains: Indirect Direct Direct Inode node node node • Start and end version number • Block type Data Data block Data block Data block Data block Data block Data block • Node ID … … • Reference count

  14. Garbage Collection in HMVFS • Move all the valid blocks in the victim segment to the current segment • When finished, update SIT and create a snapshot • Handle block sharing problem Version 1 Version 2 Version 3 Version 4 NAT NAT NAT NAT block block block block Segment A Segment B Node Node Node Node Node Block Block Block Block Block 1 2 2 2 2

  15. Outline • Introduction • Design • Implementation • Evaluation • Conclusion

  16. Block Information Table (BIT) • Block sharing problem • The corresponding pointer in the parent block must be updated if a new child block is written in the main area • Node ID and block type • Used to locate parent node Type of the block Type of the parent Node ID Checkpoint N/A N/A NAT internal NAT internal Index code in NAT NAT leaf Inode Indirect NAT leaf Node ID Direct Data Inode or direct Node ID of parent node

  17. Block Information Table (BIT) • Start and end version number • The first and last versions in which the block is valid • Operations like write and delete set these two variables to the current version number • Reference count • The number of parent nodes which are linked to the block • Update with lazy reference counting • File level operations and snapshot level operations update the reference count • If the count reaches zero, the block will become garbage

  18. Original snapshot New snapshot Checkpoint CP Super CP Snapshot Creation block Block block Node Address Tree NAT NAT • Strong consistency is guaranteed root root • Flush dirty NAT entries from DRAM to form a new NAT NAT NAT … internal internal internal Node Address Tree • Follow the bottom-up procedure NAT NAT NAT NAT … … internal internal internal internal • Status information are stored in checkpoint block NAT NAT NAT NAT … … • Space-efficient snapshot leaf leaf leaf leaf • The atomicity of snapshot creation is ensured Node Indirect Direct Direct • Atomic update to the pointer in superblock to announce Inode node node node the validity of the new snapshot Data • Crash during snapshot creation can be recovered by Data block Data block Data block Data block Data block Data block … … undo or redo depend on the validity

  19. Snapshot Deletion • Deletion starts from the checkpoint block • Checkpoint cache is stored in DRAM • Follows the top-down procedure to decrease reference counts • Consistency is ensured by journaling • Call garbage collection afterwards • Many reference counts have decreased to zero P,0 P,1 Q,1 Q,1 E,1 F,0 F',1 E,2 F,1 F',1 A,1 B,1 C,1 D,0 D',1 A,1 B,1 C,2 D,1 D',1

  20. Crash Recovery • Mount the writable last completed snapshot • No additional recovery overhead • Mount the read-only old snapshots • Locate the checkpoint block of the snapshot • Retrieve files via SFST Superblock Checkpoint Checkpoint Checkpoint Checkpoint NAT root NAT root NAT root NAT root … … … …

  21. Outline • Introduction • Design • Implementation • Evaluation • Conclusion

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