|
@ -16,8 +16,14 @@ import ( |
|
|
) |
|
|
) |
|
|
|
|
|
|
|
|
var ( |
|
|
var ( |
|
|
indexType = "_doc" |
|
|
|
|
|
indexPrefix = ".seaweedfs_" |
|
|
|
|
|
|
|
|
indexType = "_doc" |
|
|
|
|
|
indexPrefix = ".seaweedfs_" |
|
|
|
|
|
indexKV = ".seaweedfs_kv_entries" |
|
|
|
|
|
mappingWithoutQuery = ` { |
|
|
|
|
|
"mappings": { |
|
|
|
|
|
"enabled": false |
|
|
|
|
|
} |
|
|
|
|
|
}` |
|
|
) |
|
|
) |
|
|
|
|
|
|
|
|
type ESEntry struct { |
|
|
type ESEntry struct { |
|
@ -25,6 +31,10 @@ type ESEntry struct { |
|
|
Entry *filer.Entry |
|
|
Entry *filer.Entry |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
type ESKVEntry struct { |
|
|
|
|
|
Value string `json:Value` |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
func init() { |
|
|
func init() { |
|
|
filer.Stores = append(filer.Stores, &ElasticStore{}) |
|
|
filer.Stores = append(filer.Stores, &ElasticStore{}) |
|
|
} |
|
|
} |
|
@ -55,6 +65,12 @@ func (store *ElasticStore) Initialize(configuration weed_util.Configuration, pre |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
return fmt.Errorf("init elastic %s: %v.", servers, err) |
|
|
return fmt.Errorf("init elastic %s: %v.", servers, err) |
|
|
} |
|
|
} |
|
|
|
|
|
if ok, err := store.client.IndexExists(indexKV).Do(context.Background()); err == nil && !ok { |
|
|
|
|
|
_, err = store.client.CreateIndex(indexKV).Body(mappingWithoutQuery).Do(context.Background()) |
|
|
|
|
|
if err != nil { |
|
|
|
|
|
return fmt.Errorf("create index(%s) %v.", indexKV, err) |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
return nil |
|
|
return nil |
|
|
} |
|
|
} |
|
|
func (store *ElasticStore) BeginTransaction(ctx context.Context) (context.Context, error) { |
|
|
func (store *ElasticStore) BeginTransaction(ctx context.Context) (context.Context, error) { |
|
@ -66,15 +82,6 @@ func (store *ElasticStore) CommitTransaction(ctx context.Context) error { |
|
|
func (store *ElasticStore) RollbackTransaction(ctx context.Context) error { |
|
|
func (store *ElasticStore) RollbackTransaction(ctx context.Context) error { |
|
|
return nil |
|
|
return nil |
|
|
} |
|
|
} |
|
|
func (store *ElasticStore) KvDelete(ctx context.Context, key []byte) (err error) { |
|
|
|
|
|
return filer.ErrKvNotImplemented |
|
|
|
|
|
} |
|
|
|
|
|
func (store *ElasticStore) KvGet(ctx context.Context, key []byte) (value []byte, err error) { |
|
|
|
|
|
return []byte(""), filer.ErrKvNotImplemented |
|
|
|
|
|
} |
|
|
|
|
|
func (store *ElasticStore) KvPut(ctx context.Context, key []byte, value []byte) (err error) { |
|
|
|
|
|
return filer.ErrKvNotImplemented |
|
|
|
|
|
} |
|
|
|
|
|
func (store *ElasticStore) ListDirectoryPrefixedEntries(ctx context.Context, fullpath weed_util.FullPath, startFileName string, inclusive bool, limit int, prefix string) (entries []*filer.Entry, err error) { |
|
|
func (store *ElasticStore) ListDirectoryPrefixedEntries(ctx context.Context, fullpath weed_util.FullPath, startFileName string, inclusive bool, limit int, prefix string) (entries []*filer.Entry, err error) { |
|
|
return nil, filer.ErrUnsupportedListDirectoryPrefixed |
|
|
return nil, filer.ErrUnsupportedListDirectoryPrefixed |
|
|
} |
|
|
} |
|
@ -97,7 +104,7 @@ func (store *ElasticStore) InsertEntry(ctx context.Context, entry *filer.Entry) |
|
|
Type(indexType). |
|
|
Type(indexType). |
|
|
Id(id). |
|
|
Id(id). |
|
|
BodyJson(string(value)). |
|
|
BodyJson(string(value)). |
|
|
Do(context.Background()) |
|
|
|
|
|
|
|
|
Do(ctx) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
glog.Errorf("insert entry(%s) %v.", string(entry.FullPath), err) |
|
|
glog.Errorf("insert entry(%s) %v.", string(entry.FullPath), err) |
|
|
return fmt.Errorf("insert entry %v.", err) |
|
|
return fmt.Errorf("insert entry %v.", err) |
|
@ -114,7 +121,7 @@ func (store *ElasticStore) FindEntry(ctx context.Context, fullpath weed_util.Ful |
|
|
Index(index). |
|
|
Index(index). |
|
|
Type(indexType). |
|
|
Type(indexType). |
|
|
Id(id). |
|
|
Id(id). |
|
|
Do(context.Background()) |
|
|
|
|
|
|
|
|
Do(ctx) |
|
|
if elastic.IsNotFound(err) { |
|
|
if elastic.IsNotFound(err) { |
|
|
return nil, filer_pb.ErrNotFound |
|
|
return nil, filer_pb.ErrNotFound |
|
|
} |
|
|
} |
|
@ -133,24 +140,24 @@ func (store *ElasticStore) DeleteEntry(ctx context.Context, fullpath weed_util.F |
|
|
index := getIndex(fullpath) |
|
|
index := getIndex(fullpath) |
|
|
id := fmt.Sprintf("%x", md5.Sum([]byte(fullpath))) |
|
|
id := fmt.Sprintf("%x", md5.Sum([]byte(fullpath))) |
|
|
if strings.Count(string(fullpath), "/") == 1 { |
|
|
if strings.Count(string(fullpath), "/") == 1 { |
|
|
return store.deleteIndex(index) |
|
|
|
|
|
|
|
|
return store.deleteIndex(ctx, index) |
|
|
} |
|
|
} |
|
|
return store.deleteEntry(index, id) |
|
|
|
|
|
|
|
|
return store.deleteEntry(ctx, index, id) |
|
|
} |
|
|
} |
|
|
func (store *ElasticStore) deleteIndex(index string) (err error) { |
|
|
|
|
|
deleteResult, err := store.client.DeleteIndex(index).Do(context.Background()) |
|
|
|
|
|
|
|
|
func (store *ElasticStore) deleteIndex(ctx context.Context, index string) (err error) { |
|
|
|
|
|
deleteResult, err := store.client.DeleteIndex(index).Do(ctx) |
|
|
if elastic.IsNotFound(err) || (err == nil && deleteResult.Acknowledged) { |
|
|
if elastic.IsNotFound(err) || (err == nil && deleteResult.Acknowledged) { |
|
|
return nil |
|
|
return nil |
|
|
} |
|
|
} |
|
|
glog.Errorf("delete index(%s) %v.", index, err) |
|
|
glog.Errorf("delete index(%s) %v.", index, err) |
|
|
return err |
|
|
return err |
|
|
} |
|
|
} |
|
|
func (store *ElasticStore) deleteEntry(index, id string) (err error) { |
|
|
|
|
|
|
|
|
func (store *ElasticStore) deleteEntry(ctx context.Context, index, id string) (err error) { |
|
|
deleteResult, err := store.client.Delete(). |
|
|
deleteResult, err := store.client.Delete(). |
|
|
Index(index). |
|
|
Index(index). |
|
|
Type(indexType). |
|
|
Type(indexType). |
|
|
Id(id). |
|
|
Id(id). |
|
|
Do(context.Background()) |
|
|
|
|
|
|
|
|
Do(ctx) |
|
|
if err == nil { |
|
|
if err == nil { |
|
|
if deleteResult.Result == "deleted" || deleteResult.Result == "not_found" { |
|
|
if deleteResult.Result == "deleted" || deleteResult.Result == "not_found" { |
|
|
return nil |
|
|
return nil |
|
@ -178,12 +185,15 @@ func (store *ElasticStore) ListDirectoryEntries( |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func (store *ElasticStore) listRootDirectoryEntries(ctx context.Context, startFileName string, inclusive bool, limit int) (entries []*filer.Entry, err error) { |
|
|
func (store *ElasticStore) listRootDirectoryEntries(ctx context.Context, startFileName string, inclusive bool, limit int) (entries []*filer.Entry, err error) { |
|
|
indexResult, err := store.client.CatIndices().Do(context.Background()) |
|
|
|
|
|
|
|
|
indexResult, err := store.client.CatIndices().Do(ctx) |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
glog.Errorf("list indices %v.", err) |
|
|
glog.Errorf("list indices %v.", err) |
|
|
return entries, err |
|
|
return entries, err |
|
|
} |
|
|
} |
|
|
for _, index := range indexResult { |
|
|
for _, index := range indexResult { |
|
|
|
|
|
if index.Index == indexKV { |
|
|
|
|
|
continue |
|
|
|
|
|
} |
|
|
if strings.HasPrefix(index.Index, indexPrefix) { |
|
|
if strings.HasPrefix(index.Index, indexPrefix) { |
|
|
if entry, err := store.FindEntry(ctx, |
|
|
if entry, err := store.FindEntry(ctx, |
|
|
weed_util.FullPath("/"+strings.Replace(index.Index, indexPrefix, "", 1))); err == nil { |
|
|
weed_util.FullPath("/"+strings.Replace(index.Index, indexPrefix, "", 1))); err == nil { |
|
@ -209,16 +219,16 @@ func (store *ElasticStore) listDirectoryEntries( |
|
|
index := getIndex(fullpath) |
|
|
index := getIndex(fullpath) |
|
|
nextStart := "" |
|
|
nextStart := "" |
|
|
parentId := fmt.Sprintf("%x", md5.Sum([]byte(fullpath))) |
|
|
parentId := fmt.Sprintf("%x", md5.Sum([]byte(fullpath))) |
|
|
if _, err := store.client.Refresh(index).Do(context.Background()); err != nil { |
|
|
|
|
|
|
|
|
if _, err := store.client.Refresh(index).Do(ctx); err != nil { |
|
|
if elastic.IsNotFound(err) { |
|
|
if elastic.IsNotFound(err) { |
|
|
store.client.CreateIndex(index).Do(context.Background()) |
|
|
|
|
|
|
|
|
store.client.CreateIndex(index).Do(ctx) |
|
|
return entries, nil |
|
|
return entries, nil |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
for { |
|
|
for { |
|
|
result := &elastic.SearchResult{} |
|
|
result := &elastic.SearchResult{} |
|
|
if (startFileName == "" && first) || inclusive { |
|
|
if (startFileName == "" && first) || inclusive { |
|
|
if result, err = store.search(index, parentId); err != nil { |
|
|
|
|
|
|
|
|
if result, err = store.search(ctx, index, parentId); err != nil { |
|
|
glog.Errorf("search (%s,%s,%t,%d) %v.", string(fullpath), startFileName, inclusive, limit, err) |
|
|
glog.Errorf("search (%s,%s,%t,%d) %v.", string(fullpath), startFileName, inclusive, limit, err) |
|
|
return entries, err |
|
|
return entries, err |
|
|
} |
|
|
} |
|
@ -228,7 +238,7 @@ func (store *ElasticStore) listDirectoryEntries( |
|
|
fullPath = nextStart |
|
|
fullPath = nextStart |
|
|
} |
|
|
} |
|
|
after := fmt.Sprintf("%x", md5.Sum([]byte(fullPath))) |
|
|
after := fmt.Sprintf("%x", md5.Sum([]byte(fullPath))) |
|
|
if result, err = store.searchAfter(index, parentId, after); err != nil { |
|
|
|
|
|
|
|
|
if result, err = store.searchAfter(ctx, index, parentId, after); err != nil { |
|
|
glog.Errorf("searchAfter (%s,%s,%t,%d) %v.", string(fullpath), startFileName, inclusive, limit, err) |
|
|
glog.Errorf("searchAfter (%s,%s,%t,%d) %v.", string(fullpath), startFileName, inclusive, limit, err) |
|
|
return entries, err |
|
|
return entries, err |
|
|
} |
|
|
} |
|
@ -259,8 +269,8 @@ func (store *ElasticStore) listDirectoryEntries( |
|
|
return entries, nil |
|
|
return entries, nil |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func (store *ElasticStore) search(index, parentId string) (result *elastic.SearchResult, err error) { |
|
|
|
|
|
if count, err := store.client.Count(index).Do(context.Background()); err == nil && count == 0 { |
|
|
|
|
|
|
|
|
func (store *ElasticStore) search(ctx context.Context, index, parentId string) (result *elastic.SearchResult, err error) { |
|
|
|
|
|
if count, err := store.client.Count(index).Do(ctx); err == nil && count == 0 { |
|
|
return &elastic.SearchResult{ |
|
|
return &elastic.SearchResult{ |
|
|
Hits: &elastic.SearchHits{ |
|
|
Hits: &elastic.SearchHits{ |
|
|
Hits: make([]*elastic.SearchHit, 0)}, |
|
|
Hits: make([]*elastic.SearchHit, 0)}, |
|
@ -271,18 +281,18 @@ func (store *ElasticStore) search(index, parentId string) (result *elastic.Searc |
|
|
Query(elastic.NewMatchQuery("ParentId", parentId)). |
|
|
Query(elastic.NewMatchQuery("ParentId", parentId)). |
|
|
Size(store.maxPageSize). |
|
|
Size(store.maxPageSize). |
|
|
Sort("_id", false). |
|
|
Sort("_id", false). |
|
|
Do(context.Background()) |
|
|
|
|
|
|
|
|
Do(ctx) |
|
|
return queryResult, err |
|
|
return queryResult, err |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func (store *ElasticStore) searchAfter(index, parentId, after string) (result *elastic.SearchResult, err error) { |
|
|
|
|
|
|
|
|
func (store *ElasticStore) searchAfter(ctx context.Context, index, parentId, after string) (result *elastic.SearchResult, err error) { |
|
|
queryResult, err := store.client.Search(). |
|
|
queryResult, err := store.client.Search(). |
|
|
Index(index). |
|
|
Index(index). |
|
|
Query(elastic.NewMatchQuery("ParentId", parentId)). |
|
|
Query(elastic.NewMatchQuery("ParentId", parentId)). |
|
|
SearchAfter(after). |
|
|
SearchAfter(after). |
|
|
Size(store.maxPageSize). |
|
|
Size(store.maxPageSize). |
|
|
Sort("_id", false). |
|
|
Sort("_id", false). |
|
|
Do(context.Background()) |
|
|
|
|
|
|
|
|
Do(ctx) |
|
|
return queryResult, err |
|
|
return queryResult, err |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|