|
|
|
|
|
by georgeaf99
2942 days ago
|
|
Simon Peter, at UT Austin, has been working on a file system that works better for systems with NVM. It looks like existing file systems (e.g. EXT4) are going to suck in this new paradigm (DRAM -> NVM -> SSD) . It’s a pretty interesting read and the benchmarks are damn impressive. https://www.cs.utexas.edu/~simon/sosp17-final207.pdf |
|
There's been a lot of interesting research around file systems for persistent memory.
One that shows a lot of promise is NOVA [0]. Its focus is on making full us on this new type of memory. And it's not just pure research, they are attempting to get NOVA included into Linux kernel [1, 2].
And while talking about file systems, we shouldn't forget about the effort that was put into modifying the existing ones to support DAX (Direct Access) [3, 4].
[0] - http://nvsl.ucsd.edu/index.php?path=projects/nova
[1] - https://lwn.net/Articles/729812/
[2] - https://lkml.org/lkml/2017/8/5/188
[3] - https://lwn.net/Articles/717953/
[4] - https://lwn.net/Articles/731706/