Files
seaweedfs/weed/topology/allocate_volume.go

33 lines
983 B
Go
Raw Normal View History

package topology
2012-09-20 18:02:56 -07:00
import (
"context"
2019-04-18 21:43:36 -07:00
"github.com/chrislusf/seaweedfs/weed/operation"
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
"github.com/chrislusf/seaweedfs/weed/storage/needle"
"google.golang.org/grpc"
2012-09-20 18:02:56 -07:00
)
type AllocateVolumeResult struct {
2013-01-17 00:56:56 -08:00
Error string
2012-09-20 18:02:56 -07:00
}
2019-04-18 21:43:36 -07:00
func AllocateVolume(dn *DataNode, grpcDialOption grpc.DialOption, vid needle.VolumeId, option *VolumeGrowOption) error {
return operation.WithVolumeServerClient(dn.Url(), grpcDialOption, func(client volume_server_pb.VolumeServerClient) error {
2019-04-10 21:41:17 -07:00
_, deleteErr := client.AllocateVolume(context.Background(), &volume_server_pb.AllocateVolumeRequest{
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-21 22:57:01 -07:00
MemoryMapMaxSizeMb: option.MemoryMapMaxSizeMb,
2020-12-13 23:08:21 -08:00
DiskType: string(option.DiskType),
})
return deleteErr
})
2012-09-20 18:02:56 -07:00
}