2020-07-20 00:59:43 +00:00
|
|
|
package filesys
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
|
2020-09-01 07:21:19 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer"
|
2020-07-20 00:59:43 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/security"
|
2020-10-25 22:46:29 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2020-07-20 00:59:43 +00:00
|
|
|
)
|
|
|
|
|
2021-05-06 10:31:40 +00:00
|
|
|
func (wfs *WFS) saveDataAsChunk(fullPath util.FullPath, writeOnly bool) filer.SaveDataAsChunkFunctionType {
|
2020-07-20 00:59:43 +00:00
|
|
|
|
|
|
|
return func(reader io.Reader, filename string, offset int64) (chunk *filer_pb.FileChunk, collection, replication string, err error) {
|
|
|
|
var fileId, host string
|
|
|
|
var auth security.EncodedJwt
|
|
|
|
|
|
|
|
if err := wfs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
|
2021-05-07 14:29:26 +00:00
|
|
|
return util.Retry("assignVolume", func() error {
|
|
|
|
request := &filer_pb.AssignVolumeRequest{
|
|
|
|
Count: 1,
|
|
|
|
Replication: wfs.option.Replication,
|
|
|
|
Collection: wfs.option.Collection,
|
|
|
|
TtlSec: wfs.option.TtlSec,
|
|
|
|
DiskType: string(wfs.option.DiskType),
|
|
|
|
DataCenter: wfs.option.DataCenter,
|
|
|
|
Path: string(fullPath),
|
|
|
|
}
|
2020-07-20 00:59:43 +00:00
|
|
|
|
2021-05-07 14:29:26 +00:00
|
|
|
resp, err := client.AssignVolume(context.Background(), request)
|
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infof("assign volume failure %v: %v", request, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if resp.Error != "" {
|
|
|
|
return fmt.Errorf("assign volume failure %v: %v", request, resp.Error)
|
|
|
|
}
|
2020-07-20 00:59:43 +00:00
|
|
|
|
2021-05-07 14:29:26 +00:00
|
|
|
fileId, auth = resp.FileId, security.EncodedJwt(resp.Auth)
|
|
|
|
loc := &filer_pb.Location{
|
|
|
|
Url: resp.Url,
|
|
|
|
PublicUrl: resp.PublicUrl,
|
|
|
|
}
|
|
|
|
host = wfs.AdjustedUrl(loc)
|
|
|
|
collection, replication = resp.Collection, resp.Replication
|
2020-07-20 00:59:43 +00:00
|
|
|
|
2021-05-07 14:29:26 +00:00
|
|
|
return nil
|
|
|
|
})
|
2020-07-20 00:59:43 +00:00
|
|
|
}); err != nil {
|
|
|
|
return nil, "", "", fmt.Errorf("filerGrpcAddress assign volume: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
fileUrl := fmt.Sprintf("http://%s/%s", host, fileId)
|
2021-01-28 23:23:16 +00:00
|
|
|
if wfs.option.VolumeServerAccess == "filerProxy" {
|
2021-05-21 08:28:00 +00:00
|
|
|
fileUrl = fmt.Sprintf("http://%s/?proxyChunkId=%s", wfs.getCurrentFiler(), fileId)
|
2021-01-25 03:01:58 +00:00
|
|
|
}
|
2020-07-20 00:59:43 +00:00
|
|
|
uploadResult, err, data := operation.Upload(fileUrl, filename, wfs.option.Cipher, reader, false, "", nil, auth)
|
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infof("upload data %v to %s: %v", filename, fileUrl, err)
|
|
|
|
return nil, "", "", fmt.Errorf("upload data: %v", err)
|
|
|
|
}
|
|
|
|
if uploadResult.Error != "" {
|
|
|
|
glog.V(0).Infof("upload failure %v to %s: %v", filename, fileUrl, err)
|
|
|
|
return nil, "", "", fmt.Errorf("upload result: %v", uploadResult.Error)
|
|
|
|
}
|
|
|
|
|
2021-05-06 10:31:40 +00:00
|
|
|
if !writeOnly {
|
|
|
|
wfs.chunkCache.SetChunk(fileId, data)
|
|
|
|
}
|
2020-07-20 00:59:43 +00:00
|
|
|
|
|
|
|
chunk = uploadResult.ToPbFileChunk(fileId, offset)
|
2020-10-19 07:12:42 +00:00
|
|
|
return chunk, collection, replication, nil
|
2020-07-20 00:59:43 +00:00
|
|
|
}
|
|
|
|
}
|