Browse Source

add logging

pull/1516/head
Chris Lu 4 years ago
parent
commit
5d01dd28a6
  1. 3
      weed/filer/filechunk_manifest.go

3
weed/filer/filechunk_manifest.go

@ -98,7 +98,7 @@ func retriedFetchChunkData(urlStrings []string, cipherKey []byte, isGzipped bool
var err error
var buffer bytes.Buffer
for waitTime := time.Second; waitTime < 10*time.Minute; waitTime+=waitTime/2 {
for waitTime := time.Second; waitTime < 10*time.Minute; waitTime += waitTime / 2 {
for _, urlString := range urlStrings {
err = util.ReadUrlAsStream(urlString, cipherKey, isGzipped, isFullChunk, offset, size, func(data []byte) {
buffer.Write(data)
@ -110,6 +110,7 @@ func retriedFetchChunkData(urlStrings []string, cipherKey []byte, isGzipped bool
break
}
}
glog.V(0).Infof("sleep for %v before retrying reading", waitTime)
time.Sleep(waitTime)
}

Loading…
Cancel
Save