diff --git a/weed/storage/volume.go b/weed/storage/volume.go index 6d48fbc83..2dfba55c8 100644 --- a/weed/storage/volume.go +++ b/weed/storage/volume.go @@ -195,6 +195,10 @@ func (v *Volume) Close() { v.dataFileAccessLock.Lock() defer v.dataFileAccessLock.Unlock() if v.nm != nil { + for v.isCompacting { + glog.Warningf("Volume being closed during compression idx %d", v.Id) + time.Sleep(time.Second) + } if err := v.nm.Sync(); err != nil { glog.Warningf("Volume Close fail to sync volume idx %d", v.Id) }