mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
delete replications, untested yet
This commit is contained in:
parent
b5c29e25aa
commit
4b3676a54b
|
@ -135,27 +135,11 @@ func PostHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
ret := store.Write(volumeId, needle)
|
ret := store.Write(volumeId, needle)
|
||||||
if ret > 0 || !store.HasVolume(volumeId) { //send to other replica locations
|
if ret > 0 || !store.HasVolume(volumeId) { //send to other replica locations
|
||||||
if r.FormValue("type") != "standard" {
|
if r.FormValue("type") != "standard" {
|
||||||
if lookupResult, lookupErr := operation.Lookup(*masterNode, volumeId); lookupErr == nil {
|
waitTime, err := strconv.Atoi(r.FormValue("wait"))
|
||||||
sendFunc := func(background bool) {
|
distributedOperation(volumeId, func(location operation.Location) bool {
|
||||||
postContentFunc := func(location operation.Location) bool {
|
|
||||||
operation.Upload("http://"+location.Url+r.URL.Path+"?type=standard", filename, bytes.NewReader(needle.Data))
|
operation.Upload("http://"+location.Url+r.URL.Path+"?type=standard", filename, bytes.NewReader(needle.Data))
|
||||||
return true
|
return true
|
||||||
}
|
}, err == nil && waitTime > 0)
|
||||||
for _, location := range lookupResult.Locations {
|
|
||||||
if location.Url != (*ip+":"+strconv.Itoa(*vport)) {
|
|
||||||
if background {
|
|
||||||
go postContentFunc(location)
|
|
||||||
} else {
|
|
||||||
postContentFunc(location)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
waitTime, err := strconv.Atoi(r.FormValue("wait"))
|
|
||||||
sendFunc(err == nil && waitTime > 0)
|
|
||||||
} else {
|
|
||||||
log.Println("Failed to lookup for", volumeId, lookupErr.Error())
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
w.WriteHeader(http.StatusCreated)
|
w.WriteHeader(http.StatusCreated)
|
||||||
}
|
}
|
||||||
|
@ -191,7 +175,19 @@ func DeleteHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
n.Size = 0
|
n.Size = 0
|
||||||
store.Delete(volumeId, n)
|
ret := store.Delete(volumeId, n)
|
||||||
|
|
||||||
|
if ret > 0 || !store.HasVolume(volumeId) { //send to other replica locations
|
||||||
|
if r.FormValue("type") != "standard" {
|
||||||
|
waitTime, err := strconv.Atoi(r.FormValue("wait"))
|
||||||
|
distributedOperation(volumeId, func(location operation.Location) bool {
|
||||||
|
operation.Delete("http://"+location.Url+r.URL.Path+"?type=standard")
|
||||||
|
return true
|
||||||
|
}, err == nil && waitTime > 0)
|
||||||
|
}
|
||||||
|
w.WriteHeader(http.StatusCreated)
|
||||||
|
}
|
||||||
|
|
||||||
m := make(map[string]uint32)
|
m := make(map[string]uint32)
|
||||||
m["size"] = uint32(count)
|
m["size"] = uint32(count)
|
||||||
writeJson(w, r, m)
|
writeJson(w, r, m)
|
||||||
|
@ -217,6 +213,27 @@ func parseURLPath(path string) (vid, fid, ext string) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type distributedFunction func(location operation.Location) bool
|
||||||
|
|
||||||
|
func distributedOperation(volumeId storage.VolumeId, op distributedFunction, wait bool) {
|
||||||
|
if lookupResult, lookupErr := operation.Lookup(*masterNode, volumeId); lookupErr == nil {
|
||||||
|
sendFunc := func(background bool) {
|
||||||
|
for _, location := range lookupResult.Locations {
|
||||||
|
if location.Url != (*ip + ":" + strconv.Itoa(*vport)) {
|
||||||
|
if background {
|
||||||
|
go op(location)
|
||||||
|
} else {
|
||||||
|
op(location)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sendFunc(wait)
|
||||||
|
} else {
|
||||||
|
log.Println("Failed to lookup for", volumeId, lookupErr.Error())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func runVolume(cmd *Command, args []string) bool {
|
func runVolume(cmd *Command, args []string) bool {
|
||||||
fileInfo, err := os.Stat(*volumeFolder)
|
fileInfo, err := os.Stat(*volumeFolder)
|
||||||
//TODO: now default to 1G, this value should come from server?
|
//TODO: now default to 1G, this value should come from server?
|
||||||
|
|
14
weed-fs/src/pkg/operation/delete_content.go
Normal file
14
weed-fs/src/pkg/operation/delete_content.go
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
package operation
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
)
|
||||||
|
|
||||||
|
func Delete(url string) error {
|
||||||
|
req, err := http.NewRequest("DELETE", url, nil)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
_, err = http.DefaultClient.Do(req)
|
||||||
|
return err
|
||||||
|
}
|
|
@ -3,11 +3,11 @@ package operation
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"mime/multipart"
|
|
||||||
"net/http"
|
|
||||||
_ "fmt"
|
_ "fmt"
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
"mime/multipart"
|
||||||
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
type UploadResult struct {
|
type UploadResult struct {
|
||||||
|
@ -15,7 +15,6 @@ type UploadResult struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func Upload(uploadUrl string, filename string, reader io.Reader) (*UploadResult, error) {
|
func Upload(uploadUrl string, filename string, reader io.Reader) (*UploadResult, error) {
|
||||||
println("uploading to", uploadUrl)
|
|
||||||
body_buf := bytes.NewBufferString("")
|
body_buf := bytes.NewBufferString("")
|
||||||
body_writer := multipart.NewWriter(body_buf)
|
body_writer := multipart.NewWriter(body_buf)
|
||||||
file_writer, err := body_writer.CreateFormFile("file", filename)
|
file_writer, err := body_writer.CreateFormFile("file", filename)
|
||||||
|
@ -24,6 +23,7 @@ func Upload(uploadUrl string, filename string, reader io.Reader) (*UploadResult,
|
||||||
body_writer.Close()
|
body_writer.Close()
|
||||||
resp, err := http.Post(uploadUrl, content_type, body_buf)
|
resp, err := http.Post(uploadUrl, content_type, body_buf)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
println("uploading to", uploadUrl)
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
|
@ -32,9 +32,9 @@ func Upload(uploadUrl string, filename string, reader io.Reader) (*UploadResult,
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
var ret UploadResult
|
var ret UploadResult
|
||||||
println("upload response to", uploadUrl, resp_body)
|
|
||||||
err = json.Unmarshal(resp_body, &ret)
|
err = json.Unmarshal(resp_body, &ret)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
println("upload response to", uploadUrl, resp_body)
|
||||||
panic(err.Error())
|
panic(err.Error())
|
||||||
}
|
}
|
||||||
//fmt.Println("Uploaded " + strconv.Itoa(ret.Size) + " Bytes to " + uploadUrl)
|
//fmt.Println("Uploaded " + strconv.Itoa(ret.Size) + " Bytes to " + uploadUrl)
|
||||||
|
|
Loading…
Reference in a new issue