mirror of
https://github.com/pgsty/minio.git
synced 2026-07-20 20:50:22 +03:00
posix: Use sync.Pool buffers to copy in large buffers. (#3106)
These fixes are borrowed from the fixes required for GlusterFS i/o throughput.
This commit is contained in:
@@ -27,7 +27,7 @@ const (
|
||||
blockSizeV1 = 10 * 1024 * 1024 // 10MiB.
|
||||
|
||||
// Staging buffer read size for all internal operations version 1.
|
||||
readSizeV1 = 128 * 1024 // 128KiB.
|
||||
readSizeV1 = 1 * 1024 * 1024 // 1MiB.
|
||||
|
||||
// Buckets meta prefix.
|
||||
bucketMetaPrefix = "buckets"
|
||||
|
||||
Reference in New Issue
Block a user