Re: [FAQ] XFS speculative preallocation

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, Mar 21, 2014 at 12:29:20PM -0400, Brian Foster wrote:
> Hi all,
> 
> Eric had suggested we add an FAQ entry for speculative preallocation
> since it seems to be a common question, so I offered to write something
> up. I started with a single entry but split it into a couple Q's when it
> turned into TL;DR fodder. ;)
> 
> The text is embedded below for review. Thoughts on the questions or
> content is appreciated. Also, once folks are Ok with this... how does
> one gain edit access to the wiki?

Request an account and wait for one of us admins to ack it.

FWIW, what I'd really like is for the FAQ to be converted to a
asciidoc document in the xfs-documentation tree. The current FAQ has
lots of stuff that could do with updating, but editing a wiki
document that long in a browser is, well, painful. We can then
publish the build html version of the FAQ on the wiki...

> Brian
> 
> ---
> 
> Q: Why do files on XFS use more data blocks than expected?
> 
> A:
> 
> The XFS speculative preallocation algorithm allocates extra blocks
> beyond end of file (EOF) to combat fragmentation under parallel
> sequential write workloads.

"minimise file fragmentation during buffered write workloads.
Workloads that benefit from this behaviour include slowly growing
files, concurrent writers and mixed reader/writers workloads. It
also provides fragmentation resistence in situations where memory
pressure prevents adequate buffering of dirty data to allow large
contiguous regions of dirty data to be formed in memory."

> This post-EOF block allocation is included

"is accounted identically to blocks withing EOF. It is visible..."

> in 'st_blocks' counts via stat() system calls and is accounted as
> globally allocated space by the filesystem. This is reported by various
> userspace utilities (stat, du, df, ls) and thus provides a common source
> of confusion for administrators. Post-EOF blocks are temporary in most
> situations and are usually reclaimed via several possible mechanisms in
> XFS.

Also accounted for in quotas.

> See the FAQ entry on speculative preallocation for details.
> 
> Q: What is speculative preallocation? How can I manage it?
> 
> A:
> 
> XFS speculatively preallocates post-EOF blocks on file extending writes
> in anticipation of future extending writes. The size of a preallocation
> is dynamic and depends on the size of the previous extent in the file
> (starting from 0 again if the write extends past a hole).

I'd keep specific heuristics out of the description. Heuristics
change....

> As files grow
> larger, so do the size of preallocations. Speculative preallocation is
> not enabled for files smaller than a minimum size (64k by default, but
> can vary depending on filesystem geometry and/or mount options).

Again, actual numbers should probably be avoided, because we can
change that at will...

> Preallocations are capped at a maximum of 8GB on 4k block filesystems.

"capped at a single extent of the maximum supported size of the filesystem"

> Preallocation is throttled automatically as the filesystem approaches
> low free space conditions or other allocation limits on a file (such as
> a quota).

"Preallocation size is throttled..."

> In most cases, speculative preallocation is automatically reclaimed when
> a file is closed. The preallocation may persist after file close if an
> open, write, close pattern is repeated on a file. In this scenario,
> post-EOF preallocation is trimmed once the inode is reclaimed from cache
> or the filesystem unmounted.

I'd rewrite this slightly differently, saying that preallocation "may
persist beyond the lifecycle of any given file descriptor." And then
describe the reason for this - that certain application behaviours
(like slowly growing files, or file servers) can cause fragmentation
if we remove the preallocation on fd close. These behaviours are
automatically detected, and result in "delayed removal" of the
preallocation.

Q: How can I speed up or avoid delayed removal of speculative preallocation?

A. Removing the inode from the VFS cache or unmounting the
filesystem will remove speculative preallocations associated with an
inode.

> Linux 3.8 (and later) includes a scanner to perform background trimming
> of files with lingering post-EOF preallocations. The scanner bypasses
> files that have been recently modified to not interfere with ongoing
> writes. A 5 minute scan interval is used by default and can be adjusted
> via the following file (value in seconds):
> 
> 	/proc/sys/fs/xfs/speculative_prealloc_lifetime
> 

Q: Is speculative preallocation permanent?

A:
> Although speculative preallocation can lead to reports of excess space
> usage, the preallocated space is not permanent unless explicitly made so
> via fallocate or a similar interface. Preallocated space can also be
> encoded permanently in situations where file size is extended beyond a
> range of post-EOF blocks (i.e., via truncate). Otherwise, preallocated
> blocks are reclaimed on file close, inode reclaim, unmount or in the
> background once file write activity subsides.
> 

Q: My workload has known characteristics - can I tune speculative
preallocation to be an optimal fixed size?

A.
> Finally, the XFS block allocation algorithm can be configured to use a
> fixed allocation size with the 'allocsize=' mount option. Note that
> speculative preallocation does not occur when a fixed allocation size is
> set and thus increases the potential for fragmentation via parallel
> writes.

This should say "dynamic resizing of speculative preallocation does
not occur" rather than "speculative preallocation does not occur",
because allocsize only determines the size of the speculative
preallocation beyond EOF that is done - it doesn't turn it off...

Cheers,

Dave.
-- 
Dave Chinner
david@xxxxxxxxxxxxx

_______________________________________________
xfs mailing list
xfs@xxxxxxxxxxx
http://oss.sgi.com/mailman/listinfo/xfs




[Index of Archives]     [Linux XFS Devel]     [Linux Filesystem Development]     [Filesystem Testing]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux