ReFS block release

ReFS is Microsofts newer file system designed for some really fun highly scalable systems… but in a world where things don’t always get deployed “By the book” what are some of the draw backs? This blog talks specifically about space reclamation on ReFS.

If you look around on the net, you will find a lot of “Just use ReFS”, “ReFS is better” or “Its newer so use that”. Throw all that out. If you don’t understand what you are doing, you can’t understand what the impact will be

If you are using ReFS ontop of a network storage system (SAN / NAS), Nested inside another file system (Eg VMFS) or some other quirky config. you should be aware that ReFS has some fun things to do with space reclamation because it DOESN’T Support TRIM or UNMAP.

On dedicated hardware, this isn’t a problem because you don’t care. The disk will do what it wants to. This is only an issue where your physical disk is abstracted a couple of times over.

Straight up: ReFS manual even says this – but people (including me) – gloss over this really important point. So we can’t even be mad at Microsoft for “hiding this” as i have seen some forum posts say. It’s right there! in Purple!

Source: https://docs.microsoft.com/en-us/windows-server/storage/refs/refs-overview

The short version is, consult your vendor on what needs to happen for your specific setup.
I will be going on to talk about what i have seen, which is ReFS ontop of VMFS and ReFS ontop of Dell Compellent (SC Series) where Thin Provisioning is expected (and to be clear here, i mean that the space on the underlying system reflects what is actually in use inside the OS)

When i started out, i understood what the problem was, but there wasn’t a lot of info on how this worked with VMFS and how to get from “Broken” to “Fixed” in depth

The setup on VMware VMFS

So this one had me stumped for a bit. In our setup we have:
VMware VM with a ReFS disk > iSCSI Datastore as VMFS > Dell Compellent

The expectation is that:
You delete a file from ReFS, it sends a note to VMFS to say its free, VMFS space reclamation cleans it up and marks it as free, then tells Compellent it’s free, space is reclaimed. Everyone parties at the pub.

What happens in reality:
You delete a file from ReFS. Space is retained and never shrinks. At some point at 3am, you get an alarm and you start to cry.

Legend says if you get to the 5th layer without losing your cool, you get free coffee for life.

The setup on Compellent LUNs

This one drove me crazy for a while because it just didn’t make sense. In out setup we have:
Windows (as a VM) with a iSCSI Disk attached from inside the VM, Formatted as ReFS > Dell Compellent

The expectation is that:
You delete a file from ReFS, It sends a note to compellent to say its free > Compellent Snapshot happens, space is released.

What happens in Reality:
You delete a file from ReFS. Space is retained and never shrinks on the Compellent.

In reality, for both VMFS and Compellent, it’s not a huge problem because there is free space. It will eat into that, but you will have bloat on your arrays if you are doing thin provisioning because you never actually get the space back.

If you have ever had to deal with Emergency Mode, you know just how true this is.

So how do we get to the fix?

Well first up, you need these 2 settings on any server running ReFS (VMFS or Compellent) to allow releasing of blocks to happen

fsutil behavior set DisableDeleteNotify ReFS 1
REG ADD HKLM\System\CurrentControlSet\Control\FileSystem /v RefsEnableLargeWorkingSetTrim /t REG_DWORD /d 1

The first allows a DeleteNotify to happen to the underlying storage
The second allows a unmap to happen more frequently
A reboot is recommended by MS, but in my testing was not required. Its Windows but, so probably reboot.

Once those commands are in place, you need to do a free space wipe to mark the “Free space” as zeros. Sdelete is the one most places recommend
A word of caution: This WILL fill the disk with zeros before releasing them all. If you are space constrained on the underlying system, you may deplete the storage. Use with caution.

sdelete64.exe -z YourDisk:
Please. The blog is only half over. Clearly this isn’t the end of this story.

On VMware VMFS

Once the sdelete finishes, you will have a heap of free space. This is the bit that I was most curious about…. how do we get that space back from VMFS?

Space reclamation on VMFS6 improved greatly, but even left alone with no other IO for days, it was never reclaimed.

Now if you are a VMware expert, right now you are probably thinking the same thing I did “I’ll just storage vMotion the VM! That will sort it out!”.

Just run a storage vmotion!

Narrator: It would not sort it out.
Thanks VMware – Unless you have a datstore with a different block size, you will also need to run a PunchZero – which requires the VM to be offline…….. Awesome.

Once you run a PunchZero but, you should see the space pretty much instantly reclaimed

On Compellent LUNs

It’s not often “Good news” and “Compellent” are used in the same sentence

Once you run the sdelete (command above) and run a Compellent snapshot, the space will be reclaimed. There is nothing more to do here, but you may need to run these semi-frequently depending on your setup

Wrapping up

ReFS has its uses, but with so many layers, it can get tricky to work out exactly where this issue lies and whats gumming up the works.

  • In Summary but, if you are using ReFS on Storage Systems:
    • Read the manufacturers guide to what is supported
    • You probably need those 2 commands above
    • Free space wipes may be required from time to time
    • On VMFS, you might need a PunchZero now and then
    • Really evaluate what ReFS GIVES YOU nested this deep. You may lose all gains it claims to provide
Or, depending on how your week is going. Kick it off and go have a nap

References and further reading:

On my journey to answer this question, the following helped greatly. Please consult them for further information:

  • https://docs.microsoft.com/en-us/windows-server/storage/refs/refs-overview
  • https://dl.dell.com/manuals/common/680-042-007-sc-series-windows-server-best-practices-wp_en-us.pdf
  • https://support.microsoft.com/en-us/topic/update-resolves-heavy-memory-use-in-refs-on-a-computer-that-is-running-windows-server-2016-41b142c2-775d-fa18-4ddb-613e42eb45d9
  • https://kb.vmware.com/s/article/2004155
  • https://docs.microsoft.com/en-us/sysinternals/downloads/sdelete
  • http://vdinges.romeijn.nu/2017/03/space-reclamation-with-vsphere-65-and.html
  • https://www.codyhosterman.com/2016/05/pure-storage-flasharray-unmap-powercli-script-for-vmware-esxi/
  • https://forums.veeam.com/veeam-backup-replication-f2/refs-reclaim-space-on-array-t55541.html
  • https://forums.veeam.com/veeam-backup-replication-f2/windows-2019-large-refs-and-deletes-t57726-480.html
  • https://infohub.delltechnologies.com/l/dell-powervault-me5-series-microsoft-hyper-v-best-practices/optimize-format-disk-wait-time-for-large-volumes

Leave a Reply

Your email address will not be published.

Blue Captcha Image
Refresh

*

RSS
Pinterest
fb-share-icon
LinkedIn
LinkedIn
Share