8

I use ZFS and love it. I know that BtrFS also supports checksumming. I've been told that checksumming is available in Windows 2008, but I've been unable to verify this.

Are there checksumming filesystems besides ZFS and BtrFS on any platform, especially Windows?

royco
  • 513
  • 1
  • 8
  • 15
  • You can use [WinBtrfs](https://superuser.com/questions/1086419/how-to-read-btrfs-volumes-on-windows-natively) on windows to read the volumes directly. It's stable at version 1.3 now. – SurpriseDog Jun 21 '19 at 21:05

5 Answers5

5

Windows is somewhat famous for having one and only one filesystem, NTFS. I also have been unable to dig out anything that suggests NTFS has checksumming. The closest I've come is a document describing the checksum protecting the GPT blocks on a dynamic disk. The "What's New in 2008" doc doesn't show anything like that for NTFS (link).

EXT4 uses journal checksumming, but not data checksumming.

GPFS also does journal checksumming.

The idea is new enough it isn't in a lot of file-systems yet. Btrfs is still 'experimental' in Linux, and ext4 is recently out of that state.

sysadmin1138
  • 131,083
  • 18
  • 173
  • 296
1

Some ZFS-like features can also be had with other file systems by introducing a logical volume manager to create virtual devices. Logical volume managment on windows is referred to as dynamic disks and volumes. RAID-0, RAID-1 and RAID-5 modes are supported.

When you heard that "checksumming is supported" on windows, it probably referred to the fault tolerance of RAID-1 and RAID-5. However in reality these modes only protect against easily detectable device failures (disk missing, read errors, file system corrupted...). Checksumming all data is not supported so subtle data corruption can go undetected.

Wim Coenen
  • 235
  • 1
  • 5
1

might i also suggest that providing ZFS via iSCSI or NFS to a windows server is also a method of gaining the benefits of ZFS for a windows server? whilst not directly attached to the server, there are plenty of file-servers out there that use an iSCSI target out of a ZFS appliance as their primary storage.

for a small solution take a look at http://www.va-technologies.com/sbb

Khushil
  • 553
  • 3
  • 11
1

The closest thing that windows does provide is SIS (single instance storage) - stores only 1 copy of a file - several steps away from what ZFS actually provides.

Paul

Paul
  • 11
  • 1
1

Windows Server 2012 has ReFS, which checksums metadata and (optionally) data.

Ivan Kozik
  • 123
  • 5
  • ReFS also has borrowed a number of other ZFS features like Storage Spaces (zpools), tiered storage (L2ARC/log device) and block-level deduplication (although the offline variant). And all of this just 5-8 years after Sun has introduced the features into Solaris ZFS. – the-wabbit Oct 01 '14 at 11:20