mirror of
https://github.com/minio/minio.git
synced 2025-04-04 20:00:31 -04:00
When listing, do not count delete markers (#15689)
When limiting listing do not count delete, since they may be discarded. Extend limit, since we may be discarding the forward-to marker. Fix directories always being sent to resolve, since they didn't return as match.
This commit is contained in:
parent
5c61c3ccdc
commit
eee1ce305c
@ -85,6 +85,12 @@ func (e *metaCacheEntry) matches(other *metaCacheEntry, strict bool) (prefer *me
|
|||||||
return other, false
|
return other, false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if other.isDir() || e.isDir() {
|
||||||
|
if e.isDir() {
|
||||||
|
return e, other.isDir() == e.isDir()
|
||||||
|
}
|
||||||
|
return other, other.isDir() == e.isDir()
|
||||||
|
}
|
||||||
eVers, eErr := e.xlmeta()
|
eVers, eErr := e.xlmeta()
|
||||||
oVers, oErr := other.xlmeta()
|
oVers, oErr := other.xlmeta()
|
||||||
if eErr != nil || oErr != nil {
|
if eErr != nil || oErr != nil {
|
||||||
|
@ -768,8 +768,8 @@ func (es *erasureSingle) listPathInner(ctx context.Context, o listPathOptions, r
|
|||||||
|
|
||||||
var limit int
|
var limit int
|
||||||
if o.Limit > 0 && o.StopDiskAtLimit {
|
if o.Limit > 0 && o.StopDiskAtLimit {
|
||||||
// Over-read by 1 to know if we truncate results.
|
// Over-read by 2 to know if we truncate results and not reach false EOF.
|
||||||
limit = o.Limit + 1
|
limit = o.Limit + 2
|
||||||
}
|
}
|
||||||
|
|
||||||
ctxDone := ctx.Done()
|
ctxDone := ctx.Done()
|
||||||
@ -842,9 +842,9 @@ func (er *erasureObjects) listPath(ctx context.Context, o listPathOptions, resul
|
|||||||
}
|
}
|
||||||
var limit int
|
var limit int
|
||||||
if o.Limit > 0 && o.StopDiskAtLimit {
|
if o.Limit > 0 && o.StopDiskAtLimit {
|
||||||
// Over-read by 2 + 1 for every 16 in limit to give some space for resolver
|
// Over-read by 4 + 1 for every 16 in limit to give some space for resolver,
|
||||||
// And know if we have truncated.
|
// allow for truncating the list and know if we have more results.
|
||||||
limit = o.Limit + 2 + (o.Limit / 16)
|
limit = o.Limit + 4 + (o.Limit / 16)
|
||||||
}
|
}
|
||||||
ctxDone := ctx.Done()
|
ctxDone := ctx.Done()
|
||||||
return listPathRaw(ctx, listPathRawOptions{
|
return listPathRaw(ctx, listPathRawOptions{
|
||||||
|
@ -89,6 +89,15 @@ func (s *xlStorage) WalkDir(ctx context.Context, opts WalkDirOptions, wr io.Writ
|
|||||||
defer close(out)
|
defer close(out)
|
||||||
var objsReturned int
|
var objsReturned int
|
||||||
|
|
||||||
|
objReturned := func(metadata []byte) {
|
||||||
|
if opts.Limit <= 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if m, _, _ := isIndexedMetaV2(metadata); m != nil && !m.IsLatestDeleteMarker() {
|
||||||
|
objsReturned++
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Fast exit track to check if we are listing an object with
|
// Fast exit track to check if we are listing an object with
|
||||||
// a trailing slash, this will avoid to list the object content.
|
// a trailing slash, this will avoid to list the object content.
|
||||||
if HasSuffix(opts.BaseDir, SlashSeparator) {
|
if HasSuffix(opts.BaseDir, SlashSeparator) {
|
||||||
@ -103,7 +112,7 @@ func (s *xlStorage) WalkDir(ctx context.Context, opts WalkDirOptions, wr io.Writ
|
|||||||
name: opts.BaseDir,
|
name: opts.BaseDir,
|
||||||
metadata: metadata,
|
metadata: metadata,
|
||||||
}
|
}
|
||||||
objsReturned++
|
objReturned(metadata)
|
||||||
} else {
|
} else {
|
||||||
st, sterr := Lstat(pathJoin(volumeDir, opts.BaseDir, xlStorageFormatFile))
|
st, sterr := Lstat(pathJoin(volumeDir, opts.BaseDir, xlStorageFormatFile))
|
||||||
if sterr == nil && st.Mode().IsRegular() {
|
if sterr == nil && st.Mode().IsRegular() {
|
||||||
@ -156,13 +165,13 @@ func (s *xlStorage) WalkDir(ctx context.Context, opts WalkDirOptions, wr io.Writ
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
if len(prefix) > 0 && !strings.HasPrefix(entry, prefix) {
|
if len(prefix) > 0 && !strings.HasPrefix(entry, prefix) {
|
||||||
// Do do not retain the file, since it doesn't
|
// Do not retain the file, since it doesn't
|
||||||
// match the prefix.
|
// match the prefix.
|
||||||
entries[i] = ""
|
entries[i] = ""
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if len(forward) > 0 && entry < forward {
|
if len(forward) > 0 && entry < forward {
|
||||||
// Do do not retain the file, since its
|
// Do not retain the file, since its
|
||||||
// lexially smaller than 'forward'
|
// lexially smaller than 'forward'
|
||||||
entries[i] = ""
|
entries[i] = ""
|
||||||
continue
|
continue
|
||||||
@ -205,7 +214,8 @@ func (s *xlStorage) WalkDir(ctx context.Context, opts WalkDirOptions, wr io.Writ
|
|||||||
meta.name = strings.TrimSuffix(meta.name, SlashSeparator)
|
meta.name = strings.TrimSuffix(meta.name, SlashSeparator)
|
||||||
meta.name = pathJoin(current, meta.name)
|
meta.name = pathJoin(current, meta.name)
|
||||||
meta.name = decodeDirObject(meta.name)
|
meta.name = decodeDirObject(meta.name)
|
||||||
objsReturned++
|
|
||||||
|
objReturned(meta.metadata)
|
||||||
out <- meta
|
out <- meta
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@ -225,7 +235,8 @@ func (s *xlStorage) WalkDir(ctx context.Context, opts WalkDirOptions, wr io.Writ
|
|||||||
meta.name = strings.TrimSuffix(entry, xlStorageFormatFileV1)
|
meta.name = strings.TrimSuffix(entry, xlStorageFormatFileV1)
|
||||||
meta.name = strings.TrimSuffix(meta.name, SlashSeparator)
|
meta.name = strings.TrimSuffix(meta.name, SlashSeparator)
|
||||||
meta.name = pathJoin(current, meta.name)
|
meta.name = pathJoin(current, meta.name)
|
||||||
objsReturned++
|
objReturned(meta.metadata)
|
||||||
|
|
||||||
out <- meta
|
out <- meta
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@ -289,14 +300,16 @@ func (s *xlStorage) WalkDir(ctx context.Context, opts WalkDirOptions, wr io.Writ
|
|||||||
if isDirObj {
|
if isDirObj {
|
||||||
meta.name = strings.TrimSuffix(meta.name, globalDirSuffixWithSlash) + slashSeparator
|
meta.name = strings.TrimSuffix(meta.name, globalDirSuffixWithSlash) + slashSeparator
|
||||||
}
|
}
|
||||||
objsReturned++
|
objReturned(meta.metadata)
|
||||||
|
|
||||||
out <- meta
|
out <- meta
|
||||||
case osIsNotExist(err), isSysErrIsDir(err):
|
case osIsNotExist(err), isSysErrIsDir(err):
|
||||||
meta.metadata, err = xioutil.ReadFile(pathJoin(volumeDir, meta.name, xlStorageFormatFileV1))
|
meta.metadata, err = xioutil.ReadFile(pathJoin(volumeDir, meta.name, xlStorageFormatFileV1))
|
||||||
diskHealthCheckOK(ctx, err)
|
diskHealthCheckOK(ctx, err)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
// It was an object
|
// It was an object
|
||||||
objsReturned++
|
objReturned(meta.metadata)
|
||||||
|
|
||||||
out <- meta
|
out <- meta
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user