2018-05-28 19:30:17 +00:00
|
|
|
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"
|
2020-10-15 18:08:45 +00:00
|
|
|
"time"
|
2020-10-21 09:16:21 +00:00
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2020-10-24 06:05:55 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2020-10-21 09:16:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
concurrentWriterLimit = runtime.NumCPU()
|
2020-10-25 03:12:04 +00:00
|
|
|
concurrentWriters = util.NewLimitedConcurrentExecutor(4 * concurrentWriterLimit)
|
2018-05-28 19:30:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type ContinuousDirtyPages struct {
|
2020-10-16 19:54:23 +00:00
|
|
|
intervals *ContinuousIntervals
|
|
|
|
f *File
|
|
|
|
writeWaitGroup sync.WaitGroup
|
|
|
|
chunkSaveErrChan chan error
|
|
|
|
chunkSaveErrChanClosed bool
|
2020-10-21 09:16:21 +00:00
|
|
|
lastErr error
|
2020-10-16 19:54:23 +00:00
|
|
|
lock sync.Mutex
|
|
|
|
collection string
|
|
|
|
replication string
|
2018-05-28 19:30:17 +00:00
|
|
|
}
|
|
|
|
|
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,
|
2020-10-21 09:16:21 +00:00
|
|
|
chunkSaveErrChan: make(chan error, concurrentWriterLimit),
|
2018-05-28 19:30:17 +00:00
|
|
|
}
|
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
|
|
|
}
|
2018-05-28 19:30:17 +00:00
|
|
|
|
2020-10-15 06:28:03 +00:00
|
|
|
func (pages *ContinuousDirtyPages) AddPage(offset int64, data []byte) {
|
2018-05-31 05:02:21 +00:00
|
|
|
|
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)
|
2018-05-28 19:30:17 +00:00
|
|
|
|
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)
|
2018-05-28 19:30:17 +00:00
|
|
|
}
|
|
|
|
|
2020-01-26 21:01:11 +00:00
|
|
|
pages.intervals.AddInterval(data, offset)
|
2018-05-28 19:30:17 +00:00
|
|
|
|
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()
|
2018-09-07 20:11:43 +00:00
|
|
|
}
|
2018-09-10 09:21:57 +00:00
|
|
|
|
2018-05-28 19:30:17 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-15 06:28:03 +00:00
|
|
|
func (pages *ContinuousDirtyPages) flushAndSave(offset int64, data []byte) {
|
2018-09-10 09:21:57 +00:00
|
|
|
|
|
|
|
// flush existing
|
2020-10-15 06:28:03 +00:00
|
|
|
pages.saveExistingPagesToStorage()
|
2018-09-10 09:21:57 +00:00
|
|
|
|
|
|
|
// flush the new page
|
2020-10-15 06:28:03 +00:00
|
|
|
pages.saveToStorage(bytes.NewReader(data), offset, int64(len(data)))
|
2018-09-10 09:21:57 +00:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-15 06:28:03 +00:00
|
|
|
func (pages *ContinuousDirtyPages) saveExistingPagesToStorage() {
|
|
|
|
for pages.saveExistingLargestPageToStorage() {
|
2018-05-28 19:30:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-15 06:28:03 +00:00
|
|
|
func (pages *ContinuousDirtyPages) saveExistingLargestPageToStorage() (hasSavedData bool) {
|
2018-09-07 20:11:43 +00:00
|
|
|
|
2020-01-23 07:00:04 +00:00
|
|
|
maxList := pages.intervals.RemoveLargestIntervalLinkedList()
|
|
|
|
if maxList == nil {
|
2020-10-15 06:28:03 +00:00
|
|
|
return false
|
2018-09-07 20:11:43 +00:00
|
|
|
}
|
|
|
|
|
2020-08-15 16:32:47 +00:00
|
|
|
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-01-23 07:00:04 +00:00
|
|
|
}
|
2020-01-21 04:21:01 +00:00
|
|
|
|
2020-10-15 06:28:03 +00:00
|
|
|
pages.saveToStorage(maxList.ToReader(), maxList.Offset(), chunkSize)
|
|
|
|
|
|
|
|
return true
|
2018-05-31 05:02:21 +00:00
|
|
|
}
|
|
|
|
|
2020-10-15 06:28:03 +00:00
|
|
|
func (pages *ContinuousDirtyPages) saveToStorage(reader io.Reader, offset int64, size int64) {
|
2018-05-28 19:30:17 +00:00
|
|
|
|
2020-10-16 19:54:23 +00:00
|
|
|
if pages.chunkSaveErrChanClosed {
|
2020-10-21 09:42:23 +00:00
|
|
|
pages.chunkSaveErrChan = make(chan error, concurrentWriterLimit)
|
2020-10-16 19:54:23 +00:00
|
|
|
pages.chunkSaveErrChanClosed = false
|
|
|
|
}
|
|
|
|
|
2020-10-15 18:08:45 +00:00
|
|
|
mtime := time.Now().UnixNano()
|
2020-10-15 06:28:03 +00:00
|
|
|
pages.writeWaitGroup.Add(1)
|
2020-10-24 09:05:05 +00:00
|
|
|
go func() {
|
2020-10-15 06:28:03 +00:00
|
|
|
defer pages.writeWaitGroup.Done()
|
2020-02-25 06:28:45 +00:00
|
|
|
|
2020-10-15 06:28:03 +00:00
|
|
|
dir, _ := pages.f.fullpath().DirAndName()
|
2018-05-28 19:30:17 +00:00
|
|
|
|
2020-10-15 06:28:03 +00:00
|
|
|
reader = io.LimitReader(reader, size)
|
|
|
|
chunk, collection, replication, err := pages.f.wfs.saveDataAsChunk(dir)(reader, pages.f.Name, offset)
|
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infof("%s saveToStorage [%d,%d): %v", pages.f.fullpath(), offset, offset+size, err)
|
|
|
|
pages.chunkSaveErrChan <- err
|
|
|
|
return
|
|
|
|
}
|
2020-10-15 18:08:45 +00:00
|
|
|
chunk.Mtime = mtime
|
2020-10-15 06:28:03 +00:00
|
|
|
pages.collection, pages.replication = collection, replication
|
|
|
|
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)
|
2020-10-24 09:05:05 +00:00
|
|
|
}()
|
2018-05-28 19:30:17 +00:00
|
|
|
}
|
2018-05-29 08:21:21 +00:00
|
|
|
|
|
|
|
func max(x, y int64) int64 {
|
|
|
|
if x > y {
|
|
|
|
return x
|
|
|
|
}
|
|
|
|
return y
|
|
|
|
}
|
2020-01-22 21:42:03 +00:00
|
|
|
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)
|
2020-01-22 21:42:03 +00:00
|
|
|
}
|