seaweedfs/weed/replication/sink/filersink/fetch_write.go

131 lines
3.7 KiB
Go
Raw Normal View History

2018-09-23 07:40:36 +00:00
package filersink
2018-09-21 08:54:29 +00:00
import (
"context"
"fmt"
2020-09-09 10:53:09 +00:00
"github.com/chrislusf/seaweedfs/weed/util"
2018-09-21 08:56:43 +00:00
"sync"
"google.golang.org/grpc"
2018-09-21 08:56:43 +00:00
"github.com/chrislusf/seaweedfs/weed/glog"
2018-09-21 08:54:29 +00:00
"github.com/chrislusf/seaweedfs/weed/operation"
2020-03-04 08:39:47 +00:00
"github.com/chrislusf/seaweedfs/weed/pb"
2018-09-21 08:54:29 +00:00
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
2019-02-15 17:59:22 +00:00
"github.com/chrislusf/seaweedfs/weed/security"
2018-09-21 08:54:29 +00:00
)
func (fs *FilerSink) replicateChunks(sourceChunks []*filer_pb.FileChunk, path string) (replicatedChunks []*filer_pb.FileChunk, err error) {
2018-09-21 08:54:29 +00:00
if len(sourceChunks) == 0 {
return
}
2020-03-11 06:37:14 +00:00
2020-03-17 17:01:55 +00:00
replicatedChunks = make([]*filer_pb.FileChunk, len(sourceChunks))
2020-03-11 06:37:14 +00:00
2018-09-21 08:54:29 +00:00
var wg sync.WaitGroup
2020-03-11 06:37:14 +00:00
for chunkIndex, sourceChunk := range sourceChunks {
2018-09-21 08:54:29 +00:00
wg.Add(1)
2020-03-11 06:37:14 +00:00
go func(chunk *filer_pb.FileChunk, index int) {
2018-09-21 08:54:29 +00:00
defer wg.Done()
replicatedChunk, e := fs.replicateOneChunk(chunk, path)
2018-09-21 08:54:29 +00:00
if e != nil {
err = e
return
2018-09-21 08:54:29 +00:00
}
2020-03-11 06:37:14 +00:00
replicatedChunks[index] = replicatedChunk
}(sourceChunk, chunkIndex)
2018-09-21 08:54:29 +00:00
}
wg.Wait()
return
}
func (fs *FilerSink) replicateOneChunk(sourceChunk *filer_pb.FileChunk, path string) (*filer_pb.FileChunk, error) {
2018-09-21 08:54:29 +00:00
fileId, err := fs.fetchAndWrite(sourceChunk, path)
2018-09-21 08:54:29 +00:00
if err != nil {
2019-06-23 03:04:56 +00:00
return nil, fmt.Errorf("copy %s: %v", sourceChunk.GetFileIdString(), err)
2018-09-21 08:54:29 +00:00
}
return &filer_pb.FileChunk{
FileId: fileId,
Offset: sourceChunk.Offset,
Size: sourceChunk.Size,
Mtime: sourceChunk.Mtime,
ETag: sourceChunk.ETag,
2019-06-23 03:04:56 +00:00
SourceFileId: sourceChunk.GetFileIdString(),
CipherKey: sourceChunk.CipherKey,
IsCompressed: sourceChunk.IsCompressed,
2018-09-21 08:54:29 +00:00
}, nil
}
func (fs *FilerSink) fetchAndWrite(sourceChunk *filer_pb.FileChunk, path string) (fileId string, err error) {
2018-09-21 08:54:29 +00:00
2020-09-09 10:53:09 +00:00
filename, header, resp, err := fs.filerSource.ReadPart(sourceChunk.GetFileIdString())
2018-09-21 08:54:29 +00:00
if err != nil {
2019-06-23 03:04:56 +00:00
return "", fmt.Errorf("read part %s: %v", sourceChunk.GetFileIdString(), err)
2018-09-21 08:54:29 +00:00
}
2020-09-09 10:53:09 +00:00
defer util.CloseResponse(resp)
2018-09-21 08:54:29 +00:00
var host string
2019-02-15 17:59:22 +00:00
var auth security.EncodedJwt
2018-09-21 08:54:29 +00:00
2020-03-23 08:30:22 +00:00
if err := fs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
2018-09-21 08:54:29 +00:00
request := &filer_pb.AssignVolumeRequest{
Count: 1,
Replication: fs.replication,
Collection: fs.collection,
TtlSec: fs.ttlSec,
DataCenter: fs.dataCenter,
Path: path,
2018-09-21 08:54:29 +00:00
}
resp, err := client.AssignVolume(context.Background(), request)
2018-09-21 08:54:29 +00:00
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)
}
2018-09-21 08:54:29 +00:00
2019-02-15 17:59:22 +00:00
fileId, host, auth = resp.FileId, resp.Url, security.EncodedJwt(resp.Auth)
2018-09-21 08:54:29 +00:00
return nil
}); err != nil {
return "", fmt.Errorf("filerGrpcAddress assign volume: %v", err)
}
fileUrl := fmt.Sprintf("http://%s/%s", host, fileId)
if fs.writeChunkByFiler {
fileUrl = fmt.Sprintf("http://%s/?proxyChunkId=%s", fs.address, fileId)
}
2018-09-21 08:54:29 +00:00
2018-09-23 05:11:49 +00:00
glog.V(4).Infof("replicating %s to %s header:%+v", filename, fileUrl, header)
2018-09-21 08:54:29 +00:00
// fetch data as is, regardless whether it is encrypted or not
2020-09-09 10:53:09 +00:00
uploadResult, err, _ := operation.Upload(fileUrl, filename, false, resp.Body, "gzip" == header.Get("Content-Encoding"), header.Get("Content-Type"), nil, auth)
2018-09-21 08:54:29 +00:00
if err != nil {
2020-09-09 10:53:09 +00:00
glog.V(0).Infof("upload source data %v to %s: %v", sourceChunk.GetFileIdString(), fileUrl, err)
2018-09-21 08:54:29 +00:00
return "", fmt.Errorf("upload data: %v", err)
}
if uploadResult.Error != "" {
glog.V(0).Infof("upload failure %v to %s: %v", filename, fileUrl, err)
return "", fmt.Errorf("upload result: %v", uploadResult.Error)
}
return
}
2020-04-29 20:26:02 +00:00
var _ = filer_pb.FilerClient(&FilerSink{})
2020-03-23 08:30:22 +00:00
func (fs *FilerSink) WithFilerClient(fn func(filer_pb.SeaweedFilerClient) error) error {
2018-09-21 08:54:29 +00:00
2020-03-04 08:39:47 +00:00
return pb.WithCachedGrpcClient(func(grpcConnection *grpc.ClientConn) error {
2019-04-06 03:31:58 +00:00
client := filer_pb.NewSeaweedFilerClient(grpcConnection)
return fn(client)
2019-04-06 03:31:58 +00:00
}, fs.grpcAddress, fs.grpcDialOption)
2018-09-21 08:54:29 +00:00
}