2014-04-13 08:29:52 +00:00
|
|
|
package topology
|
2013-04-16 07:10:21 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2017-01-08 14:34:26 +00:00
|
|
|
"encoding/json"
|
2016-04-28 16:11:01 +00:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2014-10-26 18:34:55 +00:00
|
|
|
"net/http"
|
2017-01-08 14:34:26 +00:00
|
|
|
"net/url"
|
2014-10-26 18:34:55 +00:00
|
|
|
"strconv"
|
2016-04-28 16:11:01 +00:00
|
|
|
"strings"
|
2014-10-26 18:34:55 +00:00
|
|
|
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/security"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage"
|
2019-04-19 04:43:36 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/needle"
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2013-04-16 07:10:21 +00:00
|
|
|
)
|
|
|
|
|
2015-02-07 23:35:28 +00:00
|
|
|
func ReplicatedWrite(masterNode string, s *storage.Store,
|
2019-04-19 04:43:36 +00:00
|
|
|
volumeId needle.VolumeId, n *needle.Needle,
|
2019-04-21 20:33:23 +00:00
|
|
|
r *http.Request) (size uint32, isUnchanged bool, err error) {
|
2015-02-07 23:35:28 +00:00
|
|
|
|
|
|
|
//check JWT
|
|
|
|
jwt := security.GetJwt(r)
|
|
|
|
|
2019-12-07 15:54:46 +00:00
|
|
|
var remoteLocations []operation.Location
|
|
|
|
if r.FormValue("type") != "replicate" {
|
|
|
|
remoteLocations, err = getWritableRemoteReplications(s, volumeId, masterNode)
|
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infoln(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-18 06:43:48 +00:00
|
|
|
size, isUnchanged, err = s.WriteVolumeNeedle(volumeId, n)
|
2013-04-16 07:10:21 +00:00
|
|
|
if err != nil {
|
2019-04-21 20:33:23 +00:00
|
|
|
err = fmt.Errorf("failed to write to local disk: %v", err)
|
2019-12-07 15:54:46 +00:00
|
|
|
glog.V(0).Infoln(err)
|
2019-01-15 07:47:43 +00:00
|
|
|
return
|
2013-04-16 07:10:21 +00:00
|
|
|
}
|
2019-01-17 01:17:19 +00:00
|
|
|
|
2019-12-07 15:54:46 +00:00
|
|
|
if len(remoteLocations) > 0 { //send to other replica locations
|
|
|
|
if err = distributedOperation(remoteLocations, s, func(location operation.Location) error {
|
|
|
|
u := url.URL{
|
|
|
|
Scheme: "http",
|
|
|
|
Host: location.Url,
|
|
|
|
Path: r.URL.Path,
|
|
|
|
}
|
|
|
|
q := url.Values{
|
|
|
|
"type": {"replicate"},
|
|
|
|
"ttl": {n.Ttl.String()},
|
|
|
|
}
|
|
|
|
if n.LastModified > 0 {
|
|
|
|
q.Set("ts", strconv.FormatUint(n.LastModified, 10))
|
|
|
|
}
|
|
|
|
if n.IsChunkedManifest() {
|
|
|
|
q.Set("cm", "true")
|
|
|
|
}
|
|
|
|
u.RawQuery = q.Encode()
|
|
|
|
|
|
|
|
pairMap := make(map[string]string)
|
|
|
|
if n.HasPairs() {
|
|
|
|
tmpMap := make(map[string]string)
|
|
|
|
err := json.Unmarshal(n.Pairs, &tmpMap)
|
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infoln("Unmarshal pairs error:", err)
|
2016-02-27 09:42:41 +00:00
|
|
|
}
|
2019-12-07 15:54:46 +00:00
|
|
|
for k, v := range tmpMap {
|
|
|
|
pairMap[needle.PairNamePrefix+k] = v
|
2017-01-08 14:34:26 +00:00
|
|
|
}
|
2013-04-16 07:10:21 +00:00
|
|
|
}
|
2019-12-07 15:54:46 +00:00
|
|
|
|
|
|
|
_, err := operation.Upload(u.String(),
|
|
|
|
string(n.Name), bytes.NewReader(n.Data), n.IsGzipped(), string(n.Mime),
|
|
|
|
pairMap, jwt)
|
|
|
|
return err
|
|
|
|
}); err != nil {
|
|
|
|
size = 0
|
|
|
|
err = fmt.Errorf("failed to write to replicas for volume %d: %v", volumeId, err)
|
|
|
|
glog.V(0).Infoln(err)
|
2013-04-16 07:10:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-02-07 23:35:28 +00:00
|
|
|
func ReplicatedDelete(masterNode string, store *storage.Store,
|
2019-04-19 04:43:36 +00:00
|
|
|
volumeId needle.VolumeId, n *needle.Needle,
|
2019-12-07 15:54:46 +00:00
|
|
|
r *http.Request) (size uint32, err error) {
|
2015-02-07 23:35:28 +00:00
|
|
|
|
|
|
|
//check JWT
|
|
|
|
jwt := security.GetJwt(r)
|
|
|
|
|
2019-12-07 15:54:46 +00:00
|
|
|
var remoteLocations []operation.Location
|
|
|
|
if r.FormValue("type") != "replicate" {
|
|
|
|
remoteLocations, err = getWritableRemoteReplications(store, volumeId, masterNode)
|
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infoln(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
size, err = store.DeleteVolumeNeedle(volumeId, n)
|
2013-04-16 07:10:21 +00:00
|
|
|
if err != nil {
|
2013-08-09 06:57:22 +00:00
|
|
|
glog.V(0).Infoln("delete error:", err)
|
2019-12-07 15:54:46 +00:00
|
|
|
return
|
2013-04-16 07:10:21 +00:00
|
|
|
}
|
|
|
|
|
2019-12-07 15:54:46 +00:00
|
|
|
if len(remoteLocations) > 0 { //send to other replica locations
|
|
|
|
if err = distributedOperation(remoteLocations, store, func(location operation.Location) error {
|
|
|
|
return util.Delete("http://"+location.Url+r.URL.Path+"?type=replicate", string(jwt))
|
|
|
|
}); err != nil {
|
|
|
|
size = 0
|
2013-04-16 07:10:21 +00:00
|
|
|
}
|
|
|
|
}
|
2019-12-07 15:54:46 +00:00
|
|
|
return
|
2016-04-28 16:11:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type DistributedOperationResult map[string]error
|
|
|
|
|
|
|
|
func (dr DistributedOperationResult) Error() error {
|
|
|
|
var errs []string
|
|
|
|
for k, v := range dr {
|
|
|
|
if v != nil {
|
|
|
|
errs = append(errs, fmt.Sprintf("[%s]: %v", k, v))
|
|
|
|
}
|
|
|
|
}
|
2016-05-05 17:37:33 +00:00
|
|
|
if len(errs) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2016-04-28 16:11:01 +00:00
|
|
|
return errors.New(strings.Join(errs, "\n"))
|
|
|
|
}
|
|
|
|
|
|
|
|
type RemoteResult struct {
|
|
|
|
Host string
|
|
|
|
Error error
|
2013-04-16 07:10:21 +00:00
|
|
|
}
|
|
|
|
|
2019-12-07 15:54:46 +00:00
|
|
|
func distributedOperation(locations []operation.Location, store *storage.Store, op func(location operation.Location) error) error {
|
|
|
|
length := len(locations)
|
|
|
|
results := make(chan RemoteResult)
|
|
|
|
for _, location := range locations {
|
|
|
|
go func(location operation.Location, results chan RemoteResult) {
|
|
|
|
results <- RemoteResult{location.Url, op(location)}
|
|
|
|
}(location, results)
|
|
|
|
}
|
|
|
|
ret := DistributedOperationResult(make(map[string]error))
|
|
|
|
for i := 0; i < length; i++ {
|
|
|
|
result := <-results
|
|
|
|
ret[result.Host] = result.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret.Error()
|
|
|
|
}
|
|
|
|
|
|
|
|
func getWritableRemoteReplications(s *storage.Store, volumeId needle.VolumeId, masterNode string) (
|
|
|
|
remoteLocations []operation.Location, err error) {
|
|
|
|
copyCount := s.GetVolume(volumeId).ReplicaPlacement.GetCopyCount()
|
|
|
|
if copyCount > 1 {
|
|
|
|
if lookupResult, lookupErr := operation.Lookup(masterNode, volumeId.String()); lookupErr == nil {
|
|
|
|
if len(lookupResult.Locations) < copyCount {
|
|
|
|
err = fmt.Errorf("replicating opetations [%d] is less than volume's replication copy count [%d]",
|
|
|
|
len(lookupResult.Locations), copyCount)
|
|
|
|
return
|
2013-04-16 07:10:21 +00:00
|
|
|
}
|
2019-12-07 15:54:46 +00:00
|
|
|
selfUrl := s.Ip + ":" + strconv.Itoa(s.Port)
|
|
|
|
for _, location := range lookupResult.Locations {
|
|
|
|
if location.Url != selfUrl {
|
|
|
|
remoteLocations = append(remoteLocations, location)
|
|
|
|
}
|
2015-12-28 06:23:26 +00:00
|
|
|
}
|
2019-12-07 15:54:46 +00:00
|
|
|
} else {
|
|
|
|
err = fmt.Errorf("failed to lookup for %d: %v", volumeId, lookupErr)
|
|
|
|
return
|
2015-12-31 06:48:19 +00:00
|
|
|
}
|
2013-04-16 07:10:21 +00:00
|
|
|
}
|
2019-12-12 06:22:09 +00:00
|
|
|
|
2019-12-07 15:54:46 +00:00
|
|
|
return
|
2013-04-16 07:10:21 +00:00
|
|
|
}
|