Issue 11: Failed to write to replicas for volumen 3
Avoid unnecessary master lookup
This commit is contained in:
@@ -146,7 +146,11 @@ func PostHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
} else {
|
} else {
|
||||||
ret := store.Write(volumeId, needle)
|
ret := store.Write(volumeId, needle)
|
||||||
errorStatus := ""
|
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 r.FormValue("type") != "standard" {
|
||||||
if !distributedOperation(volumeId, func(location operation.Location) bool {
|
if !distributedOperation(volumeId, func(location operation.Location) bool {
|
||||||
_, err := operation.Upload("http://"+location.Url+r.URL.Path+"?type=standard", filename, bytes.NewReader(needle.Data))
|
_, 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
|
n.Size = 0
|
||||||
ret := store.Delete(volumeId, n)
|
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 r.FormValue("type") != "standard" {
|
||||||
if !distributedOperation(volumeId, func(location operation.Location) bool {
|
if !distributedOperation(volumeId, func(location operation.Location) bool {
|
||||||
return nil == operation.Delete("http://"+location.Url+r.URL.Path+"?type=standard")
|
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])
|
v.replicaType, _ = NewReplicationTypeFromByte(header[1])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
func (v *Volume) NeedToReplicate() bool{
|
||||||
|
return v.replicaType.GetCopyCount()>1
|
||||||
|
}
|
||||||
|
|
||||||
func (v *Volume) write(n *Needle) uint32 {
|
func (v *Volume) write(n *Needle) uint32 {
|
||||||
v.accessLock.Lock()
|
v.accessLock.Lock()
|
||||||
|
|||||||
Reference in New Issue
Block a user