1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-03 23:56:41 +02:00

ensure offset in the index file is positive

This commit is contained in:
Chris Lu 2020-10-31 15:50:01 -07:00
parent 10f9f1cc26
commit 9708df47d1

View file

@ -22,7 +22,7 @@ func CheckAndFixVolumeDataIntegrity(v *Volume, indexFile *os.File) (lastAppendAt
return 0, nil
}
healthyIndexSize := indexSize
for i := 1; i <= 10; i++ {
for i := 1; i <= 10 && indexSize >= int64(i)*NeedleMapEntrySize; i++ {
// check and fix last 10 entries
lastAppendAtNs, err = doCheckAndFixVolumeData(v, indexFile, indexSize-int64(i)*NeedleMapEntrySize)
if err == io.EOF {