2020-09-01 07:21:19 +00:00
|
|
|
package filer
|
2020-07-20 00:59:43 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
2021-01-06 12:21:34 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/wdclient"
|
2020-07-20 00:59:43 +00:00
|
|
|
"io"
|
|
|
|
"math"
|
2021-09-08 02:29:42 +00:00
|
|
|
"net/url"
|
|
|
|
"strings"
|
2020-10-09 06:31:26 +00:00
|
|
|
"time"
|
2020-07-20 00:59:43 +00:00
|
|
|
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
|
|
|
)
|
|
|
|
|
2020-07-20 10:34:06 +00:00
|
|
|
const (
|
2021-07-20 01:41:41 +00:00
|
|
|
ManifestBatch = 10000
|
2020-07-20 10:34:06 +00:00
|
|
|
)
|
|
|
|
|
2020-07-20 00:59:43 +00:00
|
|
|
func HasChunkManifest(chunks []*filer_pb.FileChunk) bool {
|
|
|
|
for _, chunk := range chunks {
|
|
|
|
if chunk.IsChunkManifest {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-08-24 01:30:11 +00:00
|
|
|
func SeparateManifestChunks(chunks []*filer_pb.FileChunk) (manifestChunks, nonManifestChunks []*filer_pb.FileChunk) {
|
|
|
|
for _, c := range chunks {
|
2020-08-30 09:07:14 +00:00
|
|
|
if c.IsChunkManifest {
|
2020-08-24 01:30:11 +00:00
|
|
|
manifestChunks = append(manifestChunks, c)
|
|
|
|
} else {
|
|
|
|
nonManifestChunks = append(nonManifestChunks, c)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-07-20 06:07:22 +00:00
|
|
|
func ResolveChunkManifest(lookupFileIdFn wdclient.LookupFileIdFunctionType, chunks []*filer_pb.FileChunk, startOffset, stopOffset int64) (dataChunks, manifestChunks []*filer_pb.FileChunk, manifestResolveErr error) {
|
2020-07-20 00:59:43 +00:00
|
|
|
// TODO maybe parallel this
|
|
|
|
for _, chunk := range chunks {
|
2021-07-20 06:07:22 +00:00
|
|
|
|
|
|
|
if max(chunk.Offset, startOffset) >= min(chunk.Offset+int64(chunk.Size), stopOffset) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2020-07-20 00:59:43 +00:00
|
|
|
if !chunk.IsChunkManifest {
|
|
|
|
dataChunks = append(dataChunks, chunk)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2020-08-30 09:07:14 +00:00
|
|
|
resolvedChunks, err := ResolveOneChunkManifest(lookupFileIdFn, chunk)
|
2020-07-20 00:59:43 +00:00
|
|
|
if err != nil {
|
2020-08-30 09:07:14 +00:00
|
|
|
return chunks, nil, err
|
2020-07-20 00:59:43 +00:00
|
|
|
}
|
2020-08-30 09:07:14 +00:00
|
|
|
|
2020-07-20 00:59:43 +00:00
|
|
|
manifestChunks = append(manifestChunks, chunk)
|
|
|
|
// recursive
|
2021-07-20 06:07:22 +00:00
|
|
|
dchunks, mchunks, subErr := ResolveChunkManifest(lookupFileIdFn, resolvedChunks, startOffset, stopOffset)
|
2020-07-20 00:59:43 +00:00
|
|
|
if subErr != nil {
|
|
|
|
return chunks, nil, subErr
|
|
|
|
}
|
|
|
|
dataChunks = append(dataChunks, dchunks...)
|
|
|
|
manifestChunks = append(manifestChunks, mchunks...)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-06 12:21:34 +00:00
|
|
|
func ResolveOneChunkManifest(lookupFileIdFn wdclient.LookupFileIdFunctionType, chunk *filer_pb.FileChunk) (dataChunks []*filer_pb.FileChunk, manifestResolveErr error) {
|
2020-08-30 09:07:14 +00:00
|
|
|
if !chunk.IsChunkManifest {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsChunkManifest
|
|
|
|
data, err := fetchChunk(lookupFileIdFn, chunk.GetFileIdString(), chunk.CipherKey, chunk.IsCompressed)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("fail to read manifest %s: %v", chunk.GetFileIdString(), err)
|
|
|
|
}
|
|
|
|
m := &filer_pb.FileChunkManifest{}
|
|
|
|
if err := proto.Unmarshal(data, m); err != nil {
|
|
|
|
return nil, fmt.Errorf("fail to unmarshal manifest %s: %v", chunk.GetFileIdString(), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// recursive
|
|
|
|
filer_pb.AfterEntryDeserialization(m.Chunks)
|
|
|
|
return m.Chunks, nil
|
|
|
|
}
|
|
|
|
|
2020-07-20 10:34:06 +00:00
|
|
|
// TODO fetch from cache for weed mount?
|
2021-01-06 12:21:34 +00:00
|
|
|
func fetchChunk(lookupFileIdFn wdclient.LookupFileIdFunctionType, fileId string, cipherKey []byte, isGzipped bool) ([]byte, error) {
|
2020-10-08 05:49:04 +00:00
|
|
|
urlStrings, err := lookupFileIdFn(fileId)
|
2020-07-20 00:59:43 +00:00
|
|
|
if err != nil {
|
2020-07-20 10:34:06 +00:00
|
|
|
glog.Errorf("operation LookupFileId %s failed, err: %v", fileId, err)
|
2020-07-20 00:59:43 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2021-03-23 05:13:19 +00:00
|
|
|
return retriedFetchChunkData(urlStrings, cipherKey, isGzipped, true, 0, 0)
|
2020-10-09 06:19:42 +00:00
|
|
|
}
|
2020-10-08 05:49:04 +00:00
|
|
|
|
2021-03-23 05:13:19 +00:00
|
|
|
func retriedFetchChunkData(urlStrings []string, cipherKey []byte, isGzipped bool, isFullChunk bool, offset int64, size int) ([]byte, error) {
|
2020-10-09 06:19:42 +00:00
|
|
|
|
|
|
|
var err error
|
2020-10-13 07:29:46 +00:00
|
|
|
var shouldRetry bool
|
2021-03-23 05:12:57 +00:00
|
|
|
receivedData := make([]byte, 0, size)
|
2020-10-09 06:31:26 +00:00
|
|
|
|
2020-11-01 10:36:43 +00:00
|
|
|
for waitTime := time.Second; waitTime < util.RetryWaitTime; waitTime += waitTime / 2 {
|
2020-10-09 06:31:26 +00:00
|
|
|
for _, urlString := range urlStrings {
|
2021-03-23 05:12:57 +00:00
|
|
|
receivedData = receivedData[:0]
|
2021-09-08 02:29:42 +00:00
|
|
|
if strings.Contains(urlString, "%") {
|
|
|
|
urlString = url.PathEscape(urlString)
|
|
|
|
}
|
2021-03-16 07:33:14 +00:00
|
|
|
shouldRetry, err = util.ReadUrlAsStream(urlString+"?readDeleted=true", cipherKey, isGzipped, isFullChunk, offset, size, func(data []byte) {
|
2021-03-23 05:12:57 +00:00
|
|
|
receivedData = append(receivedData, data...)
|
2020-10-09 06:31:26 +00:00
|
|
|
})
|
2020-10-13 07:29:46 +00:00
|
|
|
if !shouldRetry {
|
|
|
|
break
|
|
|
|
}
|
2020-10-09 06:31:26 +00:00
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infof("read %s failed, err: %v", urlString, err)
|
|
|
|
} else {
|
|
|
|
break
|
|
|
|
}
|
2020-10-08 05:49:04 +00:00
|
|
|
}
|
2020-10-14 02:50:46 +00:00
|
|
|
if err != nil && shouldRetry {
|
2020-10-14 02:50:22 +00:00
|
|
|
glog.V(0).Infof("retry reading in %v", waitTime)
|
2020-10-09 07:01:47 +00:00
|
|
|
time.Sleep(waitTime)
|
|
|
|
} else {
|
|
|
|
break
|
|
|
|
}
|
2020-07-20 00:59:43 +00:00
|
|
|
}
|
|
|
|
|
2021-03-23 05:12:57 +00:00
|
|
|
return receivedData, err
|
|
|
|
|
2020-07-20 00:59:43 +00:00
|
|
|
}
|
|
|
|
|
2021-08-13 18:00:11 +00:00
|
|
|
func retriedStreamFetchChunkData(writer io.Writer, urlStrings []string, cipherKey []byte, isGzipped bool, isFullChunk bool, offset int64, size int) (err error) {
|
|
|
|
|
|
|
|
var shouldRetry bool
|
2021-08-13 18:30:38 +00:00
|
|
|
var totalWritten int
|
2021-08-13 18:00:11 +00:00
|
|
|
|
|
|
|
for waitTime := time.Second; waitTime < util.RetryWaitTime; waitTime += waitTime / 2 {
|
|
|
|
for _, urlString := range urlStrings {
|
2021-08-13 18:30:38 +00:00
|
|
|
var localProcesed int
|
2021-08-13 18:00:11 +00:00
|
|
|
shouldRetry, err = util.ReadUrlAsStream(urlString+"?readDeleted=true", cipherKey, isGzipped, isFullChunk, offset, size, func(data []byte) {
|
2021-08-13 18:30:38 +00:00
|
|
|
if totalWritten > localProcesed {
|
|
|
|
toBeSkipped := totalWritten - localProcesed
|
|
|
|
if len(data) <= toBeSkipped {
|
|
|
|
localProcesed += len(data)
|
|
|
|
return // skip if already processed
|
|
|
|
}
|
2021-08-13 18:31:43 +00:00
|
|
|
data = data[toBeSkipped:]
|
2021-08-13 18:30:38 +00:00
|
|
|
localProcesed += toBeSkipped
|
|
|
|
}
|
2021-08-13 18:00:11 +00:00
|
|
|
writer.Write(data)
|
2021-08-13 18:30:38 +00:00
|
|
|
localProcesed += len(data)
|
|
|
|
totalWritten += len(data)
|
2021-08-13 18:00:11 +00:00
|
|
|
})
|
|
|
|
if !shouldRetry {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infof("read %s failed, err: %v", urlString, err)
|
|
|
|
} else {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2021-08-13 18:13:30 +00:00
|
|
|
if err != nil && shouldRetry {
|
2021-08-13 18:00:11 +00:00
|
|
|
glog.V(0).Infof("retry reading in %v", waitTime)
|
|
|
|
time.Sleep(waitTime)
|
|
|
|
} else {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-07-20 10:34:06 +00:00
|
|
|
func MaybeManifestize(saveFunc SaveDataAsChunkFunctionType, inputChunks []*filer_pb.FileChunk) (chunks []*filer_pb.FileChunk, err error) {
|
|
|
|
return doMaybeManifestize(saveFunc, inputChunks, ManifestBatch, mergeIntoManifest)
|
2020-07-20 00:59:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func doMaybeManifestize(saveFunc SaveDataAsChunkFunctionType, inputChunks []*filer_pb.FileChunk, mergeFactor int, mergefn func(saveFunc SaveDataAsChunkFunctionType, dataChunks []*filer_pb.FileChunk) (manifestChunk *filer_pb.FileChunk, err error)) (chunks []*filer_pb.FileChunk, err error) {
|
|
|
|
|
|
|
|
var dataChunks []*filer_pb.FileChunk
|
|
|
|
for _, chunk := range inputChunks {
|
|
|
|
if !chunk.IsChunkManifest {
|
|
|
|
dataChunks = append(dataChunks, chunk)
|
|
|
|
} else {
|
|
|
|
chunks = append(chunks, chunk)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
remaining := len(dataChunks)
|
2020-07-20 10:34:06 +00:00
|
|
|
for i := 0; i+mergeFactor <= len(dataChunks); i += mergeFactor {
|
|
|
|
chunk, err := mergefn(saveFunc, dataChunks[i:i+mergeFactor])
|
2020-07-20 00:59:43 +00:00
|
|
|
if err != nil {
|
|
|
|
return dataChunks, err
|
|
|
|
}
|
|
|
|
chunks = append(chunks, chunk)
|
2020-07-20 10:34:06 +00:00
|
|
|
remaining -= mergeFactor
|
2020-07-20 00:59:43 +00:00
|
|
|
}
|
|
|
|
// remaining
|
|
|
|
for i := len(dataChunks) - remaining; i < len(dataChunks); i++ {
|
|
|
|
chunks = append(chunks, dataChunks[i])
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func mergeIntoManifest(saveFunc SaveDataAsChunkFunctionType, dataChunks []*filer_pb.FileChunk) (manifestChunk *filer_pb.FileChunk, err error) {
|
|
|
|
|
2020-07-21 05:01:39 +00:00
|
|
|
filer_pb.BeforeEntrySerialization(dataChunks)
|
|
|
|
|
2020-07-20 00:59:43 +00:00
|
|
|
// create and serialize the manifest
|
|
|
|
data, serErr := proto.Marshal(&filer_pb.FileChunkManifest{
|
|
|
|
Chunks: dataChunks,
|
|
|
|
})
|
|
|
|
if serErr != nil {
|
|
|
|
return nil, fmt.Errorf("serializing manifest: %v", serErr)
|
|
|
|
}
|
|
|
|
|
|
|
|
minOffset, maxOffset := int64(math.MaxInt64), int64(math.MinInt64)
|
2020-07-20 10:34:06 +00:00
|
|
|
for _, chunk := range dataChunks {
|
2020-07-20 00:59:43 +00:00
|
|
|
if minOffset > int64(chunk.Offset) {
|
|
|
|
minOffset = chunk.Offset
|
|
|
|
}
|
|
|
|
if maxOffset < int64(chunk.Size)+chunk.Offset {
|
|
|
|
maxOffset = int64(chunk.Size) + chunk.Offset
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
manifestChunk, _, _, err = saveFunc(bytes.NewReader(data), "", 0)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
manifestChunk.IsChunkManifest = true
|
|
|
|
manifestChunk.Offset = minOffset
|
|
|
|
manifestChunk.Size = uint64(maxOffset - minOffset)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
type SaveDataAsChunkFunctionType func(reader io.Reader, name string, offset int64) (chunk *filer_pb.FileChunk, collection, replication string, err error)
|