seaweedfs/weed/filer/filer_deletion.go

184 lines
5.4 KiB
Go
Raw Normal View History

2020-09-01 07:21:19 +00:00
package filer
2018-11-21 04:56:28 +00:00
import (
2022-03-08 08:22:43 +00:00
"math"
2020-08-16 00:06:16 +00:00
"strings"
2018-11-21 04:56:28 +00:00
"time"
2018-11-23 08:26:15 +00:00
"github.com/chrislusf/seaweedfs/weed/glog"
2018-11-21 04:56:28 +00:00
"github.com/chrislusf/seaweedfs/weed/operation"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
2020-03-25 09:20:19 +00:00
"github.com/chrislusf/seaweedfs/weed/wdclient"
2018-11-21 04:56:28 +00:00
)
2021-08-13 04:40:33 +00:00
func LookupByMasterClientFn(masterClient *wdclient.MasterClient) func(vids []string) (map[string]*operation.LookupResult, error) {
return func(vids []string) (map[string]*operation.LookupResult, error) {
m := make(map[string]*operation.LookupResult)
2018-11-21 04:56:28 +00:00
for _, vid := range vids {
2020-03-25 09:20:19 +00:00
locs, _ := masterClient.GetVidLocations(vid)
2018-11-21 04:56:28 +00:00
var locations []operation.Location
for _, loc := range locs {
locations = append(locations, operation.Location{
Url: loc.Url,
PublicUrl: loc.PublicUrl,
})
}
2021-08-13 04:40:33 +00:00
m[vid] = &operation.LookupResult{
VolumeOrFileId: vid,
Locations: locations,
2018-11-21 04:56:28 +00:00
}
}
return m, nil
}
2020-03-25 09:20:19 +00:00
}
func (f *Filer) loopProcessingDeletion() {
lookupFunc := LookupByMasterClientFn(f.MasterClient)
2018-11-21 04:56:28 +00:00
2020-05-11 06:25:39 +00:00
DeletionBatchSize := 100000 // roughly 20 bytes cost per file id.
var deletionCount int
2018-11-21 04:56:28 +00:00
for {
deletionCount = 0
f.fileIdDeletionQueue.Consume(func(fileIds []string) {
2020-05-11 06:25:39 +00:00
for len(fileIds) > 0 {
var toDeleteFileIds []string
if len(fileIds) > DeletionBatchSize {
toDeleteFileIds = fileIds[:DeletionBatchSize]
fileIds = fileIds[DeletionBatchSize:]
} else {
toDeleteFileIds = fileIds
fileIds = fileIds[:0]
}
deletionCount = len(toDeleteFileIds)
2020-08-16 00:06:16 +00:00
_, err := operation.DeleteFilesWithLookupVolumeId(f.GrpcDialOption, toDeleteFileIds, lookupFunc)
2020-05-11 06:25:39 +00:00
if err != nil {
2020-08-16 00:06:16 +00:00
if !strings.Contains(err.Error(), "already deleted") {
glog.V(0).Infof("deleting fileIds len=%d error: %v", deletionCount, err)
}
2020-05-11 06:25:39 +00:00
} else {
glog.V(1).Infof("deleting fileIds len=%d", deletionCount)
}
2020-03-21 06:38:24 +00:00
}
})
if deletionCount == 0 {
time.Sleep(1123 * time.Millisecond)
2018-11-21 04:56:28 +00:00
}
}
}
func (f *Filer) doDeleteFileIds(fileIds []string) {
lookupFunc := LookupByMasterClientFn(f.MasterClient)
DeletionBatchSize := 100000 // roughly 20 bytes cost per file id.
for len(fileIds) > 0 {
var toDeleteFileIds []string
if len(fileIds) > DeletionBatchSize {
toDeleteFileIds = fileIds[:DeletionBatchSize]
fileIds = fileIds[DeletionBatchSize:]
} else {
toDeleteFileIds = fileIds
fileIds = fileIds[:0]
}
deletionCount := len(toDeleteFileIds)
_, err := operation.DeleteFilesWithLookupVolumeId(f.GrpcDialOption, toDeleteFileIds, lookupFunc)
if err != nil {
if !strings.Contains(err.Error(), "already deleted") {
glog.V(0).Infof("deleting fileIds len=%d error: %v", deletionCount, err)
}
}
}
}
func (f *Filer) DirectDeleteChunks(chunks []*filer_pb.FileChunk) {
var fildIdsToDelete []string
for _, chunk := range chunks {
if !chunk.IsChunkManifest {
fildIdsToDelete = append(fildIdsToDelete, chunk.GetFileIdString())
continue
}
dataChunks, manifestResolveErr := ResolveOneChunkManifest(f.MasterClient.LookupFileId, chunk)
if manifestResolveErr != nil {
glog.V(0).Infof("failed to resolve manifest %s: %v", chunk.FileId, manifestResolveErr)
}
for _, dChunk := range dataChunks {
fildIdsToDelete = append(fildIdsToDelete, dChunk.GetFileIdString())
}
fildIdsToDelete = append(fildIdsToDelete, chunk.GetFileIdString())
}
f.doDeleteFileIds(fildIdsToDelete)
}
func (f *Filer) DeleteChunks(chunks []*filer_pb.FileChunk) {
2018-11-21 04:56:28 +00:00
for _, chunk := range chunks {
if !chunk.IsChunkManifest {
f.fileIdDeletionQueue.EnQueue(chunk.GetFileIdString())
continue
}
dataChunks, manifestResolveErr := ResolveOneChunkManifest(f.MasterClient.LookupFileId, chunk)
if manifestResolveErr != nil {
glog.V(0).Infof("failed to resolve manifest %s: %v", chunk.FileId, manifestResolveErr)
}
for _, dChunk := range dataChunks {
f.fileIdDeletionQueue.EnQueue(dChunk.GetFileIdString())
}
2020-08-31 07:16:03 +00:00
f.fileIdDeletionQueue.EnQueue(chunk.GetFileIdString())
2018-11-21 04:56:28 +00:00
}
}
func (f *Filer) DeleteChunksNotRecursive(chunks []*filer_pb.FileChunk) {
for _, chunk := range chunks {
f.fileIdDeletionQueue.EnQueue(chunk.GetFileIdString())
}
}
2018-11-21 04:56:28 +00:00
func (f *Filer) deleteChunksIfNotNew(oldEntry, newEntry *Entry) {
if oldEntry == nil {
return
}
if newEntry == nil {
f.DeleteChunks(oldEntry.Chunks)
2021-11-29 08:32:21 +00:00
return
2018-11-21 04:56:28 +00:00
}
var toDelete []*filer_pb.FileChunk
2019-06-22 20:22:22 +00:00
newChunkIds := make(map[string]bool)
2022-03-08 08:22:43 +00:00
newDataChunks, newManifestChunks, err := ResolveChunkManifest(f.MasterClient.GetLookupFileIdFunction(),
newEntry.Chunks, 0, math.MaxInt64)
if err != nil {
glog.Errorf("Failed to resolve new entry chunks when delete old entry chunks. new: %s, old: %s",
newEntry.Chunks, oldEntry.Chunks)
return
}
2022-03-08 08:22:43 +00:00
for _, newChunk := range newDataChunks {
newChunkIds[newChunk.GetFileIdString()] = true
}
2022-03-08 08:22:43 +00:00
for _, newChunk := range newManifestChunks {
2019-06-22 20:22:22 +00:00
newChunkIds[newChunk.GetFileIdString()] = true
}
2018-11-21 04:56:28 +00:00
2022-03-08 08:22:43 +00:00
oldDataChunks, oldManifestChunks, err := ResolveChunkManifest(f.MasterClient.GetLookupFileIdFunction(),
oldEntry.Chunks, 0, math.MaxInt64)
if err != nil {
glog.Errorf("Failed to resolve old entry chunks when delete old entry chunks. new: %s, old: %s",
newEntry.Chunks, oldEntry.Chunks)
return
}
2022-03-08 08:22:43 +00:00
for _, oldChunk := range oldDataChunks {
if _, found := newChunkIds[oldChunk.GetFileIdString()]; !found {
toDelete = append(toDelete, oldChunk)
}
}
2022-03-08 08:22:43 +00:00
for _, oldChunk := range oldManifestChunks {
2019-06-22 20:22:22 +00:00
if _, found := newChunkIds[oldChunk.GetFileIdString()]; !found {
2018-11-21 04:56:28 +00:00
toDelete = append(toDelete, oldChunk)
}
}
f.DeleteChunksNotRecursive(toDelete)
2018-11-21 04:56:28 +00:00
}