You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
793 B
34 lines
793 B
package topology
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"net/url"
|
|
|
|
"github.com/chrislusf/weed-fs/go/storage"
|
|
"github.com/chrislusf/weed-fs/go/util"
|
|
)
|
|
|
|
type AllocateVolumeResult struct {
|
|
Error string
|
|
}
|
|
|
|
func AllocateVolume(dn *DataNode, vid storage.VolumeId, option *VolumeGrowOption) error {
|
|
values := make(url.Values)
|
|
values.Add("volume", vid.String())
|
|
values.Add("collection", option.Collection)
|
|
values.Add("replication", option.ReplicaPlacement.String())
|
|
values.Add("ttl", option.Ttl.String())
|
|
jsonBlob, err := util.Post("http://"+dn.AdminUrl()+"/admin/assign_volume", values)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
var ret AllocateVolumeResult
|
|
if err := json.Unmarshal(jsonBlob, &ret); err != nil {
|
|
return err
|
|
}
|
|
if ret.Error != "" {
|
|
return errors.New(ret.Error)
|
|
}
|
|
return nil
|
|
}
|