2019-11-27 11:09:42 +00:00
|
|
|
package s3_backend
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
"github.com/aws/aws-sdk-go/service/s3/s3iface"
|
|
|
|
"github.com/aws/aws-sdk-go/service/s3/s3manager"
|
2022-05-01 01:10:01 +00:00
|
|
|
"os"
|
|
|
|
"sync"
|
2019-12-26 05:37:21 +00:00
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
2019-11-27 11:09:42 +00:00
|
|
|
)
|
|
|
|
|
2022-05-01 00:36:40 +00:00
|
|
|
func uploadToS3(sess s3iface.S3API, filename string, destBucket string, destKey string, storageClass string, fn func(progressed int64, percentage float32) error) (fileSize int64, err error) {
|
2019-11-27 11:09:42 +00:00
|
|
|
|
|
|
|
//open the file
|
|
|
|
f, err := os.Open(filename)
|
|
|
|
if err != nil {
|
2019-12-02 23:08:28 +00:00
|
|
|
return 0, fmt.Errorf("failed to open file %q, %v", filename, err)
|
2019-11-27 11:09:42 +00:00
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
info, err := f.Stat()
|
|
|
|
if err != nil {
|
2019-12-02 23:08:28 +00:00
|
|
|
return 0, fmt.Errorf("failed to stat file %q, %v", filename, err)
|
2019-11-27 11:09:42 +00:00
|
|
|
}
|
|
|
|
|
2019-12-02 23:08:28 +00:00
|
|
|
fileSize = info.Size()
|
2019-11-27 11:09:42 +00:00
|
|
|
|
|
|
|
partSize := int64(64 * 1024 * 1024) // The minimum/default allowed part size is 5MB
|
|
|
|
for partSize*1000 < fileSize {
|
|
|
|
partSize *= 4
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create an uploader with the session and custom options
|
|
|
|
uploader := s3manager.NewUploaderWithClient(sess, func(u *s3manager.Uploader) {
|
|
|
|
u.PartSize = partSize
|
2019-12-02 23:08:28 +00:00
|
|
|
u.Concurrency = 5
|
2019-11-27 11:09:42 +00:00
|
|
|
})
|
|
|
|
|
2019-12-02 23:08:28 +00:00
|
|
|
fileReader := &s3UploadProgressedReader{
|
2022-05-01 01:10:01 +00:00
|
|
|
fp: f,
|
|
|
|
size: fileSize,
|
|
|
|
signMap: map[int64]struct{}{},
|
|
|
|
fn: fn,
|
2019-12-02 23:08:28 +00:00
|
|
|
}
|
|
|
|
|
2019-11-27 11:09:42 +00:00
|
|
|
// Upload the file to S3.
|
2019-12-02 23:08:28 +00:00
|
|
|
var result *s3manager.UploadOutput
|
|
|
|
result, err = uploader.Upload(&s3manager.UploadInput{
|
2021-11-03 06:39:16 +00:00
|
|
|
Bucket: aws.String(destBucket),
|
|
|
|
Key: aws.String(destKey),
|
|
|
|
Body: fileReader,
|
2022-05-01 00:36:40 +00:00
|
|
|
StorageClass: aws.String(storageClass),
|
2019-11-27 11:09:42 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
//in case it fails to upload
|
|
|
|
if err != nil {
|
2019-12-02 23:08:28 +00:00
|
|
|
return 0, fmt.Errorf("failed to upload file %s: %v", filename, err)
|
|
|
|
}
|
|
|
|
glog.V(1).Infof("file %s uploaded to %s\n", filename, result.Location)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// adapted from https://github.com/aws/aws-sdk-go/pull/1868
|
2022-05-01 01:10:01 +00:00
|
|
|
// https://github.com/aws/aws-sdk-go/blob/main/example/service/s3/putObjectWithProcess/putObjWithProcess.go
|
2019-12-02 23:08:28 +00:00
|
|
|
type s3UploadProgressedReader struct {
|
2022-05-01 01:10:01 +00:00
|
|
|
fp *os.File
|
|
|
|
size int64
|
|
|
|
read int64
|
|
|
|
signMap map[int64]struct{}
|
|
|
|
mux sync.Mutex
|
|
|
|
fn func(progressed int64, percentage float32) error
|
2019-12-02 23:08:28 +00:00
|
|
|
}
|
2019-12-03 04:49:58 +00:00
|
|
|
|
2019-12-02 23:08:28 +00:00
|
|
|
func (r *s3UploadProgressedReader) Read(p []byte) (int, error) {
|
|
|
|
return r.fp.Read(p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *s3UploadProgressedReader) ReadAt(p []byte, off int64) (int, error) {
|
|
|
|
n, err := r.fp.ReadAt(p, off)
|
|
|
|
if err != nil {
|
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
|
2022-05-01 01:10:01 +00:00
|
|
|
r.mux.Lock()
|
|
|
|
// Ignore the first signature call
|
|
|
|
if _, ok := r.signMap[off]; ok {
|
|
|
|
r.read += int64(n)
|
|
|
|
} else {
|
|
|
|
r.signMap[off] = struct{}{}
|
|
|
|
}
|
|
|
|
r.mux.Unlock()
|
2019-12-02 23:08:28 +00:00
|
|
|
|
|
|
|
if r.fn != nil {
|
|
|
|
read := r.read
|
|
|
|
if err := r.fn(read, float32(read*100)/float32(r.size)); err != nil {
|
|
|
|
return n, err
|
|
|
|
}
|
2019-11-27 11:09:42 +00:00
|
|
|
}
|
|
|
|
|
2019-12-02 23:08:28 +00:00
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *s3UploadProgressedReader) Seek(offset int64, whence int) (int64, error) {
|
|
|
|
return r.fp.Seek(offset, whence)
|
2019-11-27 11:09:42 +00:00
|
|
|
}
|