mirror of
https://github.com/minio/minio.git
synced 2025-11-07 12:52:58 -05:00
fix: increase the tiering part size to 128MiB (#19424)
also introduce 8MiB buffer to read from for bigger parts
This commit is contained in:
@@ -42,7 +42,7 @@ const (
|
||||
maxMultipartPutObjectSize = 1024 * 1024 * 1024 * 1024 * 5
|
||||
maxPartsCount = 10000
|
||||
maxPartSize = 1024 * 1024 * 1024 * 5
|
||||
minPartSize = 1024 * 1024 * 64 // chosen by us to be optimal for HDDs
|
||||
minPartSize = 1024 * 1024 * 128 // chosen by us to be optimal for HDDs
|
||||
)
|
||||
|
||||
// optimalPartInfo - calculate the optimal part info for a given
|
||||
|
||||
Reference in New Issue
Block a user