seaweedfs/weed/topology/allocate_volume.go

34 lines
937 B
Go
Raw Normal View History

package topology
2012-09-21 01:02:56 +00:00
import (
"context"
2019-02-18 20:11:52 +00:00
"google.golang.org/grpc"
"time"
"github.com/chrislusf/seaweedfs/weed/operation"
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
"github.com/chrislusf/seaweedfs/weed/storage"
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-02-18 20:11:52 +00:00
func AllocateVolume(dn *DataNode, grpcDialOption grpc.DialOption, vid storage.VolumeId, option *VolumeGrowOption) error {
2019-02-18 20:11:52 +00:00
return operation.WithVolumeServerClient(dn.Url(), grpcDialOption, func(client volume_server_pb.VolumeServerClient) error {
ctx, cancel := context.WithTimeout(context.Background(), time.Duration(5*time.Second))
defer cancel()
_, deleteErr := client.AssignVolume(ctx, &volume_server_pb.AssignVolumeRequest{
VolumdId: uint32(vid),
Collection: option.Collection,
Replication: option.ReplicaPlacement.String(),
Ttl: option.Ttl.String(),
Preallocate: option.Prealloacte,
})
return deleteErr
})
2012-09-21 01:02:56 +00:00
}