perkeep/pkg/blobserver/s3/s3.go

168 lines
5.2 KiB
Go
Raw Normal View History

/*
Copyright 2011 The Perkeep Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/*
Package s3 registers the "s3" blobserver storage type, storing
blobs in an Amazon Web Services' S3 storage bucket.
Example low-level config:
"/r1/": {
"handler": "storage-s3",
"handlerArgs": {
"bucket": "foo",
"aws_access_key": "...",
"aws_secret_access_key": "...",
"skipStartupCheck": false
}
},
*/
package s3 // import "perkeep.org/pkg/blobserver/s3"
import (
"context"
2011-04-03 15:07:40 +00:00
"fmt"
"log"
"strings"
2011-04-03 15:07:40 +00:00
"perkeep.org/internal/amazon/s3"
"perkeep.org/pkg/blob"
"perkeep.org/pkg/blobserver"
"perkeep.org/pkg/blobserver/memory"
"perkeep.org/pkg/blobserver/proxycache"
"go4.org/fault"
"go4.org/jsonconfig"
"go4.org/syncutil"
)
var (
_ blob.SubFetcher = (*s3Storage)(nil)
_ blobserver.MaxEnumerateConfig = (*s3Storage)(nil)
)
var (
faultReceive = fault.NewInjector("s3_receive")
faultEnumerate = fault.NewInjector("s3_enumerate")
faultStat = fault.NewInjector("s3_stat")
faultGet = fault.NewInjector("s3_get")
)
const maxParallelHTTP = 5
type s3Storage struct {
2011-04-03 15:07:40 +00:00
s3Client *s3.Client
2011-04-04 02:15:09 +00:00
bucket string
// optional "directory" where the blobs are stored, instead of at the root of the bucket.
// S3 is actually flat, which in effect just means that all the objects should have this
// dirPrefix as a prefix of their key.
// If non empty, it should be a slash separated path with a trailing slash and no starting
// slash.
dirPrefix string
hostname string
}
func (s *s3Storage) String() string {
if s.dirPrefix != "" {
return fmt.Sprintf("\"s3\" blob storage at host %q, bucket %q, directory %q", s.hostname, s.bucket, s.dirPrefix)
}
return fmt.Sprintf("\"s3\" blob storage at host %q, bucket %q", s.hostname, s.bucket)
}
func newFromConfig(_ blobserver.Loader, config jsonconfig.Obj) (blobserver.Storage, error) {
hostname := config.OptionalString("hostname", "s3.amazonaws.com")
cacheSize := config.OptionalInt64("cacheSize", 32<<20)
2011-04-03 15:07:40 +00:00
client := &s3.Client{
Auth: &s3.Auth{
AccessKey: config.RequiredString("aws_access_key"),
SecretAccessKey: config.RequiredString("aws_secret_access_key"),
Hostname: hostname,
2011-04-03 15:07:40 +00:00
},
PutGate: syncutil.NewGate(maxParallelHTTP),
2011-04-03 15:07:40 +00:00
}
bucket := config.RequiredString("bucket")
var dirPrefix string
if parts := strings.SplitN(bucket, "/", 2); len(parts) > 1 {
dirPrefix = parts[1]
bucket = parts[0]
}
if dirPrefix != "" && !strings.HasSuffix(dirPrefix, "/") {
dirPrefix += "/"
}
2011-04-03 15:07:40 +00:00
sto := &s3Storage{
s3Client: client,
bucket: bucket,
dirPrefix: dirPrefix,
hostname: hostname,
2011-04-03 15:07:40 +00:00
}
2011-04-04 02:57:30 +00:00
skipStartupCheck := config.OptionalBool("skipStartupCheck", false)
2011-04-03 15:07:40 +00:00
if err := config.Validate(); err != nil {
return nil, err
}
ctx := context.Background() // TODO: 5 min timeout or something?
2011-04-04 02:57:30 +00:00
if !skipStartupCheck {
_, err := client.ListBucket(ctx, sto.bucket, "", 1)
if serr, ok := err.(*s3.Error); ok {
if serr.AmazonCode == "NoSuchBucket" {
return nil, fmt.Errorf("bucket %q doesn't exist", sto.bucket)
}
// This code appears when the hostname has dots in it:
if serr.AmazonCode == "PermanentRedirect" {
loc, lerr := client.BucketLocation(ctx, sto.bucket)
if lerr != nil {
return nil, fmt.Errorf("Wrong server for bucket %q; and error determining bucket's location: %v", sto.bucket, lerr)
}
client.Auth.Hostname = loc
_, err = client.ListBucket(ctx, sto.bucket, "", 1)
if err == nil {
log.Printf("Warning: s3 server should be %q, not %q. Change config file to avoid start-up latency.", client.Auth.Hostname, hostname)
}
}
// This path occurs when the user set the
// wrong server, or didn't set one at all, but
// the bucket doesn't have dots in it:
if serr.UseEndpoint != "" {
// UseEndpoint will be e.g. "brads3test-ca.s3-us-west-1.amazonaws.com"
// But we only want the "s3-us-west-1.amazonaws.com" part.
client.Auth.Hostname = strings.TrimPrefix(serr.UseEndpoint, sto.bucket+".")
_, err = client.ListBucket(ctx, sto.bucket, "", 1)
if err == nil {
log.Printf("Warning: s3 server should be %q, not %q. Change config file to avoid start-up latency.", client.Auth.Hostname, hostname)
}
}
}
if err != nil {
return nil, fmt.Errorf("Error listing bucket %s: %v", sto.bucket, err)
}
2011-04-03 15:07:40 +00:00
}
if cacheSize != 0 {
// This has two layers of LRU caching (proxycache and memory).
// We make the outer one 4x the size so that it doesn't evict from the
// underlying one when it's about to perform its own eviction.
return proxycache.New(cacheSize<<2, memory.NewCache(cacheSize), sto), nil
}
2011-04-03 15:07:40 +00:00
return sto, nil
}
func init() {
2011-04-02 05:13:55 +00:00
blobserver.RegisterStorageConstructor("s3", blobserver.StorageConstructor(newFromConfig))
}