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