2012-11-07 09:51:43 +00:00
|
|
|
package topology
|
|
|
|
|
|
|
|
import (
|
2018-10-15 06:12:43 +00:00
|
|
|
"context"
|
2021-09-13 05:47:52 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
2019-07-22 04:49:10 +00:00
|
|
|
"sync/atomic"
|
2012-11-07 09:51:43 +00:00
|
|
|
"time"
|
2014-10-26 18:34:55 +00:00
|
|
|
|
2019-04-19 04:43:36 +00:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2020-03-13 22:41:24 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/needle"
|
|
|
|
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2018-10-15 06:12:43 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
|
2012-11-07 09:51:43 +00:00
|
|
|
)
|
|
|
|
|
2021-02-22 20:52:37 +00:00
|
|
|
func (t *Topology) batchVacuumVolumeCheck(grpcDialOption grpc.DialOption, vid needle.VolumeId,
|
2019-12-01 15:29:41 +00:00
|
|
|
locationlist *VolumeLocationList, garbageThreshold float64) (*VolumeLocationList, bool) {
|
|
|
|
ch := make(chan int, locationlist.Length())
|
|
|
|
errCount := int32(0)
|
2012-11-24 01:03:27 +00:00
|
|
|
for index, dn := range locationlist.list {
|
2021-09-13 05:47:52 +00:00
|
|
|
go func(index int, url pb.ServerAddress, vid needle.VolumeId) {
|
2020-02-26 05:50:12 +00:00
|
|
|
err := operation.WithVolumeServerClient(url, grpcDialOption, func(volumeServerClient volume_server_pb.VolumeServerClient) error {
|
|
|
|
resp, err := volumeServerClient.VacuumVolumeCheck(context.Background(), &volume_server_pb.VacuumVolumeCheckRequest{
|
2019-03-23 18:33:34 +00:00
|
|
|
VolumeId: uint32(vid),
|
2018-10-15 06:12:43 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
2019-12-01 15:29:41 +00:00
|
|
|
atomic.AddInt32(&errCount, 1)
|
|
|
|
ch <- -1
|
2018-10-15 06:12:43 +00:00
|
|
|
return err
|
|
|
|
}
|
2019-12-01 15:29:41 +00:00
|
|
|
if resp.GarbageRatio >= garbageThreshold {
|
|
|
|
ch <- index
|
|
|
|
} else {
|
|
|
|
ch <- -1
|
|
|
|
}
|
2018-10-15 06:12:43 +00:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infof("Checking vacuuming %d on %s: %v", vid, url, err)
|
2012-11-24 01:03:27 +00:00
|
|
|
}
|
2021-09-13 05:47:52 +00:00
|
|
|
}(index, dn.ServerAddress(), vid)
|
2012-11-24 01:03:27 +00:00
|
|
|
}
|
2019-12-01 15:29:41 +00:00
|
|
|
vacuumLocationList := NewVolumeLocationList()
|
2020-10-19 21:24:57 +00:00
|
|
|
|
2021-02-22 20:52:37 +00:00
|
|
|
waitTimeout := time.NewTimer(time.Minute * time.Duration(t.volumeSizeLimit/1024/1024/1000+1))
|
2020-10-19 21:24:57 +00:00
|
|
|
defer waitTimeout.Stop()
|
|
|
|
|
2019-11-20 00:24:58 +00:00
|
|
|
for range locationlist.list {
|
2012-11-24 01:03:27 +00:00
|
|
|
select {
|
2019-12-01 15:29:41 +00:00
|
|
|
case index := <-ch:
|
|
|
|
if index != -1 {
|
|
|
|
vacuumLocationList.list = append(vacuumLocationList.list, locationlist.list[index])
|
|
|
|
}
|
2020-10-19 21:24:57 +00:00
|
|
|
case <-waitTimeout.C:
|
2019-12-01 15:29:41 +00:00
|
|
|
return vacuumLocationList, false
|
2012-11-24 01:03:27 +00:00
|
|
|
}
|
|
|
|
}
|
2019-12-01 15:29:41 +00:00
|
|
|
return vacuumLocationList, errCount == 0 && len(vacuumLocationList.list) > 0
|
2012-11-24 01:03:27 +00:00
|
|
|
}
|
2021-02-22 20:52:37 +00:00
|
|
|
func (t *Topology) batchVacuumVolumeCompact(grpcDialOption grpc.DialOption, vl *VolumeLayout, vid needle.VolumeId,
|
2019-12-01 15:29:41 +00:00
|
|
|
locationlist *VolumeLocationList, preallocate int64) bool {
|
2019-07-21 20:49:09 +00:00
|
|
|
vl.accessLock.Lock()
|
2012-11-24 01:03:27 +00:00
|
|
|
vl.removeFromWritable(vid)
|
2019-07-21 20:49:09 +00:00
|
|
|
vl.accessLock.Unlock()
|
|
|
|
|
2012-11-24 01:03:27 +00:00
|
|
|
ch := make(chan bool, locationlist.Length())
|
|
|
|
for index, dn := range locationlist.list {
|
2021-09-13 05:47:52 +00:00
|
|
|
go func(index int, url pb.ServerAddress, vid needle.VolumeId) {
|
2013-08-09 06:57:22 +00:00
|
|
|
glog.V(0).Infoln(index, "Start vacuuming", vid, "on", url)
|
2020-02-26 05:50:12 +00:00
|
|
|
err := operation.WithVolumeServerClient(url, grpcDialOption, func(volumeServerClient volume_server_pb.VolumeServerClient) error {
|
|
|
|
_, err := volumeServerClient.VacuumVolumeCompact(context.Background(), &volume_server_pb.VacuumVolumeCompactRequest{
|
2020-03-13 23:17:44 +00:00
|
|
|
VolumeId: uint32(vid),
|
|
|
|
Preallocate: preallocate,
|
2018-10-15 06:12:43 +00:00
|
|
|
})
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("Error when vacuuming %d on %s: %v", vid, url, err)
|
2012-11-24 01:03:27 +00:00
|
|
|
ch <- false
|
|
|
|
} else {
|
2018-10-15 06:12:43 +00:00
|
|
|
glog.V(0).Infof("Complete vacuuming %d on %s", vid, url)
|
2012-11-24 01:03:27 +00:00
|
|
|
ch <- true
|
|
|
|
}
|
2021-09-13 05:47:52 +00:00
|
|
|
}(index, dn.ServerAddress(), vid)
|
2012-11-24 01:03:27 +00:00
|
|
|
}
|
|
|
|
isVacuumSuccess := true
|
2020-10-19 21:24:57 +00:00
|
|
|
|
2021-02-22 20:52:37 +00:00
|
|
|
waitTimeout := time.NewTimer(3 * time.Minute * time.Duration(t.volumeSizeLimit/1024/1024/1000+1))
|
2020-10-19 21:24:57 +00:00
|
|
|
defer waitTimeout.Stop()
|
|
|
|
|
2019-11-20 00:24:58 +00:00
|
|
|
for range locationlist.list {
|
2012-11-24 01:03:27 +00:00
|
|
|
select {
|
2017-08-30 06:11:08 +00:00
|
|
|
case canCommit := <-ch:
|
|
|
|
isVacuumSuccess = isVacuumSuccess && canCommit
|
2020-10-19 21:24:57 +00:00
|
|
|
case <-waitTimeout.C:
|
2019-11-20 00:24:58 +00:00
|
|
|
return false
|
2012-11-24 01:03:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return isVacuumSuccess
|
|
|
|
}
|
2021-02-22 20:52:37 +00:00
|
|
|
func (t *Topology) batchVacuumVolumeCommit(grpcDialOption grpc.DialOption, vl *VolumeLayout, vid needle.VolumeId, locationlist *VolumeLocationList) bool {
|
2012-11-24 01:03:27 +00:00
|
|
|
isCommitSuccess := true
|
2020-03-17 16:43:57 +00:00
|
|
|
isReadOnly := false
|
2012-11-24 01:03:27 +00:00
|
|
|
for _, dn := range locationlist.list {
|
2019-02-06 13:59:15 +00:00
|
|
|
glog.V(0).Infoln("Start Committing vacuum", vid, "on", dn.Url())
|
2021-09-13 05:47:52 +00:00
|
|
|
err := operation.WithVolumeServerClient(dn.ServerAddress(), grpcDialOption, func(volumeServerClient volume_server_pb.VolumeServerClient) error {
|
2020-03-17 16:43:57 +00:00
|
|
|
resp, err := volumeServerClient.VacuumVolumeCommit(context.Background(), &volume_server_pb.VacuumVolumeCommitRequest{
|
2019-03-23 18:33:34 +00:00
|
|
|
VolumeId: uint32(vid),
|
2018-10-15 06:12:43 +00:00
|
|
|
})
|
2020-12-02 08:09:19 +00:00
|
|
|
if resp != nil && resp.IsReadOnly {
|
2020-03-17 16:43:57 +00:00
|
|
|
isReadOnly = true
|
|
|
|
}
|
2018-10-15 06:12:43 +00:00
|
|
|
return err
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("Error when committing vacuum %d on %s: %v", vid, dn.Url(), err)
|
2012-11-24 01:03:27 +00:00
|
|
|
isCommitSuccess = false
|
|
|
|
} else {
|
2019-02-06 13:59:15 +00:00
|
|
|
glog.V(0).Infof("Complete Committing vacuum %d on %s", vid, dn.Url())
|
2012-11-24 01:03:27 +00:00
|
|
|
}
|
2020-03-13 22:41:24 +00:00
|
|
|
}
|
|
|
|
if isCommitSuccess {
|
|
|
|
for _, dn := range locationlist.list {
|
2020-03-17 16:43:57 +00:00
|
|
|
vl.SetVolumeAvailable(dn, vid, isReadOnly)
|
2013-10-16 15:10:48 +00:00
|
|
|
}
|
2012-11-24 01:03:27 +00:00
|
|
|
}
|
|
|
|
return isCommitSuccess
|
|
|
|
}
|
2021-02-22 20:52:37 +00:00
|
|
|
func (t *Topology) batchVacuumVolumeCleanup(grpcDialOption grpc.DialOption, vl *VolumeLayout, vid needle.VolumeId, locationlist *VolumeLocationList) {
|
2017-08-30 06:59:53 +00:00
|
|
|
for _, dn := range locationlist.list {
|
|
|
|
glog.V(0).Infoln("Start cleaning up", vid, "on", dn.Url())
|
2021-09-13 05:47:52 +00:00
|
|
|
err := operation.WithVolumeServerClient(dn.ServerAddress(), grpcDialOption, func(volumeServerClient volume_server_pb.VolumeServerClient) error {
|
2020-02-26 05:50:12 +00:00
|
|
|
_, err := volumeServerClient.VacuumVolumeCleanup(context.Background(), &volume_server_pb.VacuumVolumeCleanupRequest{
|
2019-03-23 18:33:34 +00:00
|
|
|
VolumeId: uint32(vid),
|
2018-10-15 06:12:43 +00:00
|
|
|
})
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("Error when cleaning up vacuum %d on %s: %v", vid, dn.Url(), err)
|
2017-08-30 06:59:53 +00:00
|
|
|
} else {
|
2018-10-15 06:12:43 +00:00
|
|
|
glog.V(0).Infof("Complete cleaning up vacuum %d on %s", vid, dn.Url())
|
2017-08-30 06:59:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-29 07:18:02 +00:00
|
|
|
func (t *Topology) Vacuum(grpcDialOption grpc.DialOption, garbageThreshold float64, preallocate int64) {
|
2019-07-22 04:49:10 +00:00
|
|
|
|
|
|
|
// if there is vacuum going on, return immediately
|
|
|
|
swapped := atomic.CompareAndSwapInt64(&t.vacuumLockCounter, 0, 1)
|
|
|
|
if !swapped {
|
2020-11-29 07:18:02 +00:00
|
|
|
return
|
2019-07-22 04:49:10 +00:00
|
|
|
}
|
|
|
|
defer atomic.StoreInt64(&t.vacuumLockCounter, 0)
|
|
|
|
|
|
|
|
// now only one vacuum process going on
|
|
|
|
|
2018-12-31 08:06:52 +00:00
|
|
|
glog.V(1).Infof("Start vacuum on demand with threshold: %f", garbageThreshold)
|
2016-05-30 19:30:26 +00:00
|
|
|
for _, col := range t.collectionMap.Items() {
|
2014-12-09 04:29:25 +00:00
|
|
|
c := col.(*Collection)
|
2016-05-30 19:30:26 +00:00
|
|
|
for _, vl := range c.storageType2VolumeLayout.Items() {
|
2013-11-12 10:21:22 +00:00
|
|
|
if vl != nil {
|
2014-12-09 04:29:25 +00:00
|
|
|
volumeLayout := vl.(*VolumeLayout)
|
2021-02-22 20:52:37 +00:00
|
|
|
t.vacuumOneVolumeLayout(grpcDialOption, volumeLayout, c, garbageThreshold, preallocate)
|
2018-10-19 03:34:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-22 20:52:37 +00:00
|
|
|
func (t *Topology) vacuumOneVolumeLayout(grpcDialOption grpc.DialOption, volumeLayout *VolumeLayout, c *Collection, garbageThreshold float64, preallocate int64) {
|
2017-05-23 00:05:27 +00:00
|
|
|
|
2018-10-19 03:34:43 +00:00
|
|
|
volumeLayout.accessLock.RLock()
|
2019-04-19 04:43:36 +00:00
|
|
|
tmpMap := make(map[needle.VolumeId]*VolumeLocationList)
|
2019-01-17 01:17:19 +00:00
|
|
|
for vid, locationList := range volumeLayout.vid2location {
|
2020-09-23 12:56:51 +00:00
|
|
|
tmpMap[vid] = locationList.Copy()
|
2018-10-19 03:34:43 +00:00
|
|
|
}
|
|
|
|
volumeLayout.accessLock.RUnlock()
|
2017-05-23 00:05:27 +00:00
|
|
|
|
2019-01-17 01:17:19 +00:00
|
|
|
for vid, locationList := range tmpMap {
|
2017-05-23 00:05:27 +00:00
|
|
|
|
2018-10-19 03:34:43 +00:00
|
|
|
volumeLayout.accessLock.RLock()
|
2020-09-22 13:31:14 +00:00
|
|
|
isReadOnly := volumeLayout.readonlyVolumes.IsTrue(vid)
|
2018-10-19 03:34:43 +00:00
|
|
|
volumeLayout.accessLock.RUnlock()
|
|
|
|
|
2020-09-22 13:31:14 +00:00
|
|
|
if isReadOnly {
|
2018-10-19 03:34:43 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-12-31 08:06:52 +00:00
|
|
|
glog.V(2).Infof("check vacuum on collection:%s volume:%d", c.Name, vid)
|
2021-02-22 20:52:37 +00:00
|
|
|
if vacuumLocationList, needVacuum := t.batchVacuumVolumeCheck(grpcDialOption, vid, locationList, garbageThreshold); needVacuum {
|
|
|
|
if t.batchVacuumVolumeCompact(grpcDialOption, volumeLayout, vid, vacuumLocationList, preallocate) {
|
|
|
|
t.batchVacuumVolumeCommit(grpcDialOption, volumeLayout, vid, vacuumLocationList)
|
2018-10-24 07:00:01 +00:00
|
|
|
} else {
|
2021-02-22 20:52:37 +00:00
|
|
|
t.batchVacuumVolumeCleanup(grpcDialOption, volumeLayout, vid, vacuumLocationList)
|
2012-11-07 09:51:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|