mirror of
https://github.com/minio/minio.git
synced 2024-12-25 06:35:56 -05: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
@ -107,7 +107,7 @@ const (
|
|||||||
maxBucketSSEConfigSize = 1 * humanize.MiByte
|
maxBucketSSEConfigSize = 1 * humanize.MiByte
|
||||||
|
|
||||||
// diskFillFraction is the fraction of a disk we allow to be filled.
|
// 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 is the size to assume when an unknown size upload is requested.
|
||||||
diskAssumeUnknownSize = 1 << 30
|
diskAssumeUnknownSize = 1 << 30
|
||||||
|
Loading…
Reference in New Issue
Block a user