mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
waite volume being closed during compression idx
This commit is contained in:
parent
3bce568c32
commit
7315d1d039
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue