2020-01-30 14:03:24 +01:00
package fs
import (
"flag"
"fmt"
"os"
2020-06-05 18:07:57 +02:00
"sync"
"sync/atomic"
"time"
2020-01-30 14:03:24 +01:00
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
"github.com/VictoriaMetrics/metrics"
"golang.org/x/sys/unix"
)
2020-05-12 19:18:57 +02:00
var disableMmap = flag . Bool ( "fs.disableMmap" , is32BitPtr , "Whether to use pread() instead of mmap() for reading data files. " +
2020-07-06 13:28:28 +02:00
"By default mmap() is used for 64-bit arches and pread() is used for 32-bit arches, since they cannot read data files bigger than 2^32 bytes in memory. " +
"mmap() is usually faster for reading small data chunks than pread()" )
2020-05-12 19:18:57 +02:00
const is32BitPtr = ( ^ uintptr ( 0 ) >> 32 ) == 0
2020-01-30 14:03:24 +01:00
// MustReadAtCloser is rand-access read interface.
type MustReadAtCloser interface {
// MustReadAt must read len(p) bytes from offset off to p.
MustReadAt ( p [ ] byte , off int64 )
// MustClose must close the reader.
MustClose ( )
}
// ReaderAt implements rand-access reader.
type ReaderAt struct {
f * os . File
mmapData [ ] byte
2020-06-05 18:07:57 +02:00
// pageCacheBitmap holds a bitmap for recently touched pages in mmapData.
// This bitmap allows using simple copy() instead of copyMmap() for reading recently touched pages,
// which is up to 4x faster when reading small chunks of data via MustReadAt.
pageCacheBitmap atomic . Value
pageCacheBitmapWG sync . WaitGroup
stopCh chan struct { }
}
type pageCacheBitmap struct {
m [ ] uint64
2020-01-30 14:03:24 +01:00
}
// MustReadAt reads len(p) bytes at off from r.
func ( r * ReaderAt ) MustReadAt ( p [ ] byte , off int64 ) {
if len ( p ) == 0 {
return
}
2020-06-05 18:07:57 +02:00
if off < 0 {
logger . Panicf ( "off=%d cannot be negative" , off )
}
end := off + int64 ( len ( p ) )
if len ( r . mmapData ) == 0 || ( len ( p ) > 8 * 1024 && ! r . isInPageCache ( off , end ) ) {
2020-01-30 14:03:24 +01:00
// Read big blocks directly from file.
// This could be faster than reading these blocks from mmap,
// since it triggers less page faults.
n , err := r . f . ReadAt ( p , off )
if err != nil {
logger . Panicf ( "FATAL: cannot read %d bytes at offset %d of file %q: %s" , len ( p ) , off , r . f . Name ( ) , err )
}
if n != len ( p ) {
logger . Panicf ( "FATAL: unexpected number of bytes read; got %d; want %d" , n , len ( p ) )
}
2020-06-05 18:07:57 +02:00
if len ( r . mmapData ) > 0 {
r . markInPageCache ( off , end )
}
2020-01-30 14:03:24 +01:00
} else {
2020-06-05 18:07:57 +02:00
if off > int64 ( len ( r . mmapData ) - len ( p ) ) {
2020-01-30 14:03:24 +01:00
logger . Panicf ( "off=%d is out of allowed range [0...%d] for len(p)=%d" , off , len ( r . mmapData ) - len ( p ) , len ( p ) )
}
2020-06-05 18:07:57 +02:00
src := r . mmapData [ off : ]
if r . isInPageCache ( off , end ) {
// It is safe copying the data with copy(), since it is likely it is in the page cache.
// This is up to 4x faster than copyMmap() below.
copy ( p , src )
} else {
// The data may be missing in the page cache, so it is better to copy it via cgo trick
// in order to avoid P stalls in Go runtime.
// See https://medium.com/@valyala/mmap-in-go-considered-harmful-d92a25cb161d for details.
copyMmap ( p , src )
r . markInPageCache ( off , end )
}
2020-01-30 14:03:24 +01:00
}
readCalls . Inc ( )
readBytes . Add ( len ( p ) )
}
2020-06-05 18:07:57 +02:00
func ( r * ReaderAt ) isInPageCache ( start , end int64 ) bool {
2020-06-23 22:02:26 +02:00
if int64 ( len ( r . mmapData ) ) - end < 4096 {
2020-06-23 21:54:56 +02:00
// If standard copy(dst, src) from Go may read beyond len(src), then this should help
// fixing SIGBUS panic from https://github.com/VictoriaMetrics/VictoriaMetrics/issues/581
return false
}
2020-06-05 18:07:57 +02:00
startBit := uint64 ( start ) / pageSize
endBit := uint64 ( end ) / pageSize
m := r . pageCacheBitmap . Load ( ) . ( * pageCacheBitmap ) . m
for startBit <= endBit {
idx := startBit / 64
off := startBit % 64
if idx >= uint64 ( len ( m ) ) {
return true
}
n := atomic . LoadUint64 ( & m [ idx ] )
if ( n >> off ) & 1 != 1 {
return false
}
startBit ++
}
return true
}
func ( r * ReaderAt ) markInPageCache ( start , end int64 ) {
startBit := uint64 ( start ) / pageSize
endBit := uint64 ( end ) / pageSize
m := r . pageCacheBitmap . Load ( ) . ( * pageCacheBitmap ) . m
for startBit <= endBit {
idx := startBit / 64
off := startBit % 64
n := atomic . LoadUint64 ( & m [ idx ] )
n |= 1 << off
// It is OK if multiple concurrent goroutines store the same m[idx].
atomic . StoreUint64 ( & m [ idx ] , n )
startBit ++
}
}
// Assume page size is 4KB
const pageSize = 4 * 1024
2020-01-30 14:03:24 +01:00
// MustClose closes r.
func ( r * ReaderAt ) MustClose ( ) {
2020-06-05 18:07:57 +02:00
close ( r . stopCh )
r . pageCacheBitmapWG . Wait ( )
2020-01-30 14:03:24 +01:00
fname := r . f . Name ( )
if len ( r . mmapData ) > 0 {
2020-06-23 12:39:12 +02:00
if err := unix . Munmap ( r . mmapData [ : cap ( r . mmapData ) ] ) ; err != nil {
2020-01-30 14:03:24 +01:00
logger . Panicf ( "FATAL: cannot unmap data for file %q: %s" , fname , err )
}
r . mmapData = nil
}
MustClose ( r . f )
r . f = nil
readersCount . Dec ( )
}
2020-11-04 15:46:10 +01:00
// MustFadviseSequentialRead hints the OS that f is read mostly sequentially.
//
// if prefetch is set, then the OS is hinted to prefetch f data.
func ( r * ReaderAt ) MustFadviseSequentialRead ( prefetch bool ) {
if err := fadviseSequentialRead ( r . f , prefetch ) ; err != nil {
logger . Panicf ( "FATAL: error in fadviseSequentialRead(%q, %v): %s" , r . f . Name ( ) , prefetch , err )
}
}
2020-11-23 08:55:38 +01:00
// MustOpenReaderAt opens ReaderAt for reading from filename.
2020-01-30 14:03:24 +01:00
//
// MustClose must be called on the returned ReaderAt when it is no longer needed.
2020-11-23 08:55:38 +01:00
func MustOpenReaderAt ( path string ) * ReaderAt {
2020-01-30 14:03:24 +01:00
f , err := os . Open ( path )
if err != nil {
2020-11-23 08:55:38 +01:00
logger . Panicf ( "FATAL: cannot open file %q for reading: %s" , path , err )
2020-01-30 14:03:24 +01:00
}
var r ReaderAt
r . f = f
2020-06-05 18:07:57 +02:00
r . stopCh = make ( chan struct { } )
2020-01-30 14:03:24 +01:00
if ! * disableMmap {
2020-06-05 18:07:57 +02:00
fi , err := f . Stat ( )
if err != nil {
2020-11-23 08:55:38 +01:00
MustClose ( f )
logger . Panicf ( "FATAL: error in fstat(%q): %s" , path , err )
2020-06-05 18:07:57 +02:00
}
size := fi . Size ( )
bm := & pageCacheBitmap {
m : make ( [ ] uint64 , 1 + size / pageSize / 64 ) ,
}
r . pageCacheBitmap . Store ( bm )
r . pageCacheBitmapWG . Add ( 1 )
go func ( ) {
defer r . pageCacheBitmapWG . Done ( )
pageCacheBitmapCleaner ( & r . pageCacheBitmap , r . stopCh )
} ( )
data , err := mmapFile ( f , size )
2020-01-30 14:03:24 +01:00
if err != nil {
MustClose ( f )
2020-11-23 08:55:38 +01:00
logger . Panicf ( "FATAL: cannot mmap %q: %s" , path , err )
2020-01-30 14:03:24 +01:00
}
r . mmapData = data
}
readersCount . Inc ( )
2020-11-23 08:55:38 +01:00
return & r
2020-01-30 14:03:24 +01:00
}
2020-06-05 18:07:57 +02:00
func pageCacheBitmapCleaner ( pcbm * atomic . Value , stopCh <- chan struct { } ) {
2021-01-26 23:21:37 +01:00
t := time . NewTicker ( time . Minute )
2020-06-05 18:07:57 +02:00
for {
select {
case <- stopCh :
t . Stop ( )
return
case <- t . C :
}
bmOld := pcbm . Load ( ) . ( * pageCacheBitmap )
bm := & pageCacheBitmap {
m : make ( [ ] uint64 , len ( bmOld . m ) ) ,
}
pcbm . Store ( bm )
}
}
2020-01-30 14:03:24 +01:00
var (
readCalls = metrics . NewCounter ( ` vm_fs_read_calls_total ` )
readBytes = metrics . NewCounter ( ` vm_fs_read_bytes_total ` )
readersCount = metrics . NewCounter ( ` vm_fs_readers ` )
)
2020-06-05 18:07:57 +02:00
func mmapFile ( f * os . File , size int64 ) ( [ ] byte , error ) {
2020-01-30 14:03:24 +01:00
if size == 0 {
return nil , nil
}
if size < 0 {
return nil , fmt . Errorf ( "got negative file size: %d bytes" , size )
}
if int64 ( int ( size ) ) != size {
return nil , fmt . Errorf ( "file is too big to be mmap'ed: %d bytes" , size )
}
2020-06-23 12:39:12 +02:00
// Round size to multiple of 4KB pages as `man 2 mmap` recommends.
// This may help preventing SIGBUS panic at https://github.com/VictoriaMetrics/VictoriaMetrics/issues/581
// The SIGBUS could occur if standard copy(dst, src) function may read beyond src bounds.
sizeOrig := size
if size % 4096 != 0 {
size += 4096 - size % 4096
}
2020-01-30 14:03:24 +01:00
data , err := unix . Mmap ( int ( f . Fd ( ) ) , 0 , int ( size ) , unix . PROT_READ , unix . MAP_SHARED )
if err != nil {
2020-06-30 21:58:18 +02:00
return nil , fmt . Errorf ( "cannot mmap file with size %d: %w" , size , err )
2020-01-30 14:03:24 +01:00
}
2020-06-23 12:39:12 +02:00
return data [ : sizeOrig ] , nil
2020-01-30 14:03:24 +01:00
}