seaweedfs/weed/filer/etcd/etcd_store.go

255 lines
7.1 KiB
Go
Raw Normal View History

2019-08-01 10:16:45 +08:00
package etcd
import (
"context"
"crypto/tls"
2019-08-01 10:16:45 +08:00
"fmt"
"go.etcd.io/etcd/client/pkg/v3/transport"
2019-08-01 10:16:45 +08:00
"strings"
"time"
2021-09-04 14:25:33 +08:00
"go.etcd.io/etcd/client/v3"
2020-03-08 09:01:39 +08:00
"github.com/seaweedfs/seaweedfs/weed/filer"
"github.com/seaweedfs/seaweedfs/weed/glog"
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
weed_util "github.com/seaweedfs/seaweedfs/weed/util"
2019-08-01 10:16:45 +08:00
)
const (
DIR_FILE_SEPARATOR = byte(0x00)
)
func init() {
2020-09-01 15:21:19 +08:00
filer.Stores = append(filer.Stores, &EtcdStore{})
2019-08-01 10:16:45 +08:00
}
type EtcdStore struct {
2023-11-27 03:47:20 +08:00
client *clientv3.Client
etcdKeyPrefix string
timeout time.Duration
2019-08-01 10:16:45 +08:00
}
func (store *EtcdStore) GetName() string {
return "etcd"
}
func (store *EtcdStore) Initialize(configuration weed_util.Configuration, prefix string) error {
configuration.SetDefault(prefix+"servers", "localhost:2379")
configuration.SetDefault(prefix+"timeout", "3s")
servers := configuration.GetString(prefix + "servers")
2019-08-01 10:16:45 +08:00
2023-11-27 03:47:20 +08:00
username := configuration.GetString(prefix + "username")
password := configuration.GetString(prefix + "password")
store.etcdKeyPrefix = configuration.GetString(prefix + "key_prefix")
timeoutStr := configuration.GetString(prefix + "timeout")
timeout, err := time.ParseDuration(timeoutStr)
if err != nil {
return fmt.Errorf("parse etcd store timeout: %v", err)
}
store.timeout = timeout
certFile := configuration.GetString(prefix + "tls_client_crt_file")
keyFile := configuration.GetString(prefix + "tls_client_key_file")
caFile := configuration.GetString(prefix + "tls_ca_file")
var tlsConfig *tls.Config
if caFile != "" {
tlsInfo := transport.TLSInfo{
CertFile: certFile,
KeyFile: keyFile,
TrustedCAFile: caFile,
}
var err error
tlsConfig, err = tlsInfo.ClientConfig()
if err != nil {
return fmt.Errorf("TLS client configuration error: %v", err)
}
2019-08-01 10:16:45 +08:00
}
return store.initialize(servers, username, password, store.timeout, tlsConfig)
2019-08-01 10:16:45 +08:00
}
func (store *EtcdStore) initialize(servers, username, password string, timeout time.Duration, tlsConfig *tls.Config) error {
2019-08-01 10:16:45 +08:00
glog.Infof("filer store etcd: %s", servers)
client, err := clientv3.New(clientv3.Config{
2019-08-01 10:16:45 +08:00
Endpoints: strings.Split(servers, ","),
Username: username,
Password: password,
DialTimeout: timeout,
TLS: tlsConfig,
2019-08-01 10:16:45 +08:00
})
if err != nil {
return fmt.Errorf("connect to etcd %s: %s", servers, err)
}
ctx, cancel := context.WithTimeout(context.Background(), store.timeout)
defer cancel()
resp, err := client.Status(ctx, client.Endpoints()[0])
if err != nil {
client.Close()
return fmt.Errorf("error checking etcd connection: %s", err)
}
glog.V(0).Infof("сonnection to etcd has been successfully verified. etcd version: %s", resp.Version)
store.client = client
return nil
2019-08-01 10:16:45 +08:00
}
func (store *EtcdStore) BeginTransaction(ctx context.Context) (context.Context, error) {
return ctx, nil
}
func (store *EtcdStore) CommitTransaction(ctx context.Context) error {
return nil
}
func (store *EtcdStore) RollbackTransaction(ctx context.Context) error {
return nil
}
2020-09-01 15:21:19 +08:00
func (store *EtcdStore) InsertEntry(ctx context.Context, entry *filer.Entry) (err error) {
2019-08-01 10:16:45 +08:00
key := genKey(entry.DirAndName())
2020-09-04 02:00:20 +08:00
meta, err := entry.EncodeAttributesAndChunks()
2019-08-01 10:16:45 +08:00
if err != nil {
return fmt.Errorf("encoding %s %+v: %v", entry.FullPath, entry.Attr, err)
}
if len(entry.GetChunks()) > filer.CountEntryChunksForGzip {
2020-09-04 02:00:20 +08:00
meta = weed_util.MaybeGzipData(meta)
}
2023-11-27 03:47:20 +08:00
if _, err := store.client.Put(ctx, store.etcdKeyPrefix+string(key), string(meta)); err != nil {
2019-08-01 10:16:45 +08:00
return fmt.Errorf("persisting %s : %v", entry.FullPath, err)
}
return nil
}
2020-09-01 15:21:19 +08:00
func (store *EtcdStore) UpdateEntry(ctx context.Context, entry *filer.Entry) (err error) {
2019-08-01 10:16:45 +08:00
return store.InsertEntry(ctx, entry)
}
2020-09-01 15:21:19 +08:00
func (store *EtcdStore) FindEntry(ctx context.Context, fullpath weed_util.FullPath) (entry *filer.Entry, err error) {
2019-08-01 10:16:45 +08:00
key := genKey(fullpath.DirAndName())
2023-11-27 03:47:20 +08:00
resp, err := store.client.Get(ctx, store.etcdKeyPrefix+string(key))
2019-08-01 10:16:45 +08:00
if err != nil {
return nil, fmt.Errorf("get %s : %v", fullpath, err)
2019-08-01 10:16:45 +08:00
}
if len(resp.Kvs) == 0 {
2020-03-08 09:01:39 +08:00
return nil, filer_pb.ErrNotFound
2019-08-01 10:16:45 +08:00
}
2020-09-01 15:21:19 +08:00
entry = &filer.Entry{
2019-08-01 10:16:45 +08:00
FullPath: fullpath,
}
2020-09-04 02:00:20 +08:00
err = entry.DecodeAttributesAndChunks(weed_util.MaybeDecompressData(resp.Kvs[0].Value))
2019-08-01 10:16:45 +08:00
if err != nil {
return entry, fmt.Errorf("decode %s : %v", entry.FullPath, err)
}
return entry, nil
}
2020-03-23 15:01:34 +08:00
func (store *EtcdStore) DeleteEntry(ctx context.Context, fullpath weed_util.FullPath) (err error) {
2019-08-01 10:16:45 +08:00
key := genKey(fullpath.DirAndName())
2023-11-27 03:47:20 +08:00
if _, err := store.client.Delete(ctx, store.etcdKeyPrefix+string(key)); err != nil {
2019-08-01 10:16:45 +08:00
return fmt.Errorf("delete %s : %v", fullpath, err)
}
return nil
}
func (store *EtcdStore) DeleteFolderChildren(ctx context.Context, fullpath weed_util.FullPath) (err error) {
directoryPrefix := genDirectoryKeyPrefix(fullpath, "")
2023-11-27 03:47:20 +08:00
if _, err := store.client.Delete(ctx, store.etcdKeyPrefix+string(directoryPrefix), clientv3.WithPrefix()); err != nil {
return fmt.Errorf("deleteFolderChildren %s : %v", fullpath, err)
}
return nil
}
2021-01-16 15:56:24 +08:00
func (store *EtcdStore) ListDirectoryPrefixedEntries(ctx context.Context, dirPath weed_util.FullPath, startFileName string, includeStartFile bool, limit int64, prefix string, eachEntryFunc filer.ListEachEntryFunc) (lastFileName string, err error) {
return lastFileName, filer.ErrUnsupportedListDirectoryPrefixed
2020-08-06 01:19:16 +08:00
}
2021-01-16 15:56:24 +08:00
func (store *EtcdStore) ListDirectoryEntries(ctx context.Context, dirPath weed_util.FullPath, startFileName string, includeStartFile bool, limit int64, eachEntryFunc filer.ListEachEntryFunc) (lastFileName string, err error) {
2021-01-15 14:35:56 +08:00
directoryPrefix := genDirectoryKeyPrefix(dirPath, "")
lastFileStart := directoryPrefix
if startFileName != "" {
lastFileStart = genDirectoryKeyPrefix(dirPath, startFileName)
}
2019-08-01 10:16:45 +08:00
2023-11-27 03:47:20 +08:00
resp, err := store.client.Get(ctx, store.etcdKeyPrefix+string(lastFileStart),
clientv3.WithRange(clientv3.GetPrefixRangeEnd(store.etcdKeyPrefix+string(directoryPrefix))),
clientv3.WithLimit(limit+1))
2019-08-01 10:16:45 +08:00
if err != nil {
2021-01-16 15:56:24 +08:00
return lastFileName, fmt.Errorf("list %s : %v", dirPath, err)
2019-08-01 10:16:45 +08:00
}
for _, kv := range resp.Kvs {
fileName := getNameFromKey(kv.Key)
if fileName == "" {
continue
}
2021-01-15 14:35:56 +08:00
if fileName == startFileName && !includeStartFile {
2019-08-01 10:16:45 +08:00
continue
}
limit--
if limit < 0 {
break
}
2020-09-01 15:21:19 +08:00
entry := &filer.Entry{
2021-01-15 14:35:56 +08:00
FullPath: weed_util.NewFullPath(string(dirPath), fileName),
2019-08-01 10:16:45 +08:00
}
2020-09-04 02:00:20 +08:00
if decodeErr := entry.DecodeAttributesAndChunks(weed_util.MaybeDecompressData(kv.Value)); decodeErr != nil {
2019-08-01 10:16:45 +08:00
err = decodeErr
glog.V(0).Infof("list %s : %v", entry.FullPath, err)
break
}
2021-01-16 15:56:24 +08:00
if !eachEntryFunc(entry) {
break
}
lastFileName = fileName
2019-08-01 10:16:45 +08:00
}
2021-01-16 15:56:24 +08:00
return lastFileName, err
2019-08-01 10:16:45 +08:00
}
func genKey(dirPath, fileName string) (key []byte) {
key = []byte(dirPath)
key = append(key, DIR_FILE_SEPARATOR)
key = append(key, []byte(fileName)...)
return key
}
2020-03-23 15:01:34 +08:00
func genDirectoryKeyPrefix(fullpath weed_util.FullPath, startFileName string) (keyPrefix []byte) {
2019-08-01 10:16:45 +08:00
keyPrefix = []byte(string(fullpath))
keyPrefix = append(keyPrefix, DIR_FILE_SEPARATOR)
if len(startFileName) > 0 {
keyPrefix = append(keyPrefix, []byte(startFileName)...)
}
return keyPrefix
}
func getNameFromKey(key []byte) string {
sepIndex := len(key) - 1
for sepIndex >= 0 && key[sepIndex] != DIR_FILE_SEPARATOR {
sepIndex--
}
return string(key[sepIndex+1:])
}
2020-03-15 11:30:26 +08:00
func (store *EtcdStore) Shutdown() {
store.client.Close()
}