Chris Lu
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
weed/storage/store_vacuum.go
|
|
@ -26,6 +26,9 @@ func (s *Store) CompactVolume(vid needle.VolumeId, preallocate int64, compaction |
|
|
|
return fmt.Errorf("volume id %d is not found during compact", vid) |
|
|
|
} |
|
|
|
func (s *Store) CommitCompactVolume(vid needle.VolumeId) (bool, error) { |
|
|
|
if s.isStopping { |
|
|
|
return false, fmt.Errorf("volume id %d skips compact because volume is stopping", vid) |
|
|
|
} |
|
|
|
if v := s.findVolume(vid); v != nil { |
|
|
|
return v.IsReadOnly(), v.CommitCompact() |
|
|
|
} |
|
|
|