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-01-10 08:43:44 +00:00
|
|
|
"time"
|
2014-10-26 18:34:55 +00:00
|
|
|
|
2018-10-15 07:40:46 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
|
2018-10-15 08:19:15 +00:00
|
|
|
"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
|
|
|
}
|
|
|
|
|
2014-09-20 19:38:59 +00:00
|
|
|
func AllocateVolume(dn *DataNode, vid storage.VolumeId, option *VolumeGrowOption) error {
|
2018-10-15 07:40:46 +00:00
|
|
|
|
|
|
|
return operation.WithVolumeServerClient(dn.Url(), func(client volume_server_pb.VolumeServerClient) error {
|
2019-01-10 08:43:44 +00: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 07:40:46 +00:00
|
|
|
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
|
|
|
}
|