2019-05-22 21:16:55 +00:00
|
|
|
package filestream
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
2023-10-04 14:18:40 +00:00
|
|
|
"flag"
|
2019-05-22 21:16:55 +00:00
|
|
|
"fmt"
|
2019-11-07 19:05:39 +00:00
|
|
|
"io"
|
2019-05-22 21:16:55 +00:00
|
|
|
"os"
|
|
|
|
"sync"
|
2021-12-02 07:12:31 +00:00
|
|
|
"time"
|
2019-05-22 21:16:55 +00:00
|
|
|
|
testing: allow disabling fsync to make tests run faster (#6871)
### Describe Your Changes
fsync() ensures that the data is written to disk. In production this is
needed for data durability. However, during the development, when the
unit tests are run, this level of durability is not needed. Therefore
fsync() can be disabled which will makes test runs two times faster.
The disabling is done by setting the `DISABLE_FSYNC_FOR_TESTING`
environment variable. The valid values for this variable are the same as
the values of the arg of `go doc strconv.ParseBool`:
```
1, t, T, TRUE, true, True, 0, f, F, FALSE, false, False.
```
Any other value means `false`.
The variable is set for all test build targets. Compare running times:
Build Target | DISABLE_FSYNC_FOR_TESTING=0 | DISABLE_FSYNC_FOR_TESTING=1
----------------- | ------------------------------------------------ |
-------------------------------------------------
make test | 1m5s | 0m22s
make test-race | 3m1s | 1m42s
make test-pure | 1m7s | 0m20s
make test-full | 1m21s | 0m32s
make test-full-386 | 1m42s | 0m36s
When running tests for a given package, fsync can be disabled as
follows:
```shell
DISABLE_FSYNC_FOR_TESTING=1 go test ./lib/storage
```
Disabling fsync() is intended for testing purposes only and the name of
the variables reflects that.
What could also have been done but haven't:
- lib/filestream/filestream.go: `Writer.MustFlush()` also uses f.Sync()
but nothing has been done to it, because the Writer.MustFlush() is not
used anywhere in the VM codebase. A side question: what is the general
policy for the unused code?
- lib/filestream/filestream.go: Writer.Write() calls `adviceDontNeed()`
which calls unix.Fdatasync(). Disabling it could potentially improve
running time, but running tests with this code disabled has shown
otherwise.
### Checklist
The following checks are **mandatory**:
- [ x] My change adheres [VictoriaMetrics contributing
guidelines](https://docs.victoriametrics.com/contributing/).
---------
Signed-off-by: Artem Fetishev <wwctrsrx@gmail.com>
2024-08-30 08:54:46 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/envutil"
|
2019-05-22 21:16:55 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/memory"
|
|
|
|
"github.com/VictoriaMetrics/metrics"
|
|
|
|
)
|
|
|
|
|
2023-10-04 14:18:40 +00:00
|
|
|
var disableFadvise = flag.Bool("filestream.disableFadvise", false, "Whether to disable fadvise() syscall when reading large data files. "+
|
|
|
|
"The fadvise() syscall prevents from eviction of recently accessed data from OS page cache during background merges and backups. "+
|
|
|
|
"In some rare cases it is better to disable the syscall if it uses too much CPU")
|
|
|
|
|
testing: allow disabling fsync to make tests run faster (#6871)
### Describe Your Changes
fsync() ensures that the data is written to disk. In production this is
needed for data durability. However, during the development, when the
unit tests are run, this level of durability is not needed. Therefore
fsync() can be disabled which will makes test runs two times faster.
The disabling is done by setting the `DISABLE_FSYNC_FOR_TESTING`
environment variable. The valid values for this variable are the same as
the values of the arg of `go doc strconv.ParseBool`:
```
1, t, T, TRUE, true, True, 0, f, F, FALSE, false, False.
```
Any other value means `false`.
The variable is set for all test build targets. Compare running times:
Build Target | DISABLE_FSYNC_FOR_TESTING=0 | DISABLE_FSYNC_FOR_TESTING=1
----------------- | ------------------------------------------------ |
-------------------------------------------------
make test | 1m5s | 0m22s
make test-race | 3m1s | 1m42s
make test-pure | 1m7s | 0m20s
make test-full | 1m21s | 0m32s
make test-full-386 | 1m42s | 0m36s
When running tests for a given package, fsync can be disabled as
follows:
```shell
DISABLE_FSYNC_FOR_TESTING=1 go test ./lib/storage
```
Disabling fsync() is intended for testing purposes only and the name of
the variables reflects that.
What could also have been done but haven't:
- lib/filestream/filestream.go: `Writer.MustFlush()` also uses f.Sync()
but nothing has been done to it, because the Writer.MustFlush() is not
used anywhere in the VM codebase. A side question: what is the general
policy for the unused code?
- lib/filestream/filestream.go: Writer.Write() calls `adviceDontNeed()`
which calls unix.Fdatasync(). Disabling it could potentially improve
running time, but running tests with this code disabled has shown
otherwise.
### Checklist
The following checks are **mandatory**:
- [ x] My change adheres [VictoriaMetrics contributing
guidelines](https://docs.victoriametrics.com/contributing/).
---------
Signed-off-by: Artem Fetishev <wwctrsrx@gmail.com>
2024-08-30 08:54:46 +00:00
|
|
|
var disableFSyncForTesting = envutil.GetenvBool("DISABLE_FSYNC_FOR_TESTING")
|
|
|
|
|
2019-05-22 21:16:55 +00:00
|
|
|
const dontNeedBlockSize = 16 * 1024 * 1024
|
|
|
|
|
|
|
|
// ReadCloser is a standard interface for filestream Reader.
|
|
|
|
type ReadCloser interface {
|
2023-04-14 21:32:43 +00:00
|
|
|
Path() string
|
2019-05-22 21:16:55 +00:00
|
|
|
Read(p []byte) (int, error)
|
|
|
|
MustClose()
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteCloser is a standard interface for filestream Writer.
|
|
|
|
type WriteCloser interface {
|
2023-04-14 21:32:43 +00:00
|
|
|
Path() string
|
2019-05-22 21:16:55 +00:00
|
|
|
Write(p []byte) (int, error)
|
|
|
|
MustClose()
|
|
|
|
}
|
|
|
|
|
|
|
|
func getBufferSize() int {
|
|
|
|
bufferSizeOnce.Do(func() {
|
|
|
|
n := memory.Allowed() / 1024 / 8
|
|
|
|
if n < 4*1024 {
|
|
|
|
n = 4 * 1024
|
|
|
|
}
|
|
|
|
if n > 512*1024 {
|
|
|
|
n = 512 * 1024
|
|
|
|
}
|
|
|
|
bufferSize = n
|
|
|
|
})
|
|
|
|
return bufferSize
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
bufferSize int
|
|
|
|
bufferSizeOnce sync.Once
|
|
|
|
)
|
|
|
|
|
|
|
|
// Reader implements buffered file reader.
|
|
|
|
type Reader struct {
|
|
|
|
f *os.File
|
|
|
|
br *bufio.Reader
|
|
|
|
st streamTracker
|
|
|
|
}
|
|
|
|
|
2023-04-14 21:32:43 +00:00
|
|
|
// Path returns the path to r
|
|
|
|
func (r *Reader) Path() string {
|
|
|
|
return r.f.Name()
|
|
|
|
}
|
|
|
|
|
2019-11-07 19:05:39 +00:00
|
|
|
// OpenReaderAt opens the file at the given path in nocache mode at the given offset.
|
|
|
|
//
|
|
|
|
// If nocache is set, then the reader doesn't pollute OS page cache.
|
|
|
|
func OpenReaderAt(path string, offset int64, nocache bool) (*Reader, error) {
|
2023-04-14 22:03:39 +00:00
|
|
|
r := MustOpen(path, nocache)
|
2019-11-07 19:05:39 +00:00
|
|
|
n, err := r.f.Seek(offset, io.SeekStart)
|
|
|
|
if err != nil {
|
|
|
|
r.MustClose()
|
2020-06-30 19:58:18 +00:00
|
|
|
return nil, fmt.Errorf("cannot seek to offset=%d for %q: %w", offset, path, err)
|
2019-11-07 19:05:39 +00:00
|
|
|
}
|
|
|
|
if n != offset {
|
|
|
|
r.MustClose()
|
|
|
|
return nil, fmt.Errorf("invalid seek offset for %q; got %d; want %d", path, n, offset)
|
|
|
|
}
|
|
|
|
return r, nil
|
|
|
|
}
|
|
|
|
|
2023-04-14 22:03:39 +00:00
|
|
|
// MustOpen opens the file from the given path in nocache mode.
|
2019-05-22 21:16:55 +00:00
|
|
|
//
|
|
|
|
// If nocache is set, then the reader doesn't pollute OS page cache.
|
2023-04-14 22:03:39 +00:00
|
|
|
func MustOpen(path string, nocache bool) *Reader {
|
2019-05-22 21:16:55 +00:00
|
|
|
f, err := os.Open(path)
|
|
|
|
if err != nil {
|
2023-04-14 22:03:39 +00:00
|
|
|
logger.Panicf("FATAL: cannot open file: %s", err)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
r := &Reader{
|
|
|
|
f: f,
|
|
|
|
br: getBufioReader(f),
|
|
|
|
}
|
2023-10-04 14:18:40 +00:00
|
|
|
if *disableFadvise {
|
|
|
|
// Unconditionally disable fadvise() syscall
|
|
|
|
// See https://github.com/VictoriaMetrics/VictoriaMetrics/pull/5120 for details on why this is needed
|
|
|
|
nocache = false
|
|
|
|
}
|
2019-05-22 21:16:55 +00:00
|
|
|
if nocache {
|
|
|
|
r.st.fd = f.Fd()
|
|
|
|
}
|
|
|
|
readersCount.Inc()
|
2023-04-14 22:03:39 +00:00
|
|
|
return r
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
|
2023-04-14 22:03:39 +00:00
|
|
|
// MustClose closes the underlying file passed to MustOpen.
|
2019-05-22 21:16:55 +00:00
|
|
|
func (r *Reader) MustClose() {
|
|
|
|
if err := r.st.close(); err != nil {
|
|
|
|
logger.Panicf("FATAL: cannot close streamTracker for file %q: %s", r.f.Name(), err)
|
|
|
|
}
|
|
|
|
if err := r.f.Close(); err != nil {
|
|
|
|
logger.Panicf("FATAL: cannot close file %q: %s", r.f.Name(), err)
|
|
|
|
}
|
|
|
|
r.f = nil
|
|
|
|
|
|
|
|
putBufioReader(r.br)
|
|
|
|
r.br = nil
|
|
|
|
|
|
|
|
readersCount.Dec()
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2021-12-02 07:12:31 +00:00
|
|
|
readDuration = metrics.NewFloatCounter(`vm_filestream_read_duration_seconds_total`)
|
2019-05-22 21:16:55 +00:00
|
|
|
readCallsBuffered = metrics.NewCounter(`vm_filestream_buffered_read_calls_total`)
|
|
|
|
readCallsReal = metrics.NewCounter(`vm_filestream_real_read_calls_total`)
|
|
|
|
readBytesBuffered = metrics.NewCounter(`vm_filestream_buffered_read_bytes_total`)
|
|
|
|
readBytesReal = metrics.NewCounter(`vm_filestream_real_read_bytes_total`)
|
|
|
|
readersCount = metrics.NewCounter(`vm_filestream_readers`)
|
|
|
|
)
|
|
|
|
|
|
|
|
// Read reads file contents to p.
|
|
|
|
func (r *Reader) Read(p []byte) (int, error) {
|
|
|
|
readCallsBuffered.Inc()
|
|
|
|
n, err := r.br.Read(p)
|
|
|
|
readBytesBuffered.Add(n)
|
|
|
|
if err != nil {
|
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
if err := r.st.adviseDontNeed(n, false); err != nil {
|
2020-06-30 19:58:18 +00:00
|
|
|
return n, fmt.Errorf("advise error for %q: %w", r.f.Name(), err)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
return n, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type statReader struct {
|
|
|
|
*os.File
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sr *statReader) Read(p []byte) (int, error) {
|
2024-01-23 12:48:44 +00:00
|
|
|
startTime := time.Now()
|
2019-05-22 21:16:55 +00:00
|
|
|
readCallsReal.Inc()
|
|
|
|
n, err := sr.File.Read(p)
|
2024-01-23 12:48:44 +00:00
|
|
|
d := time.Since(startTime).Seconds()
|
|
|
|
readDuration.Add(d)
|
2019-05-22 21:16:55 +00:00
|
|
|
readBytesReal.Add(n)
|
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func getBufioReader(f *os.File) *bufio.Reader {
|
|
|
|
sr := &statReader{f}
|
|
|
|
v := brPool.Get()
|
|
|
|
if v == nil {
|
|
|
|
return bufio.NewReaderSize(sr, getBufferSize())
|
|
|
|
}
|
|
|
|
br := v.(*bufio.Reader)
|
|
|
|
br.Reset(sr)
|
|
|
|
return br
|
|
|
|
}
|
|
|
|
|
|
|
|
func putBufioReader(br *bufio.Reader) {
|
|
|
|
brPool.Put(br)
|
|
|
|
}
|
|
|
|
|
|
|
|
var brPool sync.Pool
|
|
|
|
|
|
|
|
// Writer implements buffered file writer.
|
|
|
|
type Writer struct {
|
|
|
|
f *os.File
|
|
|
|
bw *bufio.Writer
|
|
|
|
st streamTracker
|
|
|
|
}
|
|
|
|
|
2023-04-14 21:32:43 +00:00
|
|
|
// Path returns the path to r
|
|
|
|
func (w *Writer) Path() string {
|
|
|
|
return w.f.Name()
|
|
|
|
}
|
|
|
|
|
2019-11-07 19:05:39 +00:00
|
|
|
// OpenWriterAt opens the file at path in nocache mode for writing at the given offset.
|
|
|
|
//
|
|
|
|
// The file at path is created if it is missing.
|
|
|
|
//
|
|
|
|
// If nocache is set, the writer doesn't pollute OS page cache.
|
|
|
|
func OpenWriterAt(path string, offset int64, nocache bool) (*Writer, error) {
|
|
|
|
f, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE, 0600)
|
|
|
|
if err != nil {
|
2022-12-04 06:01:51 +00:00
|
|
|
return nil, err
|
2019-11-07 19:05:39 +00:00
|
|
|
}
|
|
|
|
n, err := f.Seek(offset, io.SeekStart)
|
|
|
|
if err != nil {
|
|
|
|
_ = f.Close()
|
2020-06-30 19:58:18 +00:00
|
|
|
return nil, fmt.Errorf("cannot seek to offset=%d in %q: %w", offset, path, err)
|
2019-11-07 19:05:39 +00:00
|
|
|
}
|
|
|
|
if n != offset {
|
|
|
|
_ = f.Close()
|
|
|
|
return nil, fmt.Errorf("invalid seek offset for %q; got %d; want %d", path, n, offset)
|
|
|
|
}
|
|
|
|
return newWriter(f, nocache), nil
|
|
|
|
}
|
|
|
|
|
2023-04-14 22:12:45 +00:00
|
|
|
// MustCreate creates the file for the given path in nocache mode.
|
2019-05-22 21:16:55 +00:00
|
|
|
//
|
|
|
|
// If nocache is set, the writer doesn't pollute OS page cache.
|
2023-04-14 22:12:45 +00:00
|
|
|
func MustCreate(path string, nocache bool) *Writer {
|
2019-05-22 21:16:55 +00:00
|
|
|
f, err := os.Create(path)
|
|
|
|
if err != nil {
|
2023-04-14 22:12:45 +00:00
|
|
|
logger.Panicf("FATAL: cannot create file %q: %s", path, err)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
2023-04-14 22:12:45 +00:00
|
|
|
return newWriter(f, nocache)
|
2019-11-07 19:05:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func newWriter(f *os.File, nocache bool) *Writer {
|
2019-05-22 21:16:55 +00:00
|
|
|
w := &Writer{
|
|
|
|
f: f,
|
|
|
|
bw: getBufioWriter(f),
|
|
|
|
}
|
|
|
|
if nocache {
|
|
|
|
w.st.fd = f.Fd()
|
|
|
|
}
|
|
|
|
writersCount.Inc()
|
2019-11-07 19:05:39 +00:00
|
|
|
return w
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MustClose syncs the underlying file to storage and then closes it.
|
|
|
|
func (w *Writer) MustClose() {
|
|
|
|
if err := w.bw.Flush(); err != nil {
|
2020-02-23 11:35:47 +00:00
|
|
|
logger.Panicf("FATAL: cannot flush buffered data to file %q: %s", w.f.Name(), err)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
putBufioWriter(w.bw)
|
|
|
|
w.bw = nil
|
|
|
|
|
testing: allow disabling fsync to make tests run faster (#6871)
### Describe Your Changes
fsync() ensures that the data is written to disk. In production this is
needed for data durability. However, during the development, when the
unit tests are run, this level of durability is not needed. Therefore
fsync() can be disabled which will makes test runs two times faster.
The disabling is done by setting the `DISABLE_FSYNC_FOR_TESTING`
environment variable. The valid values for this variable are the same as
the values of the arg of `go doc strconv.ParseBool`:
```
1, t, T, TRUE, true, True, 0, f, F, FALSE, false, False.
```
Any other value means `false`.
The variable is set for all test build targets. Compare running times:
Build Target | DISABLE_FSYNC_FOR_TESTING=0 | DISABLE_FSYNC_FOR_TESTING=1
----------------- | ------------------------------------------------ |
-------------------------------------------------
make test | 1m5s | 0m22s
make test-race | 3m1s | 1m42s
make test-pure | 1m7s | 0m20s
make test-full | 1m21s | 0m32s
make test-full-386 | 1m42s | 0m36s
When running tests for a given package, fsync can be disabled as
follows:
```shell
DISABLE_FSYNC_FOR_TESTING=1 go test ./lib/storage
```
Disabling fsync() is intended for testing purposes only and the name of
the variables reflects that.
What could also have been done but haven't:
- lib/filestream/filestream.go: `Writer.MustFlush()` also uses f.Sync()
but nothing has been done to it, because the Writer.MustFlush() is not
used anywhere in the VM codebase. A side question: what is the general
policy for the unused code?
- lib/filestream/filestream.go: Writer.Write() calls `adviceDontNeed()`
which calls unix.Fdatasync(). Disabling it could potentially improve
running time, but running tests with this code disabled has shown
otherwise.
### Checklist
The following checks are **mandatory**:
- [ x] My change adheres [VictoriaMetrics contributing
guidelines](https://docs.victoriametrics.com/contributing/).
---------
Signed-off-by: Artem Fetishev <wwctrsrx@gmail.com>
2024-08-30 08:54:46 +00:00
|
|
|
if !disableFSyncForTesting {
|
|
|
|
if err := w.f.Sync(); err != nil {
|
|
|
|
logger.Panicf("FATAL: cannot sync file %q: %d", w.f.Name(), err)
|
|
|
|
}
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
if err := w.st.close(); err != nil {
|
|
|
|
logger.Panicf("FATAL: cannot close streamTracker for file %q: %s", w.f.Name(), err)
|
|
|
|
}
|
|
|
|
if err := w.f.Close(); err != nil {
|
|
|
|
logger.Panicf("FATAL: cannot close file %q: %s", w.f.Name(), err)
|
|
|
|
}
|
|
|
|
w.f = nil
|
|
|
|
|
|
|
|
writersCount.Dec()
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2021-12-02 07:12:31 +00:00
|
|
|
writeDuration = metrics.NewFloatCounter(`vm_filestream_write_duration_seconds_total`)
|
2019-05-22 21:16:55 +00:00
|
|
|
writeCallsBuffered = metrics.NewCounter(`vm_filestream_buffered_write_calls_total`)
|
|
|
|
writeCallsReal = metrics.NewCounter(`vm_filestream_real_write_calls_total`)
|
|
|
|
writtenBytesBuffered = metrics.NewCounter(`vm_filestream_buffered_written_bytes_total`)
|
|
|
|
writtenBytesReal = metrics.NewCounter(`vm_filestream_real_written_bytes_total`)
|
|
|
|
writersCount = metrics.NewCounter(`vm_filestream_writers`)
|
|
|
|
)
|
|
|
|
|
|
|
|
// Write writes p to the underlying file.
|
|
|
|
func (w *Writer) Write(p []byte) (int, error) {
|
|
|
|
writeCallsBuffered.Inc()
|
|
|
|
n, err := w.bw.Write(p)
|
|
|
|
writtenBytesBuffered.Add(n)
|
|
|
|
if err != nil {
|
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
if err := w.st.adviseDontNeed(n, true); err != nil {
|
2020-06-30 19:58:18 +00:00
|
|
|
return n, fmt.Errorf("advise error for %q: %w", w.f.Name(), err)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
return n, nil
|
|
|
|
}
|
|
|
|
|
2020-02-23 11:35:47 +00:00
|
|
|
// MustFlush flushes all the buffered data to file.
|
2020-09-19 09:51:32 +00:00
|
|
|
//
|
|
|
|
// if isSync is true, then the flushed data is fsynced to the underlying storage.
|
|
|
|
func (w *Writer) MustFlush(isSync bool) {
|
2021-12-02 07:12:31 +00:00
|
|
|
startTime := time.Now()
|
|
|
|
defer func() {
|
|
|
|
d := time.Since(startTime).Seconds()
|
|
|
|
writeDuration.Add(d)
|
|
|
|
}()
|
2020-02-23 11:35:47 +00:00
|
|
|
if err := w.bw.Flush(); err != nil {
|
|
|
|
logger.Panicf("FATAL: cannot flush buffered data to file %q: %s", w.f.Name(), err)
|
|
|
|
}
|
2020-09-19 09:51:32 +00:00
|
|
|
if isSync {
|
|
|
|
if err := w.f.Sync(); err != nil {
|
|
|
|
logger.Panicf("FATAL: cannot fsync data to the underlying storage for file %q: %s", w.f.Name(), err)
|
|
|
|
}
|
|
|
|
}
|
2020-02-23 11:35:47 +00:00
|
|
|
}
|
|
|
|
|
2019-05-22 21:16:55 +00:00
|
|
|
type statWriter struct {
|
|
|
|
*os.File
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sw *statWriter) Write(p []byte) (int, error) {
|
2024-01-23 12:48:44 +00:00
|
|
|
startTime := time.Now()
|
2019-05-22 21:16:55 +00:00
|
|
|
writeCallsReal.Inc()
|
|
|
|
n, err := sw.File.Write(p)
|
2024-01-23 12:48:44 +00:00
|
|
|
d := time.Since(startTime).Seconds()
|
|
|
|
writeDuration.Add(d)
|
2019-05-22 21:16:55 +00:00
|
|
|
writtenBytesReal.Add(n)
|
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func getBufioWriter(f *os.File) *bufio.Writer {
|
|
|
|
sw := &statWriter{f}
|
|
|
|
v := bwPool.Get()
|
|
|
|
if v == nil {
|
|
|
|
return bufio.NewWriterSize(sw, getBufferSize())
|
|
|
|
}
|
|
|
|
bw := v.(*bufio.Writer)
|
|
|
|
bw.Reset(sw)
|
|
|
|
return bw
|
|
|
|
}
|
|
|
|
|
|
|
|
func putBufioWriter(bw *bufio.Writer) {
|
|
|
|
bwPool.Put(bw)
|
|
|
|
}
|
|
|
|
|
|
|
|
var bwPool sync.Pool
|
|
|
|
|
|
|
|
type streamTracker struct {
|
|
|
|
fd uintptr
|
2024-01-16 00:55:06 +00:00
|
|
|
offset uint64
|
|
|
|
length uint64
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|