Parallel and Distributed Systems Group

Computer Science Department of Telecom SudParis

Pronto: Easy and Fast Persistence for Volatile Data Structures

Reading group: Kwabena Amponsem Boateng presented "Pronto: Easy and Fast Persistence for Volatile Data Structures" (ASPLOS'20) in visio the 18/12/2020 at 10h00.

You can find the video of the presentation here.

Abstract

Non-Volatile Main Memories (NVMMs) promise an opportunity for fast, persistent data structures. However, building these data structures is hard because their data must be consistent in the wake of a failure. Existing methods for building persistent data structures require either in-depth code changes to an existing data structure using an NVMM-aware library or rewriting the data structure from scratch. Unfortunately, both of these methods are labor-intensive and error-prone. Pronto is a new NVMM library that reduces the programming effort required to add persistence to volatile data structures using asynchronous semantic logging (ASL). ASL is generic enough to allow programmers to add persistence to the existing volatile data structure (e.g., C++ Standard Template Library containers) with very little programming effort. Furthermore, ASL moves most durability code off the critical path, and our evaluation shows Pronto data structures outperform highly-optimized NVMM data structures written with other libraries by a large margin.