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-02-19 04:11:52 +08:00
|
|
|
"google.golang.org/grpc"
|
2019-01-10 16:43:44 +08:00
|
|
|
"time"
|
2014-10-27 02:34:55 +08:00
|
|
|
|
2018-10-15 15:40:46 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
|
2018-10-15 16:19:15 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage"
|
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-02-19 04:11:52 +08:00
|
|
|
func AllocateVolume(dn *DataNode, grpcDialOption grpc.DialOption, vid storage.VolumeId, option *VolumeGrowOption) error {
|
2018-10-15 15:40:46 +08:00
|
|
|
|
2019-02-19 04: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
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), time.Duration(5*time.Second))
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
_, deleteErr := client.AssignVolume(ctx, &volume_server_pb.AssignVolumeRequest{
|
2018-10-15 15:40:46 +08:00
|
|
|
VolumdId: uint32(vid),
|
|
|
|
Collection: option.Collection,
|
|
|
|
Replication: option.ReplicaPlacement.String(),
|
|
|
|
Ttl: option.Ttl.String(),
|
|
|
|
Preallocate: option.Prealloacte,
|
|
|
|
})
|
|
|
|
return deleteErr
|
|
|
|
})
|
|
|
|
|
2012-09-21 09:02:56 +08:00
|
|
|
}
|