seaweedfs/go/replication/allocate_volume.go

34 lines
801 B
Go
Raw Normal View History

package replication
2012-09-21 01:02:56 +00:00
import (
"code.google.com/p/weed-fs/go/storage"
"code.google.com/p/weed-fs/go/topology"
"code.google.com/p/weed-fs/go/util"
2013-02-27 06:54:22 +00:00
"encoding/json"
"errors"
"net/url"
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
}
2013-11-12 10:21:22 +00:00
func AllocateVolume(dn *topology.DataNode, vid storage.VolumeId, collection string, repType storage.ReplicationType) error {
2013-01-17 08:56:56 +00:00
values := make(url.Values)
values.Add("volume", vid.String())
2013-11-12 10:21:22 +00:00
values.Add("collection", collection)
2014-02-06 19:44:18 +00:00
values.Add("replication", repType.String())
jsonBlob, err := util.Post("http://"+dn.PublicUrl+"/admin/assign_volume", values)
2013-01-17 08:56:56 +00:00
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
2012-09-21 01:02:56 +00:00
}