TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Is there any need for new file systems or GTFO we are full?

2 pointsby kokojumboover 2 years ago
Is ReiserFS, ZFS, btrfs, F2FS and more well know systems already enough/too much or there are areas (big enough to actually bother) where they not quite cut the edge?

5 comments

anenefanover 2 years ago
Specialist file systems will keep emerging for various reasons such as accommodating new hardware better or for secretive purposes. No doubt continued efforts are simply to make a better mouse trap, like addressing shortcomings eg speed or less load on a drive or making recovery of data when things inevitably go pear shaped ... more optimistic, either by ensuring it doesn't get borked in the first place or actually providing something a tool can work with.
prirunover 2 years ago
One feature I wish filesystems had is transaction support, ie:<p><pre><code> begin transaction create file X if it doesn&#x27;t exist, otherwise abort transaction write some stuff to file X open file Y overwrite some data in file Y if &lt;insert condition here&gt; commit transaction end transaction </code></pre> Nested transactions would be required as you&#x27;d have no idea whether you&#x27;re already in a transaction.<p>Something like this can be coded (painfully) with renames, but it&#x27;s unreliable, hard to test, and hard&#x2F;impossible to coordinate with higher-level modules.
评论 #34510410 未加载
评论 #34516162 未加载
jolmgover 2 years ago
Wonder if LTFS satisfies all needs for LTO tapes. It seems to be the only FS that storage medium currently has.<p>There&#x27;s also all sorts of FSes that aren&#x27;t based on hardware, like eCryptFS&#x2F;EncFS for encrypted directories, s3fs for using AWS S3 as an FS, sshfs for remotely mounting a directory from another machine, btfs for mounting a bittorrent as an FS. The number of things that can be done as an FS seems almost boundless.
wstuartclover 2 years ago
There is always room for new ideas in filesystems. The question is are those new ideas good enough to pull eyeballs and bits? Even if the ideas are great, between the complexity of filesystems, risk associated with them and deployment of them -- the most likely &quot;successful&quot; new filesystems would be backed by a large player in the OS space.<p>revision control systems are littered with filesystem projects that have died on the tree.
PaulHouleover 2 years ago
As an individual or professional I am not excited by new filesystems if there is any risk of data loss at all.
评论 #34518943 未加载