mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Update man page for dm.xfs_nospace_max_retries
This option was added through commit
0d03c060c7
,
but didn't update the man page.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
2a8b556ea5
commit
41c6083c34
1 changed files with 15 additions and 0 deletions
|
@ -533,6 +533,21 @@ the issue.
|
||||||
|
|
||||||
Example use:: `dockerd --storage-opt dm.min_free_space=10%`
|
Example use:: `dockerd --storage-opt dm.min_free_space=10%`
|
||||||
|
|
||||||
|
#### dm.xfs_nospace_max_retries
|
||||||
|
|
||||||
|
Specifies the maximum number of retries XFS should attempt to complete
|
||||||
|
IO when ENOSPC (no space) error is returned by underlying storage device.
|
||||||
|
|
||||||
|
By default XFS retries infinitely for IO to finish and this can result
|
||||||
|
in unkillable process. To change this behavior one can set
|
||||||
|
xfs_nospace_max_retries to say 0 and XFS will not retry IO after getting
|
||||||
|
ENOSPC and will shutdown filesystem.
|
||||||
|
|
||||||
|
Example use:
|
||||||
|
|
||||||
|
$ sudo dockerd --storage-opt dm.xfs_nospace_max_retries=0
|
||||||
|
|
||||||
|
|
||||||
## ZFS options
|
## ZFS options
|
||||||
|
|
||||||
#### zfs.fsname
|
#### zfs.fsname
|
||||||
|
|
Loading…
Reference in a new issue