mirror of
https://github.com/minio/minio
synced 2024-11-05 17:34:01 +00:00
allow diskFillFraction to be 99% (#12879)
larger 4-8TiB sized disks would return error prematurely even with sufficient amount of disk space left, increase diskFillFraction to 1%
This commit is contained in:
parent
4d8f81a992
commit
b10f823907
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ const (
|
|||
maxBucketSSEConfigSize = 1 * humanize.MiByte
|
||||
|
||||
// diskFillFraction is the fraction of a disk we allow to be filled.
|
||||
diskFillFraction = 0.95
|
||||
diskFillFraction = 0.99
|
||||
|
||||
// diskAssumeUnknownSize is the size to assume when an unknown size upload is requested.
|
||||
diskAssumeUnknownSize = 1 << 30
|
||||
|
|
Loading…
Reference in a new issue