2019-03-23 18:33:34 +00:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2019-04-19 07:39:34 +00:00
|
|
|
"io"
|
2019-05-20 07:53:17 +00:00
|
|
|
"math"
|
2019-04-19 07:39:34 +00:00
|
|
|
"os"
|
|
|
|
"time"
|
2019-04-19 04:43:36 +00:00
|
|
|
|
2019-04-10 11:41:55 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2019-03-23 18:33:34 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
2021-10-14 04:27:58 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
2019-03-23 18:33:34 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage"
|
2019-06-03 17:38:21 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/erasure_coding"
|
2019-04-19 04:43:36 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/needle"
|
2021-10-14 04:27:58 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/types"
|
2019-05-06 20:58:42 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2019-03-23 18:33:34 +00:00
|
|
|
)
|
|
|
|
|
2019-05-27 18:59:03 +00:00
|
|
|
const BufferSizeLimit = 1024 * 1024 * 2
|
|
|
|
|
2020-01-04 19:28:29 +00:00
|
|
|
// VolumeCopy copy the .idx .dat .vif files, and mount the volume
|
2021-10-24 09:52:56 +00:00
|
|
|
func (vs *VolumeServer) VolumeCopy(req *volume_server_pb.VolumeCopyRequest, stream volume_server_pb.VolumeServer_VolumeCopyServer) error {
|
2019-03-23 18:33:34 +00:00
|
|
|
|
2019-04-19 04:43:36 +00:00
|
|
|
v := vs.store.GetVolume(needle.VolumeId(req.VolumeId))
|
2019-03-23 18:33:34 +00:00
|
|
|
if v != nil {
|
2020-04-02 22:36:55 +00:00
|
|
|
|
|
|
|
glog.V(0).Infof("volume %d already exists. deleted before copying...", req.VolumeId)
|
|
|
|
|
2020-09-02 02:00:00 +00:00
|
|
|
err := vs.store.DeleteVolume(needle.VolumeId(req.VolumeId))
|
2020-04-02 22:36:55 +00:00
|
|
|
if err != nil {
|
2021-10-24 09:52:56 +00:00
|
|
|
return fmt.Errorf("failed to delete existing volume %d: %v", req.VolumeId, err)
|
2020-04-02 22:36:55 +00:00
|
|
|
}
|
|
|
|
|
2020-09-02 02:00:00 +00:00
|
|
|
glog.V(0).Infof("deleted existing volume %d before copying.", req.VolumeId)
|
2019-03-23 18:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// the master will not start compaction for read-only volumes, so it is safe to just copy files directly
|
|
|
|
// copy .dat and .idx files
|
|
|
|
// read .idx .dat file size and timestamp
|
|
|
|
// send .idx file
|
|
|
|
// send .dat file
|
|
|
|
// confirm size and timestamp
|
2019-04-10 11:41:55 +00:00
|
|
|
var volFileInfoResp *volume_server_pb.ReadVolumeFileStatusResponse
|
2020-11-27 11:17:10 +00:00
|
|
|
var dataBaseFileName, indexBaseFileName, idxFileName, datFileName string
|
2021-12-26 08:15:03 +00:00
|
|
|
err := operation.WithVolumeServerClient(true, pb.ServerAddress(req.SourceDataNode), vs.grpcDialOption, func(client volume_server_pb.VolumeServerClient) error {
|
2019-04-10 11:41:55 +00:00
|
|
|
var err error
|
2020-02-26 05:50:12 +00:00
|
|
|
volFileInfoResp, err = client.ReadVolumeFileStatus(context.Background(),
|
2019-04-10 11:41:55 +00:00
|
|
|
&volume_server_pb.ReadVolumeFileStatusRequest{
|
|
|
|
VolumeId: req.VolumeId,
|
|
|
|
})
|
|
|
|
if nil != err {
|
|
|
|
return fmt.Errorf("read volume file status failed, %v", err)
|
|
|
|
}
|
2019-03-23 18:33:34 +00:00
|
|
|
|
2021-02-10 07:58:08 +00:00
|
|
|
diskType := volFileInfoResp.DiskType
|
|
|
|
if req.DiskType != "" {
|
|
|
|
diskType = req.DiskType
|
|
|
|
}
|
2021-02-16 11:03:00 +00:00
|
|
|
location := vs.store.FindFreeLocation(types.ToDiskType(diskType))
|
2020-12-14 07:08:21 +00:00
|
|
|
if location == nil {
|
2021-02-22 09:59:03 +00:00
|
|
|
return fmt.Errorf("no space left for disk type %s", types.ToDiskType(diskType).ReadableString())
|
2020-12-14 07:08:21 +00:00
|
|
|
}
|
|
|
|
|
2020-11-27 11:17:10 +00:00
|
|
|
dataBaseFileName = storage.VolumeFileName(location.Directory, volFileInfoResp.Collection, int(req.VolumeId))
|
|
|
|
indexBaseFileName = storage.VolumeFileName(location.IdxDirectory, volFileInfoResp.Collection, int(req.VolumeId))
|
2019-04-20 18:35:20 +00:00
|
|
|
|
2022-02-05 05:32:27 +00:00
|
|
|
util.WriteFile(dataBaseFileName+".note", []byte(fmt.Sprintf("copying from %s", req.SourceDataNode)), 0755)
|
2020-10-27 22:56:49 +00:00
|
|
|
|
2021-08-13 10:24:21 +00:00
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
os.Remove(dataBaseFileName + ".dat")
|
|
|
|
os.Remove(indexBaseFileName + ".idx")
|
|
|
|
os.Remove(dataBaseFileName + ".vif")
|
|
|
|
os.Remove(dataBaseFileName + ".note")
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2019-04-19 19:29:49 +00:00
|
|
|
// println("source:", volFileInfoResp.String())
|
2021-10-24 09:52:56 +00:00
|
|
|
copyResponse := &volume_server_pb.VolumeCopyResponse{}
|
2021-11-03 06:39:16 +00:00
|
|
|
reportInterval := int64(1024 * 1024 * 128)
|
2021-10-24 09:52:56 +00:00
|
|
|
nextReportTarget := reportInterval
|
2021-09-01 09:42:57 +00:00
|
|
|
var modifiedTsNs int64
|
2021-10-24 09:52:56 +00:00
|
|
|
var sendErr error
|
|
|
|
if modifiedTsNs, err = vs.doCopyFile(client, false, req.Collection, req.VolumeId, volFileInfoResp.CompactionRevision, volFileInfoResp.DatFileSize, dataBaseFileName, ".dat", false, true, func(processed int64) bool {
|
|
|
|
if processed > nextReportTarget {
|
|
|
|
copyResponse.ProcessedBytes = processed
|
|
|
|
if sendErr = stream.Send(copyResponse); sendErr != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
nextReportTarget = processed + reportInterval
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}); err != nil {
|
2019-05-20 07:53:17 +00:00
|
|
|
return err
|
2019-03-23 18:33:34 +00:00
|
|
|
}
|
2021-10-24 09:52:56 +00:00
|
|
|
if sendErr != nil {
|
|
|
|
return sendErr
|
|
|
|
}
|
2021-09-01 09:42:57 +00:00
|
|
|
if modifiedTsNs > 0 {
|
2021-09-01 09:45:42 +00:00
|
|
|
os.Chtimes(dataBaseFileName+".dat", time.Unix(0, modifiedTsNs), time.Unix(0, modifiedTsNs))
|
2021-09-01 09:42:57 +00:00
|
|
|
}
|
2019-03-23 18:33:34 +00:00
|
|
|
|
2021-10-24 09:52:56 +00:00
|
|
|
if modifiedTsNs, err = vs.doCopyFile(client, false, req.Collection, req.VolumeId, volFileInfoResp.CompactionRevision, volFileInfoResp.IdxFileSize, indexBaseFileName, ".idx", false, false, nil); err != nil {
|
2019-05-20 07:53:17 +00:00
|
|
|
return err
|
2019-03-23 18:33:34 +00:00
|
|
|
}
|
2021-09-01 09:42:57 +00:00
|
|
|
if modifiedTsNs > 0 {
|
2021-09-01 09:45:42 +00:00
|
|
|
os.Chtimes(indexBaseFileName+".idx", time.Unix(0, modifiedTsNs), time.Unix(0, modifiedTsNs))
|
2021-09-01 09:42:57 +00:00
|
|
|
}
|
2019-03-23 18:33:34 +00:00
|
|
|
|
2021-10-24 09:52:56 +00:00
|
|
|
if modifiedTsNs, err = vs.doCopyFile(client, false, req.Collection, req.VolumeId, volFileInfoResp.CompactionRevision, volFileInfoResp.DatFileSize, dataBaseFileName, ".vif", false, true, nil); err != nil {
|
2020-01-04 19:28:29 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-09-01 09:42:57 +00:00
|
|
|
if modifiedTsNs > 0 {
|
2021-09-01 09:45:42 +00:00
|
|
|
os.Chtimes(dataBaseFileName+".vif", time.Unix(0, modifiedTsNs), time.Unix(0, modifiedTsNs))
|
2021-09-01 09:42:57 +00:00
|
|
|
}
|
2020-01-04 19:28:29 +00:00
|
|
|
|
2020-11-27 11:17:10 +00:00
|
|
|
os.Remove(dataBaseFileName + ".note")
|
2020-10-27 22:56:49 +00:00
|
|
|
|
2019-03-23 18:33:34 +00:00
|
|
|
return nil
|
|
|
|
})
|
2019-06-03 07:13:31 +00:00
|
|
|
|
2020-05-18 03:20:12 +00:00
|
|
|
if err != nil {
|
2021-10-24 09:52:56 +00:00
|
|
|
return err
|
2020-05-18 03:20:12 +00:00
|
|
|
}
|
2020-11-27 11:17:10 +00:00
|
|
|
if dataBaseFileName == "" {
|
2021-10-24 09:52:56 +00:00
|
|
|
return fmt.Errorf("not found volume %d file", req.VolumeId)
|
2020-05-18 03:20:12 +00:00
|
|
|
}
|
|
|
|
|
2020-11-27 11:17:10 +00:00
|
|
|
idxFileName = indexBaseFileName + ".idx"
|
|
|
|
datFileName = dataBaseFileName + ".dat"
|
2019-06-03 07:13:31 +00:00
|
|
|
|
2020-04-02 22:36:55 +00:00
|
|
|
defer func() {
|
2020-11-27 11:17:10 +00:00
|
|
|
if err != nil && dataBaseFileName != "" {
|
2020-04-02 22:36:55 +00:00
|
|
|
os.Remove(idxFileName)
|
|
|
|
os.Remove(datFileName)
|
2020-11-27 11:17:10 +00:00
|
|
|
os.Remove(dataBaseFileName + ".vif")
|
2020-04-02 22:36:55 +00:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2019-04-18 07:19:18 +00:00
|
|
|
if err = checkCopyFiles(volFileInfoResp, idxFileName, datFileName); err != nil { // added by panyc16
|
2021-10-24 09:52:56 +00:00
|
|
|
return err
|
2019-04-10 11:41:55 +00:00
|
|
|
}
|
2019-03-23 18:33:34 +00:00
|
|
|
|
|
|
|
// mount the volume
|
2019-04-19 04:43:36 +00:00
|
|
|
err = vs.store.MountVolume(needle.VolumeId(req.VolumeId))
|
2019-03-23 18:33:34 +00:00
|
|
|
if err != nil {
|
2021-10-24 09:52:56 +00:00
|
|
|
return fmt.Errorf("failed to mount volume %d: %v", req.VolumeId, err)
|
2019-03-23 18:33:34 +00:00
|
|
|
}
|
|
|
|
|
2021-10-24 09:52:56 +00:00
|
|
|
if err = stream.Send(&volume_server_pb.VolumeCopyResponse{
|
2019-04-19 19:29:49 +00:00
|
|
|
LastAppendAtNs: volFileInfoResp.DatFileTimestampSeconds * uint64(time.Second),
|
2021-10-24 09:52:56 +00:00
|
|
|
}); err != nil {
|
|
|
|
glog.Errorf("send response: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
2019-04-10 11:41:55 +00:00
|
|
|
}
|
2019-03-23 18:33:34 +00:00
|
|
|
|
2021-10-24 09:52:56 +00:00
|
|
|
func (vs *VolumeServer) doCopyFile(client volume_server_pb.VolumeServerClient, isEcVolume bool, collection string, vid, compactRevision uint32, stopOffset uint64, baseFileName, ext string, isAppend, ignoreSourceFileNotFound bool, progressFn storage.ProgressFunc) (modifiedTsNs int64, err error) {
|
2019-05-20 07:53:17 +00:00
|
|
|
|
2020-02-26 06:23:59 +00:00
|
|
|
copyFileClient, err := client.CopyFile(context.Background(), &volume_server_pb.CopyFileRequest{
|
2019-12-23 20:48:20 +00:00
|
|
|
VolumeId: vid,
|
|
|
|
Ext: ext,
|
|
|
|
CompactionRevision: compactRevision,
|
|
|
|
StopOffset: stopOffset,
|
|
|
|
Collection: collection,
|
|
|
|
IsEcVolume: isEcVolume,
|
|
|
|
IgnoreSourceFileNotFound: ignoreSourceFileNotFound,
|
2019-05-20 07:53:17 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
2021-09-01 09:42:57 +00:00
|
|
|
return modifiedTsNs, fmt.Errorf("failed to start copying volume %d %s file: %v", vid, ext, err)
|
2019-05-20 07:53:17 +00:00
|
|
|
}
|
|
|
|
|
2021-10-24 09:52:56 +00:00
|
|
|
modifiedTsNs, err = writeToFile(copyFileClient, baseFileName+ext, util.NewWriteThrottler(vs.compactionBytePerSecond), isAppend, progressFn)
|
2019-05-20 07:53:17 +00:00
|
|
|
if err != nil {
|
2021-09-01 09:42:57 +00:00
|
|
|
return modifiedTsNs, fmt.Errorf("failed to copy %s file: %v", baseFileName+ext, err)
|
2019-05-20 07:53:17 +00:00
|
|
|
}
|
|
|
|
|
2021-09-01 09:42:57 +00:00
|
|
|
return modifiedTsNs, nil
|
2019-05-20 07:53:17 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-04-10 11:41:55 +00:00
|
|
|
/**
|
2019-04-18 07:19:18 +00:00
|
|
|
only check the the differ of the file size
|
|
|
|
todo: maybe should check the received count and deleted count of the volume
|
|
|
|
*/
|
2021-09-01 09:45:42 +00:00
|
|
|
func checkCopyFiles(originFileInf *volume_server_pb.ReadVolumeFileStatusResponse, idxFileName, datFileName string) error {
|
2019-04-10 11:41:55 +00:00
|
|
|
stat, err := os.Stat(idxFileName)
|
|
|
|
if err != nil {
|
2021-05-08 04:56:45 +00:00
|
|
|
return fmt.Errorf("stat idx file %s failed: %v", idxFileName, err)
|
2019-04-10 11:41:55 +00:00
|
|
|
}
|
|
|
|
if originFileInf.IdxFileSize != uint64(stat.Size()) {
|
2019-06-03 07:13:31 +00:00
|
|
|
return fmt.Errorf("idx file %s size [%v] is not same as origin file size [%v]",
|
|
|
|
idxFileName, stat.Size(), originFileInf.IdxFileSize)
|
2019-04-10 11:41:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stat, err = os.Stat(datFileName)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("get dat file info failed, %v", err)
|
|
|
|
}
|
|
|
|
if originFileInf.DatFileSize != uint64(stat.Size()) {
|
|
|
|
return fmt.Errorf("the dat file size [%v] is not same as origin file size [%v]",
|
|
|
|
stat.Size(), originFileInf.DatFileSize)
|
|
|
|
}
|
|
|
|
return nil
|
2019-03-23 18:33:34 +00:00
|
|
|
}
|
|
|
|
|
2021-10-24 09:52:56 +00:00
|
|
|
func writeToFile(client volume_server_pb.VolumeServer_CopyFileClient, fileName string, wt *util.WriteThrottler, isAppend bool, progressFn storage.ProgressFunc) (modifiedTsNs int64, err error) {
|
2019-04-11 01:53:31 +00:00
|
|
|
glog.V(4).Infof("writing to %s", fileName)
|
2019-06-20 07:55:52 +00:00
|
|
|
flags := os.O_WRONLY | os.O_CREATE | os.O_TRUNC
|
2019-06-20 05:57:14 +00:00
|
|
|
if isAppend {
|
2019-06-20 07:55:52 +00:00
|
|
|
flags = os.O_WRONLY | os.O_CREATE
|
2019-06-20 05:57:14 +00:00
|
|
|
}
|
|
|
|
dst, err := os.OpenFile(fileName, flags, 0644)
|
2019-03-23 18:33:34 +00:00
|
|
|
if err != nil {
|
2021-09-01 09:42:57 +00:00
|
|
|
return modifiedTsNs, nil
|
2019-03-23 18:33:34 +00:00
|
|
|
}
|
|
|
|
defer dst.Close()
|
|
|
|
|
2021-10-24 09:52:56 +00:00
|
|
|
var progressedBytes int64
|
2019-03-23 18:33:34 +00:00
|
|
|
for {
|
|
|
|
resp, receiveErr := client.Recv()
|
|
|
|
if receiveErr == io.EOF {
|
|
|
|
break
|
|
|
|
}
|
2021-12-26 08:15:03 +00:00
|
|
|
if resp != nil && resp.ModifiedTsNs != 0 {
|
2021-09-01 09:42:57 +00:00
|
|
|
modifiedTsNs = resp.ModifiedTsNs
|
|
|
|
}
|
2019-03-23 18:33:34 +00:00
|
|
|
if receiveErr != nil {
|
2021-09-01 09:42:57 +00:00
|
|
|
return modifiedTsNs, fmt.Errorf("receiving %s: %v", fileName, receiveErr)
|
2019-03-23 18:33:34 +00:00
|
|
|
}
|
|
|
|
dst.Write(resp.FileContent)
|
2021-10-24 09:52:56 +00:00
|
|
|
progressedBytes += int64(len(resp.FileContent))
|
|
|
|
if progressFn != nil {
|
|
|
|
if !progressFn(progressedBytes) {
|
|
|
|
return modifiedTsNs, fmt.Errorf("interrupted copy operation")
|
|
|
|
}
|
|
|
|
}
|
2019-05-06 20:58:42 +00:00
|
|
|
wt.MaybeSlowdown(int64(len(resp.FileContent)))
|
2019-03-23 18:33:34 +00:00
|
|
|
}
|
2021-09-01 09:42:57 +00:00
|
|
|
return modifiedTsNs, nil
|
2019-03-23 18:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (vs *VolumeServer) ReadVolumeFileStatus(ctx context.Context, req *volume_server_pb.ReadVolumeFileStatusRequest) (*volume_server_pb.ReadVolumeFileStatusResponse, error) {
|
|
|
|
resp := &volume_server_pb.ReadVolumeFileStatusResponse{}
|
2019-04-19 04:43:36 +00:00
|
|
|
v := vs.store.GetVolume(needle.VolumeId(req.VolumeId))
|
2019-04-10 11:41:55 +00:00
|
|
|
if v == nil {
|
|
|
|
return nil, fmt.Errorf("not found volume id %d", req.VolumeId)
|
|
|
|
}
|
|
|
|
|
|
|
|
resp.VolumeId = req.VolumeId
|
2019-04-19 07:39:34 +00:00
|
|
|
datSize, idxSize, modTime := v.FileStat()
|
|
|
|
resp.DatFileSize = datSize
|
|
|
|
resp.IdxFileSize = idxSize
|
|
|
|
resp.DatFileTimestampSeconds = uint64(modTime.Unix())
|
|
|
|
resp.IdxFileTimestampSeconds = uint64(modTime.Unix())
|
2019-04-11 06:39:53 +00:00
|
|
|
resp.FileCount = v.FileCount()
|
2019-04-19 19:29:49 +00:00
|
|
|
resp.CompactionRevision = uint32(v.CompactionRevision)
|
2019-04-20 18:35:20 +00:00
|
|
|
resp.Collection = v.Collection
|
2020-12-14 07:08:21 +00:00
|
|
|
resp.DiskType = string(v.DiskType())
|
2019-03-23 18:33:34 +00:00
|
|
|
return resp, nil
|
|
|
|
}
|
|
|
|
|
2019-05-20 07:53:17 +00:00
|
|
|
// CopyFile client pulls the volume related file from the source server.
|
|
|
|
// if req.CompactionRevision != math.MaxUint32, it ensures the compact revision is as expected
|
|
|
|
// The copying still stop at req.StopOffset, but you can set it to math.MaxUint64 in order to read all data.
|
2019-03-26 06:18:40 +00:00
|
|
|
func (vs *VolumeServer) CopyFile(req *volume_server_pb.CopyFileRequest, stream volume_server_pb.VolumeServer_CopyFileServer) error {
|
2019-03-23 18:33:34 +00:00
|
|
|
|
2019-06-03 09:26:31 +00:00
|
|
|
var fileName string
|
|
|
|
if !req.IsEcVolume {
|
|
|
|
v := vs.store.GetVolume(needle.VolumeId(req.VolumeId))
|
|
|
|
if v == nil {
|
|
|
|
return fmt.Errorf("not found volume id %d", req.VolumeId)
|
|
|
|
}
|
2019-03-23 18:33:34 +00:00
|
|
|
|
2019-06-03 09:26:31 +00:00
|
|
|
if uint32(v.CompactionRevision) != req.CompactionRevision && req.CompactionRevision != math.MaxUint32 {
|
|
|
|
return fmt.Errorf("volume %d is compacted", req.VolumeId)
|
|
|
|
}
|
2022-04-26 20:03:43 +00:00
|
|
|
v.SyncToDisk()
|
2020-11-27 11:17:10 +00:00
|
|
|
fileName = v.FileName(req.Ext)
|
2019-06-03 09:26:31 +00:00
|
|
|
} else {
|
2019-06-03 17:38:21 +00:00
|
|
|
baseFileName := erasure_coding.EcShardBaseFileName(req.Collection, int(req.VolumeId)) + req.Ext
|
|
|
|
for _, location := range vs.store.Locations {
|
2020-04-05 20:11:43 +00:00
|
|
|
tName := util.Join(location.Directory, baseFileName)
|
2019-06-05 05:04:10 +00:00
|
|
|
if util.FileExists(tName) {
|
2019-06-03 17:38:21 +00:00
|
|
|
fileName = tName
|
|
|
|
}
|
2020-11-27 11:17:10 +00:00
|
|
|
tName = util.Join(location.IdxDirectory, baseFileName)
|
|
|
|
if util.FileExists(tName) {
|
|
|
|
fileName = tName
|
|
|
|
}
|
2019-06-03 17:38:21 +00:00
|
|
|
}
|
|
|
|
if fileName == "" {
|
2019-12-28 20:59:31 +00:00
|
|
|
if req.IgnoreSourceFileNotFound {
|
|
|
|
return nil
|
|
|
|
}
|
2019-06-03 17:38:21 +00:00
|
|
|
return fmt.Errorf("CopyFile not found ec volume id %d", req.VolumeId)
|
2019-06-03 09:26:31 +00:00
|
|
|
}
|
2019-04-19 19:29:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bytesToRead := int64(req.StopOffset)
|
|
|
|
|
2019-03-23 18:33:34 +00:00
|
|
|
file, err := os.Open(fileName)
|
|
|
|
if err != nil {
|
2019-12-23 20:48:20 +00:00
|
|
|
if req.IgnoreSourceFileNotFound && err == os.ErrNotExist {
|
|
|
|
return nil
|
|
|
|
}
|
2019-03-23 18:33:34 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
2021-09-01 09:42:57 +00:00
|
|
|
fileInfo, err := file.Stat()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fileModTsNs := fileInfo.ModTime().UnixNano()
|
|
|
|
|
2019-05-27 18:59:03 +00:00
|
|
|
buffer := make([]byte, BufferSizeLimit)
|
2019-03-23 18:33:34 +00:00
|
|
|
|
2019-04-19 19:29:49 +00:00
|
|
|
for bytesToRead > 0 {
|
2019-03-23 18:33:34 +00:00
|
|
|
bytesread, err := file.Read(buffer)
|
|
|
|
|
2019-04-19 19:29:49 +00:00
|
|
|
// println(fileName, "read", bytesread, "bytes, with target", bytesToRead)
|
|
|
|
|
2019-03-23 18:33:34 +00:00
|
|
|
if err != nil {
|
|
|
|
if err != io.EOF {
|
|
|
|
return err
|
|
|
|
}
|
2019-04-19 19:29:49 +00:00
|
|
|
// println(fileName, "read", bytesread, "bytes, with target", bytesToRead, "err", err.Error())
|
2019-03-23 18:33:34 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2019-04-19 19:29:49 +00:00
|
|
|
if int64(bytesread) > bytesToRead {
|
|
|
|
bytesread = int(bytesToRead)
|
|
|
|
}
|
|
|
|
err = stream.Send(&volume_server_pb.CopyFileResponse{
|
2021-09-01 09:42:57 +00:00
|
|
|
FileContent: buffer[:bytesread],
|
|
|
|
ModifiedTsNs: fileModTsNs,
|
2019-03-23 18:33:34 +00:00
|
|
|
})
|
2019-04-19 19:29:49 +00:00
|
|
|
if err != nil {
|
|
|
|
// println("sending", bytesread, "bytes err", err.Error())
|
|
|
|
return err
|
|
|
|
}
|
2021-09-01 09:42:57 +00:00
|
|
|
fileModTsNs = 0 // only send once
|
2019-04-19 19:29:49 +00:00
|
|
|
|
|
|
|
bytesToRead -= int64(bytesread)
|
2019-03-23 18:33:34 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|