mirror of
https://github.com/minio/minio.git
synced 2025-04-04 20:00:31 -04:00
fix: tweak read buffer size to reduce over-reading (#16338)
This commit is contained in:
parent
49b3908635
commit
6a04067514
@ -1796,15 +1796,9 @@ func (s *xlStorage) ReadFileStream(ctx context.Context, volume, path string, off
|
|||||||
}
|
}
|
||||||
|
|
||||||
or := &xioutil.ODirectReader{
|
or := &xioutil.ODirectReader{
|
||||||
File: file,
|
File: file,
|
||||||
SmallFile: false,
|
// Select bigger blocks when reading at least 50% of a big block.
|
||||||
}
|
SmallFile: length <= xioutil.BlockSizeLarge/2,
|
||||||
|
|
||||||
if length <= smallFileThreshold {
|
|
||||||
or = &xioutil.ODirectReader{
|
|
||||||
File: file,
|
|
||||||
SmallFile: true,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
r := struct {
|
r := struct {
|
||||||
|
@ -81,6 +81,10 @@ func ReadFile(name string) ([]byte, error) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return io.ReadAll(r)
|
return io.ReadAll(r)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Select bigger blocks when reading at least 50% of a big block.
|
||||||
|
r.SmallFile = st.Size() <= BlockSizeLarge/2
|
||||||
|
|
||||||
dst := make([]byte, st.Size())
|
dst := make([]byte, st.Size())
|
||||||
_, err = io.ReadFull(r, dst)
|
_, err = io.ReadFull(r, dst)
|
||||||
return dst, err
|
return dst, err
|
||||||
|
Loading…
x
Reference in New Issue
Block a user