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"
|
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
|
|
|
}
|
|
|
|
|
2014-09-21 03:38:59 +08:00
|
|
|
func AllocateVolume(dn *DataNode, vid storage.VolumeId, option *VolumeGrowOption) error {
|
2018-10-15 15:40:46 +08:00
|
|
|
|
|
|
|
return operation.WithVolumeServerClient(dn.Url(), func(client volume_server_pb.VolumeServerClient) error {
|
|
|
|
_, deleteErr := client.AssignVolume(context.Background(), &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 09:02:56 +08:00
|
|
|
}
|