There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

UnfortunateShort ,

Bruh, you can’t just submit entirely new data structures as “fixes”, let alone past the merge window.

It should not be hard at all to grasp that.

jaxxed ,

Kent developed for like 10 years on his own. He’s just having a hard time learning how to play with others, and deal with large priority cycles. He just needs to know that sometime his changes will get pushed to the next cycle.

AbidanYre ,

I was interested in bcachefs years ago, but Kent seems to keep shooting himself in the foot when it comes to getting any traction with it.

solrize ,

Can someone say why bcachefs is interesting? Btrfs I can sort of understand. I haven’t much kept track of most others.

DaPorkchop_ ,

bcachefs is way more flexible than btrfs on multi-device filesystems. You can group storage devices together based on performance/capacity/whatever else, and then do funky things like assigning a group of SSDs as a write-through/write-back cache for a bigger array of HDDs. You can also configure a ton of properties for individual files or directories, including the cache+main storage group, amount of data replicas, compression type, and quite a bit more.

So you could have two files in the same folder, one of them stored compressed on an array of HDDs in RAID10 and the other one stored on a different array of HDDs uncompressed in RAID5 with a write-back SSD cache, and wouldn’t have to fiddle around with multiple filesystems and bind mounts - everything can be configured by simply setting xattr values. You could even have a third file which is striped across both groups of HDDs without having to partition them up.

NeoNachtwaechter ,

two files in the same folder, one of them stored compressed on an array of HDDs in RAID10 and the other one stored on a different array […]

Now that’s what I call serious over-engineering.

Who in the world wants to use that?

And does that developer maybe have some spare time? /s

semperverus ,
@semperverus@lemmy.world avatar

This probably meets some extreme corporate usecase where they are serving millions of customers.

NeoNachtwaechter ,

My company serves millions, too. We don’t have such needs.

DaPorkchop_ ,

It’s not that obscure - I had a use case a while back where I had multiple rocksdb instances running on the same machine and wanted each of them to store their WAL only on SSD storage with compression and have the main tables be stored uncompressed on an HDD array with write-through SSD cache (ideally using the same set of SSDs for cost). I eventually did it, but it required partitioning the SSDs in half, using one half for a bcache (not bcachefs) in front of the HDDs and then using the other half of the SSDs to create a compressed filesystem which I then created subdirectories on and bind mounted each into the corresponding rocksdb database.

Yes, it works, but it’s also ugly as sin and the SSD allocation between the cache and the WAL storage is also fixed (I’d like to use as much space as possible for caching). This would be just a few simple commands using bcachefs, and would also be completely transparent once configured (no messing around with dozens of fstab entries or bind mounts).

pimeys ,

I mean… If you have a ton of raw photos in one directory, you can enable the highest compression rate with zstd to it. Every other directory has lz4 with the fastest compression. Your pics take much less space, but the directory will be slower to read and write.

apt_install_coffee ,

This is actually a feature that enterprise SAN solutions have had for a while, being able choose your level of redundancy & performance at a file level is extremely useful for minimising downtime and not replicating ephemeral data.

Most filesystem features are not for the average user who has their data replicated in a cloud service; they’re for businesses where this flexibility saves a lot of money.

mrddu3at2 ,

Thank you. w o w

ryannathans ,

Sounds like zfs with extra steps

that_leaflet ,
@that_leaflet@lemmy.world avatar

But is GPL-compatible license, unlike ZFS.

nous ,

bcachefs is meant to be more reliable than btrfs - which has had issues with since it was released (especially in the early days). Though bcachefs has yet to be proven at scale that it can beat btrfs at that.

Bcachefs also supports more features I believe - like encryption. No need for an extra layer below the filesystem to get the benefits of encryption. Much like compression that also happens on both btrfs and bcachefs.

Btrfs also has issues with certain raid configurations, I don’t think it yet has support for raid 5/6 like setup and it has promised that for - um, well maybe a decade already? and I still have not heard any signs of it making any progress on that front. Though bcachefs also still has this on their wishlist - but I see more hope for them getting it before btrfs which seems to have given up on that feature.

Bcachefs also claims to have a cleaner codebase than btrfs.

Though bcachefs is still very new so we will see how true some of its claims will end up being. But if true it does seem like the more interesting filesystem overall.

apt_install_coffee ,

In addition to the comment on the mentioned better hardware flexibility, I’ve seen really interesting features like defining compression & deduplication in a granular way, even to the point of having a compression algo when you first write data, and then a different more expensive one when your computer is idle.

ikidd ,
@ikidd@lemmy.world avatar

Also because it’s meant to be an enterprise level filesystem like ZFS, but without the licensing baggage. They share a lot of feature sets.

pimeys ,

For me the reason was that I wanted encryption, raid1 and compression with a mainlined filesystem to my workstation. Btrfs doesn’t have encryption, so you need to do it with luks to an mdadm raid, and build btrfs on top of that. Luks on mdadm raid is known to be slow, and in general not a great idea.

ZFS has raid levels, encryption and compression, but doesn’t have fsck. So you better have an UPS for your workstation for electric outages. If you do not unmount a ZFS volume cleanly, there’s a risk of data loss. ZFS also has a weird license, so you will never get it with mainline Linux kernel. And if you install the module separately, you’re not able to update to the latest kernel before ZFS supports it.

Bcachefs has all of this. And it’s supposed to be faster than ZFS and btrfs. In a few years it can really be the golden Linux filesystem recommended for everybody. I sure hope Kent gets some more help and stops picking fights with Linus before that.

GolfNovemberUniform ,
@GolfNovemberUniform@lemmy.ml avatar

Use ext4. It just works.

ByteJunk ,
@ByteJunk@lemmy.world avatar

Torvalds rejected the merge, and that’s pretty much what he said - no one is using bcachefs.

There’s no reason for a “fix” to be 1k+ lines, these sorts of changes need to come earlier in the release cycle.

dinckelman ,

deleted_by_author

  • Loading...
  • riskable ,
    @riskable@programming.dev avatar

    You had corruption with btrfs? Was this with a spinning disk or an SSD?

    I’ve been using btrfs for over a decade on several filesystems/machines and I’ve had my share of problems (mostly due to ignorance) but I’ve never encountered corruption. Mostly I just run out of disk space because I forgot to balance or the disk itself had an issue and I lost whatever it was that was stored in those blocks.

    I’ve had to repair a btrfs partition before due to who-knows-what back when it was new but it’s been over a decade since I’ve had an issue like that. I remember btrfs check --repair being totally useless back then haha. My memory on that event is fuzzy but I think I fixed whatever it was bitching about by remounting the filesystem with an extra option that forced it to recreate a cache of some sort. It ran for many years after that until the disk spun itself into oblivion.

    DaPorkchop_ ,

    ext4 is intended for a completely different use case, though? bcachefs is competing with btrfs and ZFS in big storage arrays spanning multiple drives, probably with SSD cache. ext4 is a nice filesystem for client devices, but doesn’t support some things which are kinda fundamental at larger scales like data checksumming, snapshots, or transparent compression.

    GolfNovemberUniform ,
    @GolfNovemberUniform@lemmy.ml avatar

    There’s XFS for larger scale stuff.

    DaPorkchop_ ,

    XFS still isn’t a multi-device filesystem, though… of course you can run it on top of mdraid/LVM, but that still doesn’t come close to the flexibility of what these specialized filesystems can do. Being able to simply run btrfs device add /dev/sdx1 / and immediately having the new space available is far less hassle than adding a device to an md array, then resizing the partition and then resizing the filesystem (and removing a device is even worse). Snapshots are a similar deal - sure, LVM can let you snapshot your entire virtual block device, but your snapshots are block devices themselves which need to be explicitly mounted, while in btrfs/bcachefs a snapshot is just a directory, and can be isolated to a specific subvolume rather than the entire block device.

    Data checksums are also substantially less useful when the filesystem can’t address the underlying devices individually, because it makes repairing the data from a replica impossible. If you have a file on an md RAID1 device and one of the replicas has a bad block, you might be able to detect the bitrot by verifying the checksum, but you can’t actually fix it, because even though there is a second copy of the data on another drive, mdadm simply exposes a simple block device and doesn’t provide any way to read from “the other copy”. mdraid can recover from total drive failure, but not data corruption.

    Damage ,

    Is XFS still maintained?

    the_sisko ,
    pimeys ,

    One of the best filesystem codebases out there. Really a top notch file system if you don’t need to resize it once it’s created. It is a write through, not copy on write, so some features such as snapshots are not possible using XFS. If you don’t care about features found in btrfs, zfs or bcachefs, and you don’t need to resize the partition after creating it, XFS is a solid and very fast choice.

    Ext4 codebase is known to be very complex and some people say even scary. It just works because everybody’s using it and bugs have been fixed years ago.

    deafboy ,
    @deafboy@lemmy.world avatar

    if you don’t need to resize it once it’s created

    xfs_growfs is a thing. I know nothing about xfs. Is this something I should avoid for some reason?

    docs.redhat.com/en/documentation/…/xfsgrow

    megabat ,

    No reason to avoid it. Just know that you can’t easily shink the filesystem, only grow it. To shrink you’d need to create a new FS then copy the data over manually.

    that_leaflet ,
    @that_leaflet@lemmy.world avatar

    It’s used in RHEL.

    ReversalHatchery ,

    Honestly I’m fine with ZFS on larger scale, but on desktop I want a filesystem that can do compassion (like NTFS on windows) and snapshots.

    I have actually used compression a lot, and it spared me a lot of space. No, srorage is not cheap, or else I’m awaiting your shipment.
    Other than that I’m doing differential backups on windows, and from time to time it’s very useful that I can grab a file to which something just happened. Snapshots cost much less storage than complete copies, which I couldn’t afford, but this way I have daily diffs for a few years back, and it only costs a TB or so.

    skullgiver ,
    @skullgiver@popplesburger.hilciferous.nl avatar

    Red Hat recommends XFS by default. That’s probably the most “it just works” filesystem out there. Slightly faster than ext4, too!

    GolfNovemberUniform ,
    @GolfNovemberUniform@lemmy.ml avatar

    I once had the whole FS corrupted and I don’t remember if it was XFS or ZFS (probably the latter). Also I like messing around with interesting software that might not support less common filesystems so I just stick with ext4. XFS is great though.

    skullgiver ,
    @skullgiver@popplesburger.hilciferous.nl avatar

    XFS is 24 years old, six years older than the first merged version of ext4. It’s the standard for enterprise Linux deployments. This isn’t some small indie filesystem like BTRFS or F2FS. It also doesn’t do any of the complicated stuff BTRFS and ZFS do to bring filesystems into the 21st century, so repairing it is much easier.

    riskable ,
    @riskable@programming.dev avatar

    I wouldn’t say, “repairing XFS is much easier.” Yeah, fsck -y with XFS is really all you have to do 99% of the time but also you’re much more likely to get corrupted stuff when you’re in that situation compared to say, btrfs which supports snapshotting and redundancy.

    Another problem with XFS is its lack of flexibility. By that I don’t mean, “you can configure it across any number of partitions on-the-fly in any number of (extreme) ways” (like you can with btrfs and zfs). I mean it doesn’t have very many options as to how it should deal with things like inodes (e.g. tail allocation). You can increase the total amount of space allowed for inode allocation but only when you create the filesystem and even then it has a (kind of absurdly) limited number that would surprise most folks here.

    As an example, with an XFS filesystem, in order to store 2 billion symlimks (each one takes an inode) you would need 1TiB of storage just for the inodes. Contrast that with something like btrfs with max_inline set to 2048 (the default) and 2 billion symlimks will take up a little less than 1GB (assuming a simplistic setup on at least a 50GB single partition).

    Learn more about btrfs inlining: btrfs.readthedocs.io/en/latest/Inline-files.html

    linearchaos ,
    @linearchaos@lemmy.world avatar

    You might as well say use fat32 it just works.

    GolfNovemberUniform ,
    @GolfNovemberUniform@lemmy.ml avatar

    Not really. It has a quite small file size limit afaik.

    linearchaos ,
    @linearchaos@lemmy.world avatar

    Like there’s not a bunch of stuff EXT 4 can’t do that BTRFS and whatever this other acronym soup can do.

    It’s the entire point of my post. E x t 4 does work but it doesn’t do the stuff these other file systems do so they are an advantageous choice for some things.

    GolfNovemberUniform ,
    @GolfNovemberUniform@lemmy.ml avatar

    I think we’re just talking about different priorities. For me stability is the most important in production. For you features seem to matter more. For me it’s enough if a file system can store, write, read and not lose files. I guess it depends on what the use case and the budget are.

    linearchaos ,
    @linearchaos@lemmy.world avatar

    Yeah, some people have needs that you don’t have. That’s why I commented on your blanket statement of just use EXT4.

    I have BTRFS in production all over the place. Snapshots are extremely useful for what I do.

    DaPorkchop_ ,

    ext4 aims to not lose data under the assumption that the single underlying drive is reliable. btrfs/bcachefs/ZFS assume that one/many of the perhaps dozens of underlying drives could fail entirely or start returning garbage at any time, and try to ensure that the bad drive can be kicked out and replaced without losing any data or interrupting the system. They’re both aiming for stability, but stability requirements are much different at scale than a “dumb” filesystem can offer, because once you have enough drives one of them WILL fail and ext4 cannot save you in that situation.

    Complaining that datacenter-grade filesystems are unreliable when using them in your home computer is like removing all but one of the engines from a 747 and then complaining that it’s prone to crashing. Of course it is, because it was designed under the assumption that there would be redundancy.

    HarriPotero ,
    @HarriPotero@lemmy.world avatar

    and not lose files

    Which is exactly why you’d want to run a CoW filesystem with redundancy.

    ProtonBadger ,

    Well, yes use-case is key. But interestingly ext4 will never detect bitrot/errors/corruption. BTRFS will detect corrupted files because its targeted users wants to know. It makes it difficult to say what’s the more reliable FS because first we’d have to define “reliable” and the perception of it and who/what do we blame when the FS tells us there’s a corrupted file detected?. Do we shoot the messenger?

    riskable ,
    @riskable@programming.dev avatar

    One point: ext4 has a maximum file size of 16TiB. To a regular user that is stupidly huge and of no concern but it’s exactly the type of thing you overlook if you “just use ext4” on anything and everything then end up with your database broken at work because of said bad advice.

    Use the filesystem that makes the most sense for your use case. Consider it every single time you format a disk. Don’t become complacent! Also fuck around with the new shit from time to time! I decided to format my Linux desktop partitions with btrfs over a decade ago and as a result I’m an excellent user of that filesystem but you know what? I’m thinking I’ll try bcachefs soon and fiddle around more with my zfs partition on my HTPC.

    BTW: If you’re thinking about trying out btrfs I would encourage you to learn about it’s non-trivial maintenance tasks. btrfs needs you to fuck with it from time to time or you’ll run out of disk space “for no reason”. You can schedule cron jobs to take care of everything (as I have done) but you still need to learn how it all works. It’s not a “set it and forget it” FS like ext4.

    linearchaos ,
    @linearchaos@lemmy.world avatar

    I have 52 terabytes of BTRFS, I’ve been on it for about 5 years.

    ProtonBadger ,

    For a few years I used a distro that had btrfs as default, including scheduled automatic maintenance. Never had to bother about manual balancing or fiddeling with the FS.

    skullgiver ,
    @skullgiver@popplesburger.hilciferous.nl avatar

    FAT32 goes up to 2TB. 16TB if you increase the sector size beyond what Windows supports. The only limit you may run into is the 256GiB file size limit. For most installs, it does indeed just work.

    Quazatron ,
    @Quazatron@lemmy.world avatar

    No. You can layer ext4 with LVM and LUKS to get a lot of features (but not all) that you get with BTRFS or ZFS. FAT is not suitable for anything other than legacy stuff.

    linearchaos ,
    @linearchaos@lemmy.world avatar

    My point is there are features that you don’t get in EXT that are completely reasonable to use and workflows.

    When someone says just use EXT4, they’re just missing the fact that people may want or need those other features.

    Your response to FAT is exactly my point.

    sfera ,

    The article is not about which filesystem to use or not, but about the size and contents of the patches submitted in relation to bcachefs. It seems that the submitted changes which should have been just fixes also contain new functionality. Though it is very nice to see how active and enthusiastic the development of bcachefs is, mixing fixes with new functionality is hard to review and dangerous as it can introduce additional issues. Again, while I appreciate Kents work, I understand Linus’ concerns.

    taanegl ,

    I’m going to switch from BTRFS at some point, but at this point that’s going to be a few years down the line.

    stsquad ,

    Btrfs never really worked out for me (I think default COW doesn’t play nice with VM images) and ext4 works great.

    Fisch ,
    @Fisch@discuss.tchncs.de avatar

    You can disable COW for specific files btw

    Swedneck ,
    @Swedneck@discuss.tchncs.de avatar

    gods, imagine saying this to a normal user

    “what the fuck is a file?”

    Ephera ,

    Normal users don’t have VM images…

    Bitrot ,

    Gnome boxes and libvirt do it automatically for their VM directories… it works and a normal user doesn’t have to know a bunch.

    Damage ,

    Ext4 on personal computer and ZFS on my server

    taanegl ,

    Ext4 is faster, but I love BTRFS not just because of CoW, but subvolumes as well. You could probably get something similar going with LVFS, but I prefer that to be baked in, hence why I’m waiting for bcachefs, because it’ll up the ante with tighter integration, so that might translate to better performance.

    Notice my use of the word might. BTRFS performance is not so great.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • [email protected]
  • random
  • lifeLocal
  • goranko
  • All magazines