2014-04-13 16:29:52 +08:00
|
|
|
package topology
|
2012-09-21 09:02:56 +08:00
|
|
|
|
|
|
|
import (
|
2018-10-15 15:40:46 +08:00
|
|
|
"context"
|
2019-04-19 12:43:36 +08:00
|
|
|
|
2022-07-29 15:17:28 +08:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/operation"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/volume_server_pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/storage/needle"
|
2019-02-20 17:01:01 +08:00
|
|
|
"google.golang.org/grpc"
|
2012-09-21 09:02:56 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type AllocateVolumeResult struct {
|
2013-01-17 16:56:56 +08:00
|
|
|
Error string
|
2012-09-21 09:02:56 +08:00
|
|
|
}
|
|
|
|
|
2019-04-19 12:43:36 +08:00
|
|
|
func AllocateVolume(dn *DataNode, grpcDialOption grpc.DialOption, vid needle.VolumeId, option *VolumeGrowOption) error {
|
2018-10-15 15:40:46 +08:00
|
|
|
|
2021-12-26 16:15:03 +08:00
|
|
|
return operation.WithVolumeServerClient(false, dn.ServerAddress(), grpcDialOption, func(client volume_server_pb.VolumeServerClient) error {
|
2019-01-10 16:43:44 +08:00
|
|
|
|
2022-05-09 14:21:16 +08:00
|
|
|
_, allocateErr := client.AllocateVolume(context.Background(), &volume_server_pb.AllocateVolumeRequest{
|
2019-09-04 22:27:14 +08:00
|
|
|
VolumeId: uint32(vid),
|
|
|
|
Collection: option.Collection,
|
|
|
|
Replication: option.ReplicaPlacement.String(),
|
|
|
|
Ttl: option.Ttl.String(),
|
2021-05-06 18:46:14 +08:00
|
|
|
Preallocate: option.Preallocate,
|
2019-10-22 13:57:01 +08:00
|
|
|
MemoryMapMaxSizeMb: option.MemoryMapMaxSizeMb,
|
2020-12-14 15:08:21 +08:00
|
|
|
DiskType: string(option.DiskType),
|
2018-10-15 15:40:46 +08:00
|
|
|
})
|
2022-05-09 14:21:16 +08:00
|
|
|
return allocateErr
|
2018-10-15 15:40:46 +08:00
|
|
|
})
|
|
|
|
|
2012-09-21 09:02:56 +08:00
|
|
|
}
|
2022-10-27 03:32:24 +08:00
|
|
|
|
|
|
|
func DeleteVolume(dn *DataNode, grpcDialOption grpc.DialOption, vid needle.VolumeId) error {
|
|
|
|
|
|
|
|
return operation.WithVolumeServerClient(false, dn.ServerAddress(), grpcDialOption, func(client volume_server_pb.VolumeServerClient) error {
|
|
|
|
|
|
|
|
_, allocateErr := client.VolumeDelete(context.Background(), &volume_server_pb.VolumeDeleteRequest{
|
|
|
|
VolumeId: uint32(vid),
|
|
|
|
})
|
|
|
|
return allocateErr
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|