Which is the Best Filesystem in 2024?

  Рет қаралды 12,851

DJ Ware

DJ Ware

Күн бұрын

Filesystems are the second most important choice we make when deciding on how we want our Linux systems to be setup, gain the most performance, give us the features we need and work with the latest scheduling algorithms that come our way occasionally.
Testing five of the most popular linux filesystems, this is what I found in 2024 running on new hardware and a new linux kernel.
This comparison presented several unique problems
1. New Linux Process Scheduler (EEVDF)
2. New Laptop with an Intel Hybrid chip
3. Significant changes to the performance governor in Linux (because of added Hybrid support)
After taking some time to understand all this...here is my take on the best filesystems to use in 2024
Chapters
00:00 - Intro
00:10 - Choice of Filesystem matters
00:43 - Filesystems
01:20 - What Filesystem I left out
01:52 - Test Platform
02:36 - Test Software
03:07 - Canges to Linux Scheduler
03:41 - Initial Write
06:18 - Seq Read
07:09 - Re-Read
08:03 - FRead
09:34 - FWrite
10:37 - Mixed Workloads
11:45 - PRead
12:46 - Pwrite
13:25 - Random Read
14:42 - Random Write
15:46 - Re-Write
17:03 - Reverse Reads
17:53 - Stride Read
18:47 - Geo-Mean of all Tests
19:17 - Issues during Tests
Support me on Patreon: / djware
Follow me:
Twitter @djware55
Facebook: / don.ware.7758
Gitlab: gitlab.com/djware27

Пікірлер: 170
@mk72v2oq
@mk72v2oq 5 ай бұрын
Worth mentioning that Btrfs, Bcachefs and ZFS are about data integrity first. As you said, Copy-on-Write mechanism can have significant performance overhead to ensure that the filesystem is always in vaild state even on unexpected power loss. They also perform data checksumming, i.e. they compute and write checksums along with every data block, then read and verify them on every access to that data block. This obviously also isn't free and requires extra CPU time. But it protects you from silent data corruption (due to faulty disk or some other reasons), which other filesystems without the checksumming are unable to detect.
@godnyx117
@godnyx117 5 ай бұрын
As every year, thanks for comparing filesystems! I would love to see Hammer2 and ZFS!
@brunonishimura
@brunonishimura 5 ай бұрын
me 2!
@KoopstaKlicca
@KoopstaKlicca 5 ай бұрын
To be honest, I just btrfs because of the snapshot feature, and it sounded like a great tool as a noob who switched to linux. Glad to see that it does well for the most part in these performance tests. Thank you for the video! As I get deeper into the technical side of things, this channel is a trove of useful and interesting info
@jhonyortiz5
@jhonyortiz5 5 ай бұрын
Same. Combined with auto-snap it's great. Saved me a few times on Arch.
@TownspersonB
@TownspersonB 5 ай бұрын
I use it for the snapshots, being able to send the snapshots to my NAS over ssh for backups, and using btrfs-raid1 on my NAS for the safety from bit rot or other corruption.
@melaniezette886
@melaniezette886 5 ай бұрын
Same use for it 👍
@mk72v2oq
@mk72v2oq 5 ай бұрын
I would say it is CoW itself. You don't really need to explicitly make snapshots to do that. You can simply copy files/directories and they will not take extra space.
@rlosangeleskings
@rlosangeleskings 5 ай бұрын
I'll remain with ext4... Good and reliable...
@EricLikness
@EricLikness 5 ай бұрын
Always good to know one is not "missing out" with ext4
@__Brandon__
@__Brandon__ 5 ай бұрын
Ironically, I've only broken ext4. Zfs, btrfs, NTFS, xfs, and exfat have never broken on me. There was power failure involved, but losing power shouldn't break your filesystem, only corrupt files
@uncrunch398
@uncrunch398 3 ай бұрын
@@__Brandon__ A new (Win 8.1) machine broke on me with NTFS. Probably because I shrank the Windows partition as much as it would allow after enabling full disk compression to give Linux as much as possible without deleting that partition, yet. It worked for a little while playing the default installed games. Then it didn't.
@BosonCollider
@BosonCollider 11 күн бұрын
XFS is more reliable overall and is also the more readable codebase. Ext4 is the one that scares new kernel devs and is a fairly difficult codebase to read, it just has had decades of work put into it to iron out one kink at a time (which is also true of xfs but with a more maintainable upfront design).
@JuanGarcia-lh1gv
@JuanGarcia-lh1gv 5 ай бұрын
Thank you for taking the time to do all this testing in such an easy to understand way.
@sizur
@sizur 5 ай бұрын
Really appreciate the chapters. Thank you for marking!
@sid__art_6614
@sid__art_6614 5 ай бұрын
Thank you for all the work you do for us❤
@l4nc
@l4nc 5 ай бұрын
The most useful annual comparison, I will watch those always. THANK YOU for your work and appreciate time spend benchmarking
@sheldonkupa9120
@sheldonkupa9120 5 ай бұрын
I like your filesystem comparison videos👍👏 Used ext4 forever and never failed. I love zfs, but it is at home in pro scenarios. Use it only when distribution supports it out of the box like proxmox. Btrfs is very well supported and has all the bells and whistles. Love Linux for the choice it gives me.
@vadimnegoda5836
@vadimnegoda5836 3 ай бұрын
Thank you for the video!
@CliveChamberlain946
@CliveChamberlain946 5 ай бұрын
Now we trust you even more, Oh wise most honorable bearded Guru! 👍
@CyberGizmo
@CyberGizmo 5 ай бұрын
hahaha....
@CMDRSweeper
@CMDRSweeper 5 ай бұрын
ZFS does work on 6.7.2 but not the latest stable version, the zfs-dkms for Arch Linux does compile and work with that kernel. However, it hasn't trickled down in some distros though.
@CyberGizmo
@CyberGizmo 5 ай бұрын
I'm in no rush, when it gets here I will install it and test it. EDIT: I just checked current version of what I use is 2.2.2 and it only supports 6.6 kernels or earlier, which version are you referring to?
@CMDRSweeper
@CMDRSweeper 5 ай бұрын
@@CyberGizmo I am using the ZFS version for arch Linux, archzfs on Github is where the project is hosted. It has the same version number too, but it seems they have pulled in a few of the kernel versions from upstream git version I think. I haven't tried compiling their source code on other distros, but I am running it on 6.7.3 at the moment.
@CyberGizmo
@CyberGizmo 5 ай бұрын
@@CMDRSweeper ok thanks will give it a go im on 6.7.3 as well
@fishsayhelo9872
@fishsayhelo9872 5 ай бұрын
great as usual 👍
@oscarcharliezulu
@oscarcharliezulu 5 ай бұрын
Great info thanks matey
@adam872
@adam872 4 ай бұрын
Happy to see good old XFS still doing the thing. I've used it on and off for years, starting with SGI machines way back in the day.
@AdrianRodriguezAIR
@AdrianRodriguezAIR 4 ай бұрын
Thank you! This was very supportive; I'm installing Arch for the first time and had no idea which file system to choose. XFS is going to be the one.
@ernestuz
@ernestuz 5 ай бұрын
I am really impressed with bcachefs, a new FS, just merged into the kernel and performing so well. Just reading about it, and its backing feature is quite interesting.
@BosonCollider
@BosonCollider 10 күн бұрын
Also it is basically a one-man project
@komram4396
@komram4396 5 ай бұрын
Very nice video, thanks for the information! I moved to btrfs recently it got much better than few years ago. Im really glad brtfs gets better.
@_sneer_
@_sneer_ 5 ай бұрын
Great video. I wonder how does JFS stack up in those tests. I remember about 20 years ago this was my default filesystem as I had the least trouble with it, it was faster than ext3 in many applications and traded blows with XFS. Recently my Slackware server with ext4 had a filesystem error for some unknown reason, so I am considering migrating.
@angeldude101
@angeldude101 5 ай бұрын
Been using Bcachefs, I have absolutely run into the problem you mentioned at the end (but kept using it anyways like an idiot). The devs are aware of it at least since I posted it on the subreddit. I can definitely say that, in spite of these benchmarks, my computer has absolutely been much faster since switching the Bcachefs, but I also know that that is directly due to facts not accounted for in the benchmarks, that being the fact that I was switching from BTRFS on a hard disk to Bcachefs on a pool consisting of the same disk and two SSDs (one NVME, one SATA). True to its legacy as Bcache, Bcachefs really shines in multi-device configurations letting you keep frequently used files on the SSDs, while less frequently used files stay archived on the (ideally larger) hard disks, without having to plan ahead which directories you want on which devices. This is especially noticeable when booting up and also when loading large games.
@kevinvoiceactor9694
@kevinvoiceactor9694 5 ай бұрын
Ah that's a good use case for my setup too. I'll keep an eye out for bcachefs when it's more mature
@dipi71
@dipi71 5 ай бұрын
At home: ext4 with monthly backups. At work: xfs with nightly backups.
@berndschaub5905
@berndschaub5905 11 сағат бұрын
Thanks for the contribution. The statement with Copy On Write is only correct if you refer to the original definition. This is the case in Windows NTFS or Linux BTRFS, for example. File systems such as Netapp WAFL or even more ZFS do not have to copy the data away, as they write to free areas and then link them. Both have advantages and disadvantages. NTFS is able to continue defragmentation through this copying away, which is an advantage, the disadvantage is that every rollback is a copy back and therefore consumes time. A rollback in WAFL or ZFS is an action that usually takes less than a second.
@sheevys
@sheevys 5 ай бұрын
I would appreciate if you could cover and explain this new scheduler
@CyberGizmo
@CyberGizmo 5 ай бұрын
I am working on it...the EEVDF part is pretty straight forward, the Intel Cluster Hybrid stuff, not so much
@Ancipital_
@Ancipital_ 5 ай бұрын
Much thanks for the video. It's always a lot of fun to watch discussions and benchmarks on different filesystems. I'm curious on how well FreeBSD performs in comparison to Linux. Personally I'm using zfs on Linux (NixOS these days), have been for a long time, maybe with ext4 if I need volumes on top of it like e.g. with virtual machines. If you want to give a new zfs a try, you could try a nixos bootable iso. You'll get bleeding edge for a lot of filesystems, zfs included, and you won't have to deal with compile issues. Most filesystems are nice but it sucks when filesystems can't be easily resized. btrfs and ext4 do a good job there, zfs can only be grown, xfs, i'm not sure.
@angeldude101
@angeldude101 5 ай бұрын
At least as it is right now, Bcachefs can be grown (I think both online and offline), but not shrunk. That said, as someone who's never actually used LVM, is filesystem resizing really that much of a game-changer?
@CyberGizmo
@CyberGizmo 5 ай бұрын
wait...please actually shrink their storage !?!?!?! imagine that LOL
@Ancipital_
@Ancipital_ 5 ай бұрын
@@CyberGizmo It's true! For example I setup a backup volume for incremental backups. No idea how big to make it so started by giving it 200G. Now I know 70G is enough, with headroom. So: long live ext4.
@Psittacus_erithacus
@Psittacus_erithacus 5 ай бұрын
Appreciated all the effort you put into these. Your explanations of the various workloads alone make the video worthwhile completely independent of the results. Shame about ZFS though. Personally, I'm never running a kernel as recent as 6.7 is now-having long ago realized that my overall productivity is much better served by avoiding surprises than by chasing features/performance. So I, for one, would find benchmarks on longterm kernels (ie 6.6 and including openZFS) rather more useful. Still, there's no reason to assume my preferences are typical and I can see the value of trying to track development progress by using the latest versions.
@CyberGizmo
@CyberGizmo 5 ай бұрын
The kernel version is a necessary to support 1) the laptop and 2) bcachefs isn't offered on earlier kernel versions (yet)
@Psittacus_erithacus
@Psittacus_erithacus 5 ай бұрын
Ah, I see. Well, it's a good reminder for me that these sorts of things (while interesting) are a long way divorced from the context I actually live in day-to-day. Had ZFS (which I've been using for years) been included and performed well, I might have taken that as some kind of vindication. If it had performed poorly I may have entertained a change. In either case I'd probably be putting too much stock in not-very-comparable testing. In any case, I do appreciate the coverage of bcachefs' (and to a lesser extent btrfs') progress. Quality, thoughtful content, as ever. Thanks @@CyberGizmo
@lsatenstein
@lsatenstein 5 ай бұрын
Are we looking at the time to complete or a chart where more is better? I thought at first, that is the former. (Time to complete sized workloads).
@CyberGizmo
@CyberGizmo 5 ай бұрын
its MB/sec on all of the tests, hope that helps (there should be text at the bottom of each slide with the benchmark results)
@davidgrisez
@davidgrisez 5 ай бұрын
This video shows another feature that the distributions of Linux has. Until this video I did not know that there were multiple file systems available for Linux. With Microsoft Windows the only file system for the storage drive is NTFS. With the latest Apple Mac computers the storage drive file system is APFS. So with these operating systems the main file system is the file system that comes with the operating system.
@jaakkohintsala2597
@jaakkohintsala2597 5 күн бұрын
What compression (if any) did you use for the BTRFS benchmark? I have seen one benchmark that had way better results when using light compression (lzo, zstd:3) on a btrfs system.
@johnwpierce3
@johnwpierce3 5 ай бұрын
Yeah, I've been stuck on a 6.5. zfs-kmod 2.2.2 will compile against
@repairstudio4940
@repairstudio4940 5 ай бұрын
I love seeing these comparisons. Been considering switching to BTRFS and saw other channels praising it and it's new improvements. Advice or Thoughts from anyone who uses it regularly would be apreeciated?
@jrksoldierx1436
@jrksoldierx1436 5 ай бұрын
BTRFS + Snapshots = God mode I've been using BTRFS since August and will not go back
@jhonyortiz5
@jhonyortiz5 5 ай бұрын
Been using it on Arch for about 3 years. Saved me a few times already. I use it with auto-snap which is on the AUR. You can easily rollback your system in literally seconds. As for performance, well my main desktop uses btrfs and my laptop ext4 and I don't notice any difference at all. At least on my use case. I did try timeshift/auto-snap on ext4 and it takes AGES to rollback or do a snapshot. On btrfs, as I already mentioned, seconds. Also, just in case you don't know about this, if you try to chroot at any point, mounting btrfs volumes is slightly different than mounting ext4. Not that different just thought I mentioned it. Other than that, I don't notice or think about whether it is ext4 or btrfs. It makes no difference for my use case.
@emvdl
@emvdl 5 ай бұрын
Good job DJ
@CyberGizmo
@CyberGizmo 5 ай бұрын
Thank you, Sir!
@desertfish74
@desertfish74 5 ай бұрын
What about filesystem reliability (in case of faults. )
@browntigerus
@browntigerus 5 ай бұрын
Amazing job. Wish it included Zfs and hammer2.
@peterjansen4826
@peterjansen4826 5 ай бұрын
I have the SN750X, I bought it after the SN850X came out because the difference in performance is relatively small and I got 2 TB for around €130 which was a pretty good deal comparatively. I am happy with the performance. That latency due to the electron having a finite traveling speed, I have thought about this: how much impact would it have on performance if you would put RAM further away from the CPU to make room for the coolers and how much impact would a riser cable have? Those kind of questions. You can't make a sensible estimate without knowing how often every second data goes in one direction or the other.
@CyberGizmo
@CyberGizmo 5 ай бұрын
It all adds up
@BloodyCactus
@BloodyCactus 5 ай бұрын
i ran JFS for years and years until one day I didnt check the box and ended up with ext4... Id love to test hammer at some point
@mercster
@mercster 5 ай бұрын
Do you do these logged into a desktop environment? I would wonder if, at times, the DE is doing some goofy housekeeping or other background task while the benchmark is running, possibly skewing a specific measurement at the time it's doing that task. Just curious, obviously doing while in a DE is more "real world" for many people, rather than "theoretical" (unless you're benchmarking for server workloads, of course.)
@CyberGizmo
@CyberGizmo 5 ай бұрын
I do this on a desktop because that is what most of us run, if I wanted to show server performance it would be a totally different benchmark...servers do not work the way workstations do today, that's a totally different world these days. Go check out Level1Tech video from today to see what I mean
@mercster
@mercster 5 ай бұрын
@@CyberGizmo Fair enough. I run KDE myself, although I know some people have bucked the trend of "environments" and use tiling window managers and whatever else. I would assume those have less housekeeping/background crap scheduled than something like GNOME or KDE, but I dunno.
@jthoward
@jthoward 5 ай бұрын
@@mercster AFAIK the only background tasks KDE runs are occasional update checks by Discover or whatever graphical package manager you have and daemons like bluetoothd (unless you have any background apps running). Dunno about GNOME though
@mercster
@mercster 5 ай бұрын
@@jthoward There's Baloo, which is the indexing engine daemon that scrapes metadata for Dolphin's (and other apps, I guess?) search functionalities. Depending on what applets you have in your bar, there are many things that could be happening... Weather applet updates, etc. Desktop environments can get incredibly complex in terms of the cookie jars it has its' hands in at any one time.
@mercster
@mercster 5 ай бұрын
@@jthoward (Granted, DJ Ware is probably not doing a whole lot to the DE before running the benchmark... still, these are incredibly large frameworks doing a lot of stuff. If the goal is to evaluate raw performance between different filesystems, I'd want to eliminate as much going on in the background as possible. But I'm not doing the benchmarks, and DJ Ware is no fool, so I accept his rationale for doing so inside of a DE. It was just a consideration I thought I'd ask about.)
@__Brandon__
@__Brandon__ 5 ай бұрын
Would be nice to see zfs included as a lot of people are comparing btrfs and zfs when moving away from ext4
@IndianaRoy
@IndianaRoy 5 ай бұрын
I use F2FS, not for speed but because it writes on secuencial new blocks each time and with that having less stress on ssd
@georgH
@georgH 5 ай бұрын
Thank you for the video. I think bcachefs has lots of potential for replacing ZFS, which I have been using for my home storage system since 2008 (started on OpenSolaris, then OpenIndiana, Nexenta, FreeBSD amd finally, GNU Linux. You wouldn't believe how much I prefer the GNU userland over these other systems'). It has just landed mainline kernel, that's good, now we have to wait for it to have the pending features implemented and stabilized. Bugs are appearing in its github repo, and particularly there's a user reporting huge performance regressions since August '23. Even then, I am using ZFS for its features, not necessarily performance (although it would be great if it were faster, but it doesn't impact my use case, which is as storage for photos, documents, etc.).
@georgH
@georgH 5 ай бұрын
For a normal laptop/PC with NVME drives I use either ext4 or XFS, I'm also very happpy with them :) Each use case it's best suited by a different FS: ZFS for NAS storage, where I value snapshots, ZFS send/receive, mirroring, scrubbing, etc., while on my root and home partitions it's better to have speed as a priority (I would like snapshots in my laptop like NILFS2 does, but I don't trust it enough and I've read it has some performance issues on certain situations).
@ChuckNorris-lf6vo
@ChuckNorris-lf6vo 5 ай бұрын
And ReFS ? DevDrive etc ?
@solutionroute
@solutionroute 5 ай бұрын
I always appreciate your deep dive into this, but I'm a bit surprised that OpenZFS isn't included.
@CyberGizmo
@CyberGizmo 5 ай бұрын
It would have been, had it not failed to install
@alerigali
@alerigali 5 ай бұрын
TL;DR: Keep using XFS or EXT4
@__Brandon__
@__Brandon__ 5 ай бұрын
Snapshots and compression is pretty nice on btrfs. You can always disable cow on a directory level if you run into performance issues. This kind of workload only really appears with vms and databases so it's easy to disable 95% of the bottlenecks while keeping snapshots which can speed up remote backup times and sizes a considerable amount
@hackdesigner
@hackdesigner 5 ай бұрын
NTFS. After watching: glad to see Ext4 still doing great.
@LeDabe
@LeDabe 5 ай бұрын
I think you should rely more on tools like IOZone, mdtest and IOR. These the the defacto standard to test large (parallel, luster/gpfs) file systems like those used for HPC (aka some of biggest FS in the world). The only issue you may have is that they rely on MPI but that can easily be worked around.
@0LoneTech
@0LoneTech 5 ай бұрын
He did collect this data using iozone.
@LeDabe
@LeDabe 5 ай бұрын
@@0LoneTech Yes, and I think this should continue.
@qlum
@qlum 5 ай бұрын
I used to use f2fs for some time but considering the relatively poor error recovery and no performance gains I mostly switched to ext4 now. Still I may just go to btrfs in the future, especially seeing the limited performance penalty .now.
@kukuri1234
@kukuri1234 5 ай бұрын
I've had f2fs on 2 drives including root for over 4 years now, with numerous unclean shutdowns and i have not had a single corruption or problem. I think it does a very good job at what it is designed for, which is longevity for flash storage, my drives show barely any usage. I would not trust important data to any filesystem which isn't mirrored though.
@qlum
@qlum 5 ай бұрын
@@kukuri1234 The fsck of f2fs is known to be weaker, does not mean you will actually encounter the corruption but it has been tested to be significantly worse at repairing errors. Can't remember the sources though. As for the longlivity part, perhaps for emmc storage or a usb-drive / sd-card but for a decent ssd it is no big factor of consideration from my understanding.
@pao_lumu
@pao_lumu 5 ай бұрын
I find it interesting that F2FS is in here at all, given it's largely optimized for the mediocre NAND flash on phones and _maybe_ sd cards. And given how it scales, it seems to make the most sense for that use case and little else.
@r0galik
@r0galik 5 ай бұрын
Is it possible that bcachefs developers haven't.. Tested... Rebooting a machine?
@m1k3e
@m1k3e 5 ай бұрын
Excellent video as usual. Shame that so many people are put off by the ZFS license. I’d love to see Debian easily support root-on-ZFS easily out of the box.
@CyberGizmo
@CyberGizmo 5 ай бұрын
Thanks Mike, what is even a bit ironic...I use Debian to host my ZFS storage (sshhh, don't tell anyone)
@simmo1024
@simmo1024 5 ай бұрын
Rocking the beard.
@user-in2cs1vp6o
@user-in2cs1vp6o 4 ай бұрын
Gonna give xfs a try due to this video. Thank you
@ytuser13082011
@ytuser13082011 5 ай бұрын
Hmm, in my opinion it's not only about the speed of filesystem, unless this is your only criteria. I tend to choose filesystems that are both performant AND safe. I cannot live without snapshots. They saved my ass many times already :) I have local snapshots and also replicate them on backup machine.
@rabidmoose01
@rabidmoose01 5 ай бұрын
This is pedantic and I apologize, but an electron's drift velocity is only 23 um/s, not 100m/s. The electrical field generated by the movement of electrons expands at ~300,000km/s (ie ~300m/us), but the electron itself barely moves at all after 1 second.
@ctmme
@ctmme 5 ай бұрын
In my experience, on a 7200 RPM HDD, Btrfs was so darn slow when it comes to traversing directories, especially ones with many files. Sometimes in excess of 10 seconds to load a folder! XFS was so much better. Felt almost instant in comparison. Remained so even after migrating the data to a 5400 RPM laptop HDD. Shame really, because I love how you can set (unfortunately named) raid1 on btrfs and just throw disks at it. No need to perfectly manage a RAID array with all same drive sizes and whatnot. Even if the disks are not the same size it figures out the most efficient way to use the space on all of them while ensuring there is always another copy on another drive.
@jannishoffmann7186
@jannishoffmann7186 4 ай бұрын
If you just focus on the single and two threaded workloads f2fs does actually pretty well. But anything more and it falls flat.
@DoubtingThomas333
@DoubtingThomas333 5 ай бұрын
I would test these all again for power efficiency. I think you'd find F2FS saves the most power, both for ssd and HDD drives.
@CyberGizmo
@CyberGizmo 5 ай бұрын
While that may seem like a good idea and I have seen a lot of You Tubers use that method of comparing...the only thing I could show you is how power efficiency is for me, it would not necessarily translate to your experience. This benchmark was collected on a Meteor Lake CPU, that model of Intel CPU will call in the new Intel Hybrid Cluster algorithm, and it will direct processes to a group of processors based on what it sees load wise and which type of CPU is available to execute on (P-core, E-Core or LE E-Core). and it is possible it is that part of the algorithm that is effecting F2FS poor scores on this video
@DoubtingThomas333
@DoubtingThomas333 5 ай бұрын
@@CyberGizmo you completely schooled me, Sir. I try my best to run hibernation mode on my productive machines and f2fs wherever possible. It could be because I saw many benefits of Android phones using f2fs and then some testing that was done on HDDs, which showed several benefits, especially with power consumption numbers.
@livinginharmony360
@livinginharmony360 5 ай бұрын
EROFS and HMDFS (OpenHarmony/HarmonyOS Distributed File System)
@theplaymakerno1
@theplaymakerno1 5 ай бұрын
My favorite file system is DJ Ware
@savagepro9060
@savagepro9060 5 ай бұрын
Is OpenZFS a thing?
@CyberGizmo
@CyberGizmo 5 ай бұрын
it masquarades as zfs on linux, but oh yes
@savagepro9060
@savagepro9060 5 ай бұрын
@@CyberGizmo sorry for the bother, forgot to mention, ZFS is still good on FreeDSB, right. I want to try BSD for building a NAS! Thank you!
@CaptainDangeax
@CaptainDangeax 5 ай бұрын
For 2024, I will still rely on XFS, although Fedora is hard pushing to using ButterFS
@entelin
@entelin 5 ай бұрын
Hard pushing? I doubt it, Redhat dropped Btr entirely. I don't see much of a future for BTRfs to be honest.
@jthoward
@jthoward 5 ай бұрын
@@entelin Pretty sure Fedora is (or at least recently was) planning to make it default
@entelin
@entelin 5 ай бұрын
@@jthoward Btrfs is and has been default on fedora. Btr still has some large users, SuSe and Synology specifically. Unfortunately it hasn't really lived up to the hope of it being able to compete with ZFS. Synology doesn't use it's raid capabilities at all for example and has some custom hacks to somehow pass btr's self healing features through mdadm. Now with bcachefs effectively starting over, and rhel developing something else entirely (I forget what it's called). I suspect btrfs's future is dim.
@CaptainDangeax
@CaptainDangeax 5 ай бұрын
@@entelin did you try Fefora lately ? No ? So your doubt values nothing
@ForOdinAndAsgard
@ForOdinAndAsgard 5 ай бұрын
@@entelin "Synology doesn't use it's raid capabilities at all for example". I call BS.
@guilherme5094
@guilherme5094 5 ай бұрын
👍DJ!
@replikvltyoutube3727
@replikvltyoutube3727 5 ай бұрын
bcachefs is really promising fs. Less featureful than btrfs, but perhaps more stable.
@elmariachi5133
@elmariachi5133 5 ай бұрын
Same procedure as every year .. EXT4 is the best overall, including availability, usability, data integrity and performance. It's bad and good at once .. bad because there seems to be no progress in filesystems, but good because maybe this means that EXT4 is so good that there's not much room for improvement. Of coure if you want no compromise maximum data integrity, there's no way around clumsy ZFS.
@andersjjensen
@andersjjensen 5 ай бұрын
If they would be so kind and add snap-shots and namespaces to EXT4 that would be killer. If they also added the features ZFS has to manage devices and pools of devices directly (probably via the md raid driver foundation) it would be the be-all-end-all filesystem.
@mmilerngruppe
@mmilerngruppe Ай бұрын
reiserfs?
@CyberGizmo
@CyberGizmo Ай бұрын
a filesystem which will be deprecated from the linux kernel soon. Sadly
@mmilerngruppe
@mmilerngruppe Ай бұрын
@@CyberGizmo yes, really sad.
@Waltar-highway61
@Waltar-highway61 5 ай бұрын
As the real life filesystem workload is completely different to fio load and as mostly every server use some kind of raid to disk bundle fio load benchmarks to single disk is unfortunately confusing to end admin/user productiv use experience. Measuring time to any kind of single or multiload application-like-benchmark and keep datasets between min 1 to 10 TB and 5 to 20 M files, even measure metadata handling as long listing, find and du. I prefere HW-raid, xfs and some knobs in /sys/block/... and /proc/sys/..., as it's unbeatable then. Nevertheless anybody like some kind of filesystem but then please don't say any kind of would be fast which isn't in reality, sorry.
@eznix
@eznix 5 ай бұрын
If you want the best overall performance, it looks like Ext4 for the win. F2FS is a niche use case file system, why consider it for a root filesystem on a desktop or server? Btrfs and BcacheFS are only useful if you want copy-on-write features. They are inherently riskier. Why use them unless you really want one of the features, otherwise you are just tolerating sub-par performance and lower reliability for nothing. Thanks for the update.
@CyberGizmo
@CyberGizmo 5 ай бұрын
Good to see you eznix and welcome
@angeldude101
@angeldude101 5 ай бұрын
"Btrfs and BcacheFS are only useful if you want copy-on-write features." I would say that if you only want copy-on-write features, then stick with Btrfs. Bcachefs I would mainly recommend for situations where you would otherwise run a traditional filesystem over top of Bcache, that being in setups with highly heterogeneous drive configurations (like my case with 2 SSDs and 2 HDDs, all of which have different speeds). TLDR: Btrfs for copy-on-write. Bcachefs for a heterogeneous multi-device filesystem.
@0LoneTech
@0LoneTech 5 ай бұрын
What basis do you have for calling the principle of not overwriting current data "inherently riskier" and "lower reliability"?
@eznix
@eznix 5 ай бұрын
Just anecdotal evidence of seeing and hearing about problems of failure to recover from broken filesystems on btrfs formatted drives. Also, BcacheFS is way to new to be trustworthy. It's been over ten years and btrfs is barely trustworthy (in a corporate setting with professional admins its probably fine, but with home users who have little idea how to properly set it up, I would not consider btrfs to be a good option). @@0LoneTech
@supermaster2012
@supermaster2012 5 ай бұрын
HFS+ Okay, bye. Have fun!
@danielhooke6115
@danielhooke6115 5 ай бұрын
Looks like EXT4 wins.
@0LoneTech
@0LoneTech 5 ай бұрын
If data throughput is the only variable that matters to you, yes. If you also care that your data is consistent after interruption, you may want to switch on journal_checksum, data=journal and metadata_csum.
@kukuri1234
@kukuri1234 5 ай бұрын
Maybe you should call this the "fastest" filesystem, as speed alone doesn't make a good filesystem, also there is no best filesystem, just many different ones for different usecases. So the question should be what is the best for what task.
@zyghom
@zyghom 5 ай бұрын
and what happened to OpenZFS? Died 2 days ago? why would you need to compile it? you just install it with package (at least on Debian-like systems) plus ZFS is perfectly working/implemented on FreeBSD - see enterprise TrueNAS systems as an example No, removing ZFS from the comparison is like making a comparison i.e.: "which car is the best?" and you test only Fiat and Ford...
@jeffhyche9839
@jeffhyche9839 5 ай бұрын
A sure way to lose your job is to install any of these filesystems, other than ext4 or xfs, in a production environment.
@CyberGizmo
@CyberGizmo 5 ай бұрын
true
@vijay1700
@vijay1700 Ай бұрын
Winner?
@cartelion
@cartelion 5 ай бұрын
if a Filesystem is Stable and don't require any changes, why deleting it from Linux? This is really dumb decision.
@makkurotatsu
@makkurotatsu 5 ай бұрын
I suggest you read up on the existing problems of ReiserFS. It has already been phased out by SUSE, who also suggested to drop Reiser from the mainline kernel in 2025. Their reasoning was that maintaining Reiser takes too much effort, and there are good alternatives available. No need beating a dead (or at least almost a quarter century old and ailing) horse any longer.
@pepeshopping
@pepeshopping 5 ай бұрын
No ZFS? (Get it built/compiled if you are not able to make it work yourself!). Useless info (non groupies will always use ZFS). Speed matters, but resiliency and features matter most!
@CyberGizmo
@CyberGizmo 5 ай бұрын
I am trouibleshooting weary after a month getting a new machine running...will look into it once I relax for a day or two.
@CaptainDangeax
@CaptainDangeax 5 ай бұрын
Data reside on the NAS or the SAN, not the PC. So ZFS is useless, considering how much RAM ZFS needs
@Henry-sv3wv
@Henry-sv3wv 5 ай бұрын
Linux uses BTRFS, ZFS is not build into the linux kernel. ZFS will give all kinds of trouble like: ZFS not compatible with kernel version x.x
@shadow7037932
@shadow7037932 5 ай бұрын
@@CaptainDangeax You can have hundreds of gigs in a standard desktop PC now. And high capacity RAM DIMMs aren't insanely expensive.
@CaptainDangeax
@CaptainDangeax 5 ай бұрын
@@shadow7037932 That's not a capacity problem. that's an organisation problem. Makes me believe you don't work in IT as a professionnal.
@MsDuketown
@MsDuketown 5 ай бұрын
Linux, Windows and Mac. That is thus WebDAV missing from the story. Clients like Konquer have this build-in. I rather have smb build in instead of using winscp. #vfs #vde #volume
@ericneo2
@ericneo2 5 ай бұрын
On the ZFS compile error: Linux devs need to stop releasing busted updates as stable, last year mySQL also released busted versions and people switched to MariaDB. The more Linux devs push bad updates that break peoples systems, the more people we will see switching to Immutable distros, people are tired of this nonsense and want to be able to quickly rollback from a busted release back to a working one.
@entelin
@entelin 5 ай бұрын
EndeavourOS does not have official support for ZFS. It's not a matter of pushing out busted stuff. ZFS is not part of the linux kernel, so if the distro pushes out a kernel that ZFS hasn't been tested on, then you can have these breakages. So you don't do that, if you're using ZFS, then you should use a distro that includes it. Secondly, MariaDB has been the successor to the old mySQL project for like 14 years ever since Oracle acquired the brand, most distros don't even ship mysql. Mariadb is superior to mysql in almost every respect. Why are you even using it?
@russchristensen3808
@russchristensen3808 5 ай бұрын
I would assume that the compiler error is because of the heavy refactoring that is going on which is a positive thing and is only an issue because XFS is out of tree.
@ericneo2
@ericneo2 5 ай бұрын
​@@russchristensen3808 Breaking peoples systems isn't a positive. It's just plain old deceitful to say release X is safe and stable when it is unsafe, unstable and untested.
@entelin
@entelin 5 ай бұрын
@@ericneo2You're full of it. ZFS's latest release doesn't claim support for 6.7. Live on the bleeding edge, get cut. If you're going to use ZFS in production, then use a distro that explicitly supports it so that you know they wont advance their kernel past what zfs supports. I agree with you in principal, breaking changes = bad, but you're not complaining about a real example.
@ericneo2
@ericneo2 5 ай бұрын
​@@entelin You are projecting like Cathy Newman. The stable MySQL releases that broke production had very real consequences for web hosting companies last year. You can stick your head in the sand, lie and make excuses all you want but people are tired of this nonsense.
@bertnijhof5413
@bertnijhof5413 5 ай бұрын
No ZFS? (thus a useless comparison of outdated (XFS) or unreliable file systems (btrfs; bacheFS; F2FX)). Please use a main stream distro for testing next time and use a Linux OS, that is supported by OpenZFS, like 6.5 or 6.6. Avoid rolling distros for finding the best (= reliable) file system. Of course ext4 and OpenZFS are the best file systems; bcacheFS might be the best in 5 years; F2FS is used for phones and btrfs already tries for 10 years to deal reliably with the more complex RAID configurations. So btrfs is nice for desktop or laptop, but not for servers.
@CyberGizmo
@CyberGizmo 5 ай бұрын
Yep, it broke on install...Linux kernel module failed to compile and I wanted to push the video out and not troubleshoot today...been doing that all month with the new box
@darukutsu
@darukutsu 5 ай бұрын
i use zfs-linux on 6.7.2-arch1-1. Not sure about zfs-dkms one but they should work without problems, right?
@TheKirurgs
@TheKirurgs 5 ай бұрын
ZFS upstream officially is still on 6.6, one needs to apply ZFS compat patch. Manjaro has it alteady.
@benjy288
@benjy288 5 ай бұрын
XFS outdated?
@0LoneTech
@0LoneTech 5 ай бұрын
​@@benjy288 Some people can't distinguish old from bad.
@sarath14k56
@sarath14k56 5 ай бұрын
What is happening with f2fs though
Showdown 2024: X11 vs Wayland
41:17
DJ Ware
Рет қаралды 32 М.
The Future of TrueNAS...
6:33
Lawrence Systems
Рет қаралды 56 М.
Sigma Kid Hair #funny #sigma #comedy
00:33
CRAZY GREAPA
Рет қаралды 32 МЛН
Зачем он туда залез?
00:25
Vlad Samokatchik
Рет қаралды 3,2 МЛН
Questions to Answer when Choosing a Linux Distro
25:51
DJ Ware
Рет қаралды 5 М.
Wayland vs X11
19:05
DJ Ware
Рет қаралды 149 М.
Where Did Arch Linux Come From?
16:21
Action Retro
Рет қаралды 10 М.
Future of Linux: A Visionary Tale from 2024
22:31
DJ Ware
Рет қаралды 9 М.
DEMYSTIFY:  The Choice Between SELinux or AppArmor
9:29
DJ Ware
Рет қаралды 6 М.
End of Support: Windows 10 - What to do
17:38
DJ Ware
Рет қаралды 317 М.
How does Linux add functionality on the fly?
23:40
DJ Ware
Рет қаралды 11 М.
Смартфон УЛУЧШАЕТ ЗРЕНИЕ!?
0:41
ÉЖИ АКСЁНОВ
Рет қаралды 1,2 МЛН
Top 50 Amazon Prime Day 2024 Deals 🤑 (Updated Hourly!!)
12:37
The Deal Guy
Рет қаралды 1,4 МЛН
Kumanda İle Bilgisayarı Yönetmek #shorts
0:29
Osman Kabadayı
Рет қаралды 743 М.
Самый тонкий смартфон в мире!
0:55
Не шарю!
Рет қаралды 33 М.
Это Xiaomi Su7 Max 🤯 #xiaomi #su7max
1:01
Tynalieff Shorts
Рет қаралды 1,7 МЛН