forked from TrueCloudLab/distribution
Merge pull request #3902 from pluralsh/catalog-opti-fix-rebase
Optimise catalog function rebase of #3145
This commit is contained in:
commit
bf3c2df6b2
2 changed files with 92 additions and 165 deletions
|
@ -3,23 +3,32 @@ package storage
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"path"
|
"path"
|
||||||
|
"sort"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/distribution/distribution/v3/reference"
|
"github.com/distribution/distribution/v3/reference"
|
||||||
"github.com/distribution/distribution/v3/registry/storage/driver"
|
"github.com/distribution/distribution/v3/registry/storage/driver"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Returns a list, or partial list, of repositories in the registry.
|
var (
|
||||||
|
// ErrStopReposWalk is a sentinel error to indicate that the repository path walk was stopped.
|
||||||
|
ErrStopReposWalk = errors.New("stop repos walk")
|
||||||
|
)
|
||||||
|
|
||||||
|
// Repositories populates the passed passed repos slice with repositories in the
|
||||||
|
// registry up to the capacity of the slice. Returns the number of repos returned and
|
||||||
|
// `io.EOF` if no more repositories are available.
|
||||||
// Because it's a quite expensive operation, it should only be used when building up
|
// Because it's a quite expensive operation, it should only be used when building up
|
||||||
// an initial set of repositories.
|
// an initial set of repositories.
|
||||||
func (reg *registry) Repositories(ctx context.Context, repos []string, last string) (n int, err error) {
|
func (reg *registry) Repositories(ctx context.Context, repos []string, last string) (n int, err error) {
|
||||||
var finishedWalk bool
|
var finishedWalk bool
|
||||||
var foundRepos []string
|
var foundRepos []string
|
||||||
|
|
||||||
if len(repos) == 0 {
|
if len(repos) == 0 && cap(repos) == 0 {
|
||||||
return 0, errors.New("no space in slice")
|
return 0, errors.New("no repos requested")
|
||||||
}
|
}
|
||||||
|
|
||||||
root, err := pathFor(repositoriesRootPathSpec{})
|
root, err := pathFor(repositoriesRootPathSpec{})
|
||||||
|
@ -27,21 +36,18 @@ func (reg *registry) Repositories(ctx context.Context, repos []string, last stri
|
||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
err = reg.blobStore.driver.Walk(ctx, root, func(fileInfo driver.FileInfo) error {
|
err = reg.walkRepos(ctx, root, last, func(repoPath string) error {
|
||||||
err := handleRepository(fileInfo, root, last, func(repoPath string) error {
|
// this is placed before the append,
|
||||||
foundRepos = append(foundRepos, repoPath)
|
// so that we will get an extra repo if
|
||||||
return nil
|
// any. This ensures that we do not return
|
||||||
})
|
// io.EOF without it being the last record.
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// if we've filled our array, no need to walk any further
|
|
||||||
if len(foundRepos) == len(repos) {
|
if len(foundRepos) == len(repos) {
|
||||||
finishedWalk = true
|
finishedWalk = true
|
||||||
return driver.ErrSkipDir
|
return ErrStopReposWalk
|
||||||
}
|
}
|
||||||
|
|
||||||
|
foundRepos = append(foundRepos, repoPath)
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -64,11 +70,7 @@ func (reg *registry) Enumerate(ctx context.Context, ingester func(string) error)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
err = reg.blobStore.driver.Walk(ctx, root, func(fileInfo driver.FileInfo) error {
|
return reg.walkRepos(ctx, root, "", ingester)
|
||||||
return handleRepository(fileInfo, root, "", ingester)
|
|
||||||
})
|
|
||||||
|
|
||||||
return err
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove removes a repository from storage
|
// Remove removes a repository from storage
|
||||||
|
@ -81,78 +83,86 @@ func (reg *registry) Remove(ctx context.Context, name reference.Named) error {
|
||||||
return reg.driver.Delete(ctx, repoDir)
|
return reg.driver.Delete(ctx, repoDir)
|
||||||
}
|
}
|
||||||
|
|
||||||
// lessPath returns true if one path a is less than path b.
|
// walkRepos walks paths rooted in root calling fn for each found repo path.
|
||||||
//
|
// Paths are walked in a lexical order which makes the output deterministic.
|
||||||
// A component-wise comparison is done, rather than the lexical comparison of
|
// If last is not an empty string it walks all repo paths. Otherwise
|
||||||
// strings.
|
// it returns when last repoPath is found.
|
||||||
func lessPath(a, b string) bool {
|
func (reg *registry) walkRepos(ctx context.Context, root, last string, fn func(repoPath string) error) error {
|
||||||
// we provide this behavior by making separator always sort first.
|
midFn := fn
|
||||||
return compareReplaceInline(a, b, '/', '\x00') < 0
|
|
||||||
|
// middleware func to exclude the `last` repo
|
||||||
|
// only use it, if there is set a last.
|
||||||
|
if last != "" {
|
||||||
|
midFn = func(repoPath string) error {
|
||||||
|
if repoPath != last {
|
||||||
|
return fn(repoPath)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// call our recursive func, with the midFn and the start path
|
||||||
|
// of where we want to find repositories.
|
||||||
|
err := reg.walkReposPath(ctx, root, root, last, midFn)
|
||||||
|
if err == ErrStopReposWalk {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// compareReplaceInline modifies runtime.cmpstring to replace old with new
|
// walkReposPath walks through all folders in `lookPath`,
|
||||||
// during a byte-wise comparison.
|
// looking for repositories. See walkRepos for more detailed description.
|
||||||
func compareReplaceInline(s1, s2 string, old, new byte) int {
|
func (reg *registry) walkReposPath(ctx context.Context, root, lookPath, last string, fn func(repoPath string) error) error {
|
||||||
// TODO(stevvooe): We are missing an optimization when the s1 and s2 have
|
// get children in the current path
|
||||||
// the exact same slice header. It will make the code unsafe but can
|
children, err := reg.blobStore.driver.List(ctx, lookPath)
|
||||||
// provide some extra performance.
|
if err != nil {
|
||||||
|
return err
|
||||||
l := len(s1)
|
|
||||||
if len(s2) < l {
|
|
||||||
l = len(s2)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for i := 0; i < l; i++ {
|
// sort this, so that it will be added in the correct order
|
||||||
c1, c2 := s1[i], s2[i]
|
sort.Strings(children)
|
||||||
if c1 == old {
|
|
||||||
c1 = new
|
|
||||||
}
|
|
||||||
|
|
||||||
if c2 == old {
|
if last != "" {
|
||||||
c2 = new
|
splitLast := strings.Split(last, "/")
|
||||||
}
|
|
||||||
|
|
||||||
if c1 < c2 {
|
// call the next iteration of walkReposPath if any, but
|
||||||
return -1
|
// exclude the current one.
|
||||||
}
|
if len(splitLast) > 1 {
|
||||||
|
if err := reg.walkReposPath(ctx, root, lookPath+"/"+splitLast[0], strings.Join(splitLast[1:], "/"), fn); err != nil {
|
||||||
if c1 > c2 {
|
return err
|
||||||
return +1
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
// find current last path in our children
|
||||||
if len(s1) < len(s2) {
|
n := sort.SearchStrings(children, lookPath+"/"+splitLast[0])
|
||||||
return -1
|
if n == len(children) || children[n] != lookPath+"/"+splitLast[0] {
|
||||||
}
|
return fmt.Errorf("%q repository not found", last)
|
||||||
|
}
|
||||||
if len(s1) > len(s2) {
|
|
||||||
return +1
|
// if this is not a final `last` (there are more `/` left)
|
||||||
}
|
// then exclude the current index, else include it
|
||||||
|
if len(splitLast) > 1 {
|
||||||
return 0
|
children = children[n+1:]
|
||||||
}
|
} else {
|
||||||
|
children = children[n:]
|
||||||
// handleRepository calls function fn with a repository path if fileInfo
|
}
|
||||||
// has a path of a repository under root and that it is lexographically
|
}
|
||||||
// after last. Otherwise, it will return ErrSkipDir. This should be used
|
|
||||||
// with Walk to do handling with repositories in a storage.
|
for _, child := range children {
|
||||||
func handleRepository(fileInfo driver.FileInfo, root, last string, fn func(repoPath string) error) error {
|
_, file := path.Split(child)
|
||||||
filePath := fileInfo.Path()
|
|
||||||
|
if file == "_manifests" {
|
||||||
// lop the base path off
|
if err := fn(strings.TrimPrefix(lookPath, root+"/")); err != nil {
|
||||||
repo := filePath[len(root)+1:]
|
if err == driver.ErrSkipDir {
|
||||||
|
break
|
||||||
_, file := path.Split(repo)
|
}
|
||||||
if file == "_manifests" {
|
return err
|
||||||
repo = strings.TrimSuffix(repo, "/_manifests")
|
}
|
||||||
if lessPath(last, repo) {
|
} else if !strings.HasPrefix(file, "_") {
|
||||||
if err := fn(repo); err != nil {
|
if err := reg.walkReposPath(ctx, root, child, "", fn); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return driver.ErrSkipDir
|
|
||||||
} else if strings.HasPrefix(file, "_") {
|
|
||||||
return driver.ErrSkipDir
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
|
@ -4,7 +4,6 @@ import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"math/rand"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/distribution/distribution/v3"
|
"github.com/distribution/distribution/v3"
|
||||||
|
@ -241,85 +240,3 @@ func TestCatalogWalkError(t *testing.T) {
|
||||||
t.Errorf("Expected catalog driver list error")
|
t.Errorf("Expected catalog driver list error")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func BenchmarkPathCompareEqual(B *testing.B) {
|
|
||||||
B.StopTimer()
|
|
||||||
pp := randomPath(100)
|
|
||||||
// make a real copy
|
|
||||||
ppb := append([]byte{}, []byte(pp)...)
|
|
||||||
a, b := pp, string(ppb)
|
|
||||||
|
|
||||||
B.StartTimer()
|
|
||||||
for i := 0; i < B.N; i++ {
|
|
||||||
lessPath(a, b)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func BenchmarkPathCompareNotEqual(B *testing.B) {
|
|
||||||
B.StopTimer()
|
|
||||||
a, b := randomPath(100), randomPath(100)
|
|
||||||
B.StartTimer()
|
|
||||||
|
|
||||||
for i := 0; i < B.N; i++ {
|
|
||||||
lessPath(a, b)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func BenchmarkPathCompareNative(B *testing.B) {
|
|
||||||
B.StopTimer()
|
|
||||||
a, b := randomPath(100), randomPath(100)
|
|
||||||
B.StartTimer()
|
|
||||||
|
|
||||||
for i := 0; i < B.N; i++ {
|
|
||||||
c := a < b
|
|
||||||
_ = c && false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func BenchmarkPathCompareNativeEqual(B *testing.B) {
|
|
||||||
B.StopTimer()
|
|
||||||
pp := randomPath(100)
|
|
||||||
a, b := pp, pp
|
|
||||||
B.StartTimer()
|
|
||||||
|
|
||||||
for i := 0; i < B.N; i++ {
|
|
||||||
c := a < b
|
|
||||||
_ = c && false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
filenameChars = []byte("abcdefghijklmnopqrstuvwxyz0123456789")
|
|
||||||
separatorChars = []byte("._-")
|
|
||||||
)
|
|
||||||
|
|
||||||
func randomPath(length int64) string {
|
|
||||||
path := "/"
|
|
||||||
for int64(len(path)) < length {
|
|
||||||
chunkLength := rand.Int63n(length-int64(len(path))) + 1
|
|
||||||
chunk := randomFilename(chunkLength)
|
|
||||||
path += chunk
|
|
||||||
remaining := length - int64(len(path))
|
|
||||||
if remaining == 1 {
|
|
||||||
path += randomFilename(1)
|
|
||||||
} else if remaining > 1 {
|
|
||||||
path += "/"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return path
|
|
||||||
}
|
|
||||||
|
|
||||||
func randomFilename(length int64) string {
|
|
||||||
b := make([]byte, length)
|
|
||||||
wasSeparator := true
|
|
||||||
for i := range b {
|
|
||||||
if !wasSeparator && i < len(b)-1 && rand.Intn(4) == 0 {
|
|
||||||
b[i] = separatorChars[rand.Intn(len(separatorChars))]
|
|
||||||
wasSeparator = true
|
|
||||||
} else {
|
|
||||||
b[i] = filenameChars[rand.Intn(len(filenameChars))]
|
|
||||||
wasSeparator = false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return string(b)
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue