mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-04-05 20:52:50 +08:00
Update volume_grpc_erasure_coding.go , fix no space left bug (#6077)
Some checks failed
go: build dev binaries / cleanup (push) Has been cancelled
docker: build dev containers / build-dev-containers (push) Has been cancelled
End to End / FUSE Mount (push) Has been cancelled
go: build binary / Build (push) Has been cancelled
Ceph S3 tests / Ceph S3 tests (push) Has been cancelled
go: build dev binaries / build_dev_linux_windows (amd64, linux) (push) Has been cancelled
go: build dev binaries / build_dev_linux_windows (amd64, windows) (push) Has been cancelled
go: build dev binaries / build_dev_darwin (amd64, darwin) (push) Has been cancelled
go: build dev binaries / build_dev_darwin (arm64, darwin) (push) Has been cancelled
Some checks failed
go: build dev binaries / cleanup (push) Has been cancelled
docker: build dev containers / build-dev-containers (push) Has been cancelled
End to End / FUSE Mount (push) Has been cancelled
go: build binary / Build (push) Has been cancelled
Ceph S3 tests / Ceph S3 tests (push) Has been cancelled
go: build dev binaries / build_dev_linux_windows (amd64, linux) (push) Has been cancelled
go: build dev binaries / build_dev_linux_windows (amd64, windows) (push) Has been cancelled
go: build dev binaries / build_dev_darwin (amd64, darwin) (push) Has been cancelled
go: build dev binaries / build_dev_darwin (arm64, darwin) (push) Has been cancelled
This commit is contained in:
parent
bae93e611d
commit
dad3a26fb6
@ -150,8 +150,10 @@ func (vs *VolumeServer) VolumeEcShardsCopy(ctx context.Context, req *volume_serv
|
|||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
location = vs.store.FindFreeLocation(func(location *storage.DiskLocation) bool {
|
location = vs.store.FindFreeLocation(func(location *storage.DiskLocation) bool {
|
||||||
_, found := location.FindEcVolume(needle.VolumeId(req.VolumeId))
|
//(location.FindEcVolume) This method is error, will cause location is nil, redundant judgment
|
||||||
return found
|
// _, found := location.FindEcVolume(needle.VolumeId(req.VolumeId))
|
||||||
|
// return found
|
||||||
|
return true
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
if location == nil {
|
if location == nil {
|
||||||
@ -191,12 +193,6 @@ func (vs *VolumeServer) VolumeEcShardsCopy(ctx context.Context, req *volume_serv
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if req.CopyEcxFile { //when location no volume before copy
|
|
||||||
glog.V(0).Infof("Re LoadNewVolumes: %v", req)
|
|
||||||
vs.store.LoadNewVolumes()
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user