mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Issue 11: Failed to write to replicas for volumen 3
Avoid unnecessary master lookup
This commit is contained in:
parent
ccab4217e4
commit
ecd0399f8d
|
@ -69,7 +69,7 @@ func vacuumVolumeCompactHandler(w http.ResponseWriter, r *http.Request) {
|
|||
func vacuumVolumeCommitHandler(w http.ResponseWriter, r *http.Request) {
|
||||
count, err := store.CommitCompactVolume(r.FormValue("volume"))
|
||||
if err == nil {
|
||||
writeJson(w, r, map[string]interface{}{"error": "", "size":count})
|
||||
writeJson(w, r, map[string]interface{}{"error": "", "size": count})
|
||||
} else {
|
||||
writeJson(w, r, map[string]string{"error": err.Error()})
|
||||
}
|
||||
|
@ -146,7 +146,11 @@ func PostHandler(w http.ResponseWriter, r *http.Request) {
|
|||
} else {
|
||||
ret := store.Write(volumeId, needle)
|
||||
errorStatus := ""
|
||||
if ret > 0 || !store.HasVolume(volumeId) { //send to other replica locations
|
||||
needToReplicate := !store.HasVolume(volumeId)
|
||||
if !needToReplicate && ret > 0 {
|
||||
needToReplicate = store.GetVolume(volumeId).NeedToReplicate()
|
||||
}
|
||||
if needToReplicate { //send to other replica locations
|
||||
if r.FormValue("type") != "standard" {
|
||||
if !distributedOperation(volumeId, func(location operation.Location) bool {
|
||||
_, err := operation.Upload("http://"+location.Url+r.URL.Path+"?type=standard", filename, bytes.NewReader(needle.Data))
|
||||
|
@ -201,7 +205,11 @@ func DeleteHandler(w http.ResponseWriter, r *http.Request) {
|
|||
n.Size = 0
|
||||
ret := store.Delete(volumeId, n)
|
||||
|
||||
if ret > 0 || !store.HasVolume(volumeId) { //send to other replica locations
|
||||
needToReplicate := !store.HasVolume(volumeId)
|
||||
if !needToReplicate && ret > 0 {
|
||||
needToReplicate = store.GetVolume(volumeId).NeedToReplicate()
|
||||
}
|
||||
if needToReplicate { //send to other replica locations
|
||||
if r.FormValue("type") != "standard" {
|
||||
if !distributedOperation(volumeId, func(location operation.Location) bool {
|
||||
return nil == operation.Delete("http://"+location.Url+r.URL.Path+"?type=standard")
|
||||
|
|
|
@ -73,6 +73,9 @@ func (v *Volume) readSuperBlock() {
|
|||
v.replicaType, _ = NewReplicationTypeFromByte(header[1])
|
||||
}
|
||||
}
|
||||
func (v *Volume) NeedToReplicate() bool{
|
||||
return v.replicaType.GetCopyCount()>1
|
||||
}
|
||||
|
||||
func (v *Volume) write(n *Needle) uint32 {
|
||||
v.accessLock.Lock()
|
||||
|
|
Loading…
Reference in a new issue