mirror of
https://github.com/minio/minio.git
synced 2025-04-05 12:20:34 -04:00
skip metacache entries healing to speed up startup
This commit is contained in:
parent
44e23b7f4f
commit
951b6b203b
@ -21,6 +21,7 @@ import (
|
|||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -676,9 +677,7 @@ func (h *healSequence) queueHealTask(source healSource, healType madmin.HealItem
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Wait and proceed if there are active requests
|
// Wait and proceed if there are active requests
|
||||||
if opts.IOCount > 0 {
|
waitForLowHTTPReq(opts.IOCount, opts.Sleep)
|
||||||
waitForLowHTTPReq(opts.IOCount, opts.Sleep)
|
|
||||||
}
|
|
||||||
|
|
||||||
h.mutex.Lock()
|
h.mutex.Lock()
|
||||||
h.scannedItemsMap[healType]++
|
h.scannedItemsMap[healType]++
|
||||||
@ -821,6 +820,11 @@ func (h *healSequence) healMinioSysMeta(objAPI ObjectLayer, metaPrefix string) f
|
|||||||
return errHealStopSignalled
|
return errHealStopSignalled
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Skip metacache entries healing
|
||||||
|
if strings.HasPrefix(object, "buckets/.minio.sys/.metacache/") {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
err := h.queueHealTask(healSource{
|
err := h.queueHealTask(healSource{
|
||||||
bucket: bucket,
|
bucket: bucket,
|
||||||
object: object,
|
object: object,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user