2014-04-13 01:29:52 -07:00
|
|
|
package topology
|
2012-09-20 18:02:56 -07:00
|
|
|
|
|
|
|
import (
|
2018-10-15 00:40:46 -07:00
|
|
|
"context"
|
2019-04-18 21:43:36 -07:00
|
|
|
|
2019-09-12 14:18:21 +01: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 01:01:01 -08:00
|
|
|
"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 {
|
2018-10-15 00:40:46 -07:00
|
|
|
|
2019-02-18 12:11:52 -08:00
|
|
|
return operation.WithVolumeServerClient(dn.Url(), grpcDialOption, func(client volume_server_pb.VolumeServerClient) error {
|
2019-01-10 16:43:44 +08:00
|
|
|
|
2019-04-10 21:41:17 -07:00
|
|
|
_, deleteErr := client.AllocateVolume(context.Background(), &volume_server_pb.AllocateVolumeRequest{
|
2019-09-04 15:27:14 +01:00
|
|
|
VolumeId: uint32(vid),
|
|
|
|
Collection: option.Collection,
|
|
|
|
Replication: option.ReplicaPlacement.String(),
|
|
|
|
Ttl: option.Ttl.String(),
|
|
|
|
Preallocate: option.Prealloacte,
|
|
|
|
MemoryMapMaxSizeMB: option.MemoryMapMaxSizeMB,
|
2018-10-15 00:40:46 -07:00
|
|
|
})
|
|
|
|
return deleteErr
|
|
|
|
})
|
|
|
|
|
2012-09-20 18:02:56 -07:00
|
|
|
}
|