2014-05-19 19:18:39 -07:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2022-07-29 00:17:28 -07:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/stats"
|
2019-04-18 21:43:36 -07:00
|
|
|
|
2022-07-29 00:17:28 -07:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/storage/needle"
|
2014-05-19 19:18:39 -07:00
|
|
|
)
|
|
|
|
|
2019-04-18 21:43:36 -07:00
|
|
|
func (s *Store) CheckCompactVolume(volumeId needle.VolumeId) (float64, error) {
|
2018-10-14 23:12:43 -07:00
|
|
|
if v := s.findVolume(volumeId); v != nil {
|
2022-09-16 04:43:17 -05:00
|
|
|
glog.V(3).Infof("volume %d garbage level: %f", volumeId, v.garbageLevel())
|
2018-10-14 23:12:43 -07:00
|
|
|
return v.garbageLevel(), nil
|
2014-05-19 19:18:39 -07:00
|
|
|
}
|
2018-10-14 23:12:43 -07:00
|
|
|
return 0, fmt.Errorf("volume id %d is not found during check compact", volumeId)
|
2014-05-19 19:18:39 -07:00
|
|
|
}
|
2021-10-24 01:55:34 -07:00
|
|
|
func (s *Store) CompactVolume(vid needle.VolumeId, preallocate int64, compactionBytePerSecond int64, progressFn ProgressFunc) error {
|
2014-05-19 19:18:39 -07:00
|
|
|
if v := s.findVolume(vid); v != nil {
|
2020-08-31 18:10:53 -07:00
|
|
|
s := stats.NewDiskStatus(v.dir)
|
|
|
|
if int64(s.Free) < preallocate {
|
|
|
|
return fmt.Errorf("free space: %d bytes, not enough for %d bytes", s.Free, preallocate)
|
|
|
|
}
|
2021-10-24 01:55:34 -07:00
|
|
|
return v.Compact2(preallocate, compactionBytePerSecond, progressFn)
|
2014-05-19 19:18:39 -07:00
|
|
|
}
|
2015-03-10 00:20:31 -07:00
|
|
|
return fmt.Errorf("volume id %d is not found during compact", vid)
|
2014-05-19 19:18:39 -07:00
|
|
|
}
|
2021-05-05 17:54:50 +08:00
|
|
|
func (s *Store) CommitCompactVolume(vid needle.VolumeId) (bool, error) {
|
2022-02-07 20:16:15 +05:00
|
|
|
if s.isStopping {
|
|
|
|
return false, fmt.Errorf("volume id %d skips compact because volume is stopping", vid)
|
|
|
|
}
|
2014-05-19 19:18:39 -07:00
|
|
|
if v := s.findVolume(vid); v != nil {
|
2021-05-05 17:54:50 +08:00
|
|
|
return v.IsReadOnly(), v.CommitCompact()
|
2014-05-19 19:18:39 -07:00
|
|
|
}
|
2021-05-05 17:54:50 +08:00
|
|
|
return false, fmt.Errorf("volume id %d is not found during commit compact", vid)
|
2014-05-19 19:18:39 -07:00
|
|
|
}
|
2019-04-18 21:43:36 -07:00
|
|
|
func (s *Store) CommitCleanupVolume(vid needle.VolumeId) error {
|
2017-08-29 23:59:53 -07:00
|
|
|
if v := s.findVolume(vid); v != nil {
|
|
|
|
return v.cleanupCompact()
|
|
|
|
}
|
|
|
|
return fmt.Errorf("volume id %d is not found during cleaning up", vid)
|
|
|
|
}
|