seaweedfs/weed/filesys/dirty_page.go

149 lines
3.6 KiB
Go
Raw Normal View History

package filesys
import (
"bytes"
2020-10-15 06:28:03 +00:00
"io"
2020-10-21 09:16:21 +00:00
"runtime"
2020-10-15 06:28:03 +00:00
"sync"
"time"
2020-10-21 09:16:21 +00:00
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
)
type ContinuousDirtyPages struct {
2020-10-16 19:54:23 +00:00
intervals *ContinuousIntervals
f *File
writeWaitGroup sync.WaitGroup
2020-11-03 20:20:41 +00:00
chunkAddLock sync.Mutex
2020-10-16 19:54:23 +00:00
chunkSaveErrChan chan error
chunkSaveErrChanClosed bool
2020-10-21 09:16:21 +00:00
lastErr error
2020-10-16 19:54:23 +00:00
collection string
replication string
}
2018-05-29 08:21:21 +00:00
func newDirtyPages(file *File) *ContinuousDirtyPages {
2020-10-21 09:16:21 +00:00
dirtyPages := &ContinuousDirtyPages{
2020-10-15 06:28:03 +00:00
intervals: &ContinuousIntervals{},
f: file,
chunkSaveErrChan: make(chan error, runtime.NumCPU()),
}
2020-10-21 09:16:21 +00:00
go func() {
for t := range dirtyPages.chunkSaveErrChan {
if t != nil {
dirtyPages.lastErr = t
}
}
}()
return dirtyPages
2018-05-29 08:21:21 +00:00
}
2020-10-15 06:28:03 +00:00
func (pages *ContinuousDirtyPages) AddPage(offset int64, data []byte) {
2020-08-31 03:12:04 +00:00
glog.V(4).Infof("%s AddPage [%d,%d) of %d bytes", pages.f.fullpath(), offset, offset+int64(len(data)), pages.f.entry.Attributes.FileSize)
2019-01-01 10:14:40 +00:00
if len(data) > int(pages.f.wfs.option.ChunkSizeLimit) {
2018-05-31 05:09:24 +00:00
// this is more than what buffer can hold.
2020-10-15 06:28:03 +00:00
pages.flushAndSave(offset, data)
}
2020-01-26 21:01:11 +00:00
pages.intervals.AddInterval(data, offset)
2020-10-22 02:29:51 +00:00
if pages.intervals.TotalSize() >= pages.f.wfs.option.ChunkSizeLimit {
2020-10-15 06:28:03 +00:00
pages.saveExistingLargestPageToStorage()
}
return
}
2020-10-15 06:28:03 +00:00
func (pages *ContinuousDirtyPages) flushAndSave(offset int64, data []byte) {
// flush existing
2020-10-15 06:28:03 +00:00
pages.saveExistingPagesToStorage()
// flush the new page
2020-10-15 06:28:03 +00:00
pages.saveToStorage(bytes.NewReader(data), offset, int64(len(data)))
return
}
2020-10-15 06:28:03 +00:00
func (pages *ContinuousDirtyPages) saveExistingPagesToStorage() {
for pages.saveExistingLargestPageToStorage() {
}
}
2020-10-15 06:28:03 +00:00
func (pages *ContinuousDirtyPages) saveExistingLargestPageToStorage() (hasSavedData bool) {
maxList := pages.intervals.RemoveLargestIntervalLinkedList()
if maxList == nil {
2020-10-15 06:28:03 +00:00
return false
}
fileSize := int64(pages.f.entry.Attributes.FileSize)
2020-10-15 06:28:03 +00:00
chunkSize := min(maxList.Size(), fileSize-maxList.Offset())
if chunkSize == 0 {
return false
}
2020-10-15 06:28:03 +00:00
pages.saveToStorage(maxList.ToReader(), maxList.Offset(), chunkSize)
return true
}
2020-10-15 06:28:03 +00:00
func (pages *ContinuousDirtyPages) saveToStorage(reader io.Reader, offset int64, size int64) {
errChanSize := pages.f.wfs.option.ConcurrentWriters
if errChanSize == 0 {
errChanSize = runtime.NumCPU()
}
2020-10-16 19:54:23 +00:00
if pages.chunkSaveErrChanClosed {
pages.chunkSaveErrChan = make(chan error, errChanSize)
2020-10-16 19:54:23 +00:00
pages.chunkSaveErrChanClosed = false
}
mtime := time.Now().UnixNano()
2020-10-15 06:28:03 +00:00
pages.writeWaitGroup.Add(1)
writer := func() {
2020-10-15 06:28:03 +00:00
defer pages.writeWaitGroup.Done()
2020-10-15 06:28:03 +00:00
reader = io.LimitReader(reader, size)
chunk, collection, replication, err := pages.f.wfs.saveDataAsChunk(pages.f.fullpath())(reader, pages.f.Name, offset)
2020-10-15 06:28:03 +00:00
if err != nil {
glog.V(0).Infof("%s saveToStorage [%d,%d): %v", pages.f.fullpath(), offset, offset+size, err)
pages.chunkSaveErrChan <- err
return
}
chunk.Mtime = mtime
2020-10-15 06:28:03 +00:00
pages.collection, pages.replication = collection, replication
2020-11-03 20:20:41 +00:00
pages.chunkAddLock.Lock()
defer pages.chunkAddLock.Unlock()
2020-10-15 06:28:03 +00:00
pages.f.addChunks([]*filer_pb.FileChunk{chunk})
2020-10-21 09:17:40 +00:00
glog.V(3).Infof("%s saveToStorage [%d,%d)", pages.f.fullpath(), offset, offset+size)
}
if pages.f.wfs.concurrentWriters != nil {
pages.f.wfs.concurrentWriters.Execute(writer)
} else {
go writer()
}
}
2018-05-29 08:21:21 +00:00
func max(x, y int64) int64 {
if x > y {
return x
}
return y
}
func min(x, y int64) int64 {
if x < y {
return x
}
return y
}
2020-08-17 18:12:10 +00:00
func (pages *ContinuousDirtyPages) ReadDirtyDataAt(data []byte, startOffset int64) (maxStop int64) {
return pages.intervals.ReadDataAt(data, startOffset)
}