On Wed, Sep 05, 2012 at 08:22:14AM -0400, Brian Foster wrote: > On 09/05/2012 03:00 AM, Dave Chinner wrote: > > On Tue, Sep 04, 2012 at 10:10:57AM -0400, Brian Foster wrote: > >> On 09/03/2012 01:28 AM, Dave Chinner wrote: > >>> On Mon, Aug 27, 2012 at 03:51:51PM -0400, Brian Foster wrote: > ... > >> > >> Any thoughts on having tunables for both values (time and min size?) on > >> the background scanning? > > > > Well, my suggestion for timing is as per above (xfs_syncd_centisecs > > * 100), but I don't really have any good rule of thumb for the > > minimum size. What threshold do people start to notice this? > > > > For the testing I've done so far, I'm hitting EDQUOT with 20-30GB of > space left while sequentially writing to many large files. Sure, background scanning won't prevent that, though. The background scan is to catch preallocation that is no longer needed. i.e. the files are no longer being written and have no dirty date but due to the access nature, xfs_release() didn't free the unused preallocation. The background scan will clean that up faster than waiting for the inodes to cycle through the cache.... > I'm really > just trying to get used space before failure more in the ball park of > the limit, That's what prealloc size throttling is for. ;) > so I'm not going to complain too much over leaving a few > hundred MB or so around on an otherwise full quota. ;) From where I sit, > the problem is more when we extend a file by 2, 4, 8GB and consume a > large amount of limited available space. > > I suppose for the background scanning, it's more about just using a > value that doesn't get in the way of general behavior/performance. I'll > do some more testing in this area. Right. > > I'd SWAG that something like 32MB is a good size to start at because > > most IO subsystems will still be able to reach full bandwidth with > > extents of this size when reading files. > > > > Alternatively, if you can determine if the inode is still in use at > > the time of the scan (e.g. elevated reference count due to an open > > fd) and skip the truncation for those inodes, then a minimum size is > > not really needed, right? > > > > Hmm, good idea. Though perhaps I can use the min_size as a force > parameter (i.e., trim anything over this size), If it's a background scan, we don't want to trim active preallocations. > and the inode in use > check allows a more conservative default. I just thought of a better check than an in-use check - if the inode has a dirty page cache, don't trim it as the speculative prealloc is still useful. If the inode is clean, it has not recently been written to so we can remove the speculative prealloc and we are unlikely to suffer any penalty from doing so.... Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs