2018-10-04 06:36:52 +00:00
|
|
|
package S3Sink
|
|
|
|
|
|
|
|
import (
|
2019-03-16 00:20:24 +00:00
|
|
|
"context"
|
2018-10-04 06:36:52 +00:00
|
|
|
"fmt"
|
2018-11-04 19:58:59 +00:00
|
|
|
"strings"
|
2018-10-06 20:04:33 +00:00
|
|
|
"sync"
|
2018-10-04 06:36:52 +00:00
|
|
|
|
2018-10-11 07:08:13 +00:00
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
"github.com/aws/aws-sdk-go/aws/credentials"
|
2018-10-04 06:36:52 +00:00
|
|
|
"github.com/aws/aws-sdk-go/aws/session"
|
2018-10-11 07:08:13 +00:00
|
|
|
"github.com/aws/aws-sdk-go/service/s3"
|
|
|
|
"github.com/aws/aws-sdk-go/service/s3/s3iface"
|
2018-10-04 06:36:52 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
2018-11-01 08:12:21 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2018-10-11 07:08:13 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2018-10-04 06:36:52 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/replication/sink"
|
2018-10-11 07:08:13 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/replication/source"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2018-10-04 06:36:52 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type S3Sink struct {
|
|
|
|
conn s3iface.S3API
|
|
|
|
region string
|
|
|
|
bucket string
|
|
|
|
dir string
|
|
|
|
filerSource *source.FilerSource
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
sink.Sinks = append(sink.Sinks, &S3Sink{})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s3sink *S3Sink) GetName() string {
|
2018-10-07 00:10:15 +00:00
|
|
|
return "s3"
|
2018-10-04 06:36:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s3sink *S3Sink) GetSinkToDirectory() string {
|
|
|
|
return s3sink.dir
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s3sink *S3Sink) Initialize(configuration util.Configuration) error {
|
2018-10-31 08:11:19 +00:00
|
|
|
glog.V(0).Infof("sink.s3.region: %v", configuration.GetString("region"))
|
|
|
|
glog.V(0).Infof("sink.s3.bucket: %v", configuration.GetString("bucket"))
|
|
|
|
glog.V(0).Infof("sink.s3.directory: %v", configuration.GetString("directory"))
|
2018-10-04 06:36:52 +00:00
|
|
|
return s3sink.initialize(
|
|
|
|
configuration.GetString("aws_access_key_id"),
|
|
|
|
configuration.GetString("aws_secret_access_key"),
|
|
|
|
configuration.GetString("region"),
|
|
|
|
configuration.GetString("bucket"),
|
|
|
|
configuration.GetString("directory"),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s3sink *S3Sink) SetSourceFiler(s *source.FilerSource) {
|
|
|
|
s3sink.filerSource = s
|
|
|
|
}
|
|
|
|
|
2019-11-19 03:24:34 +00:00
|
|
|
func (s3sink *S3Sink) initialize(awsAccessKeyId, awsSecretAccessKey, region, bucket, dir string) error {
|
2018-10-04 06:36:52 +00:00
|
|
|
s3sink.region = region
|
|
|
|
s3sink.bucket = bucket
|
|
|
|
s3sink.dir = dir
|
|
|
|
|
|
|
|
config := &aws.Config{
|
|
|
|
Region: aws.String(s3sink.region),
|
|
|
|
}
|
2019-11-19 03:24:34 +00:00
|
|
|
if awsAccessKeyId != "" && awsSecretAccessKey != "" {
|
|
|
|
config.Credentials = credentials.NewStaticCredentials(awsAccessKeyId, awsSecretAccessKey, "")
|
2018-10-04 06:36:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sess, err := session.NewSession(config)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("create aws session: %v", err)
|
|
|
|
}
|
|
|
|
s3sink.conn = s3.New(sess)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-03-16 00:20:24 +00:00
|
|
|
func (s3sink *S3Sink) DeleteEntry(ctx context.Context, key string, isDirectory, deleteIncludeChunks bool) error {
|
2018-10-04 06:36:52 +00:00
|
|
|
|
2018-11-04 19:58:59 +00:00
|
|
|
key = cleanKey(key)
|
|
|
|
|
2018-10-04 06:36:52 +00:00
|
|
|
if isDirectory {
|
|
|
|
key = key + "/"
|
|
|
|
}
|
|
|
|
|
|
|
|
return s3sink.deleteObject(key)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-03-16 00:20:24 +00:00
|
|
|
func (s3sink *S3Sink) CreateEntry(ctx context.Context, key string, entry *filer_pb.Entry) error {
|
2018-10-04 06:36:52 +00:00
|
|
|
|
2018-11-04 19:58:59 +00:00
|
|
|
key = cleanKey(key)
|
|
|
|
|
2018-10-04 08:14:44 +00:00
|
|
|
if entry.IsDirectory {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-10-04 06:36:52 +00:00
|
|
|
uploadId, err := s3sink.createMultipartUpload(key, entry)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
totalSize := filer2.TotalSize(entry.Chunks)
|
|
|
|
chunkViews := filer2.ViewFromChunks(entry.Chunks, 0, int(totalSize))
|
|
|
|
|
|
|
|
var parts []*s3.CompletedPart
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
for chunkIndex, chunk := range chunkViews {
|
|
|
|
partId := chunkIndex + 1
|
|
|
|
wg.Add(1)
|
|
|
|
go func(chunk *filer2.ChunkView) {
|
|
|
|
defer wg.Done()
|
2019-03-16 00:20:24 +00:00
|
|
|
if part, uploadErr := s3sink.uploadPart(ctx, key, uploadId, partId, chunk); uploadErr != nil {
|
2018-10-04 06:36:52 +00:00
|
|
|
err = uploadErr
|
|
|
|
} else {
|
|
|
|
parts = append(parts, part)
|
|
|
|
}
|
|
|
|
}(chunk)
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
s3sink.abortMultipartUpload(key, uploadId)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-03-16 00:20:24 +00:00
|
|
|
return s3sink.completeMultipartUpload(ctx, key, uploadId, parts)
|
2018-10-04 06:36:52 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-04-16 07:44:31 +00:00
|
|
|
func (s3sink *S3Sink) UpdateEntry(ctx context.Context, key string, oldEntry *filer_pb.Entry, newParentPath string, newEntry *filer_pb.Entry, deleteIncludeChunks bool) (foundExistingEntry bool, err error) {
|
2018-11-04 19:58:59 +00:00
|
|
|
key = cleanKey(key)
|
2018-10-04 06:36:52 +00:00
|
|
|
// TODO improve efficiency
|
|
|
|
return false, nil
|
|
|
|
}
|
2018-11-04 19:58:59 +00:00
|
|
|
|
|
|
|
func cleanKey(key string) string {
|
|
|
|
if strings.HasPrefix(key, "/") {
|
|
|
|
key = key[1:]
|
|
|
|
}
|
|
|
|
return key
|
|
|
|
}
|