|
|
@ -45,15 +45,17 @@ func (vs *VolumeServer) privateStoreHandler(w http.ResponseWriter, r *http.Reque |
|
|
|
case "GET", "HEAD": |
|
|
|
stats.ReadRequest() |
|
|
|
vs.inFlightDownloadDataLimitCond.L.Lock() |
|
|
|
for vs.concurrentDownloadLimit != 0 && atomic.LoadInt64(&vs.inFlightDownloadDataSize) > vs.concurrentDownloadLimit { |
|
|
|
inFlightDownloadSize := atomic.LoadInt64(&vs.inFlightDownloadDataSize) |
|
|
|
for vs.concurrentDownloadLimit != 0 && inFlightDownloadSize > vs.concurrentDownloadLimit { |
|
|
|
select { |
|
|
|
case <-r.Context().Done(): |
|
|
|
glog.V(4).Infof("request cancelled from %s: %v", r.RemoteAddr, r.Context().Err()) |
|
|
|
return |
|
|
|
default: |
|
|
|
glog.V(4).Infof("wait because inflight download data %d > %d", vs.inFlightDownloadDataSize, vs.concurrentDownloadLimit) |
|
|
|
glog.V(4).Infof("wait because inflight download data %d > %d", inFlightDownloadSize, vs.concurrentDownloadLimit) |
|
|
|
vs.inFlightDownloadDataLimitCond.Wait() |
|
|
|
} |
|
|
|
inFlightDownloadSize = atomic.LoadInt64(&vs.inFlightDownloadDataSize) |
|
|
|
} |
|
|
|
vs.inFlightDownloadDataLimitCond.L.Unlock() |
|
|
|
vs.GetOrHeadHandler(w, r) |
|
|
@ -66,17 +68,19 @@ func (vs *VolumeServer) privateStoreHandler(w http.ResponseWriter, r *http.Reque |
|
|
|
if r.URL.Query().Get("type") != "replicate" && vs.concurrentUploadLimit != 0 { |
|
|
|
startTime := time.Now() |
|
|
|
vs.inFlightUploadDataLimitCond.L.Lock() |
|
|
|
for vs.inFlightUploadDataSize > vs.concurrentUploadLimit { |
|
|
|
inFlightUploadDataSize := atomic.LoadInt64(&vs.inFlightUploadDataSize) |
|
|
|
for inFlightUploadDataSize > vs.concurrentUploadLimit { |
|
|
|
//wait timeout check
|
|
|
|
if startTime.Add(vs.inflightUploadDataTimeout).Before(time.Now()) { |
|
|
|
vs.inFlightUploadDataLimitCond.L.Unlock() |
|
|
|
err := fmt.Errorf("reject because inflight upload data %d > %d, and wait timeout", vs.inFlightUploadDataSize, vs.concurrentUploadLimit) |
|
|
|
err := fmt.Errorf("reject because inflight upload data %d > %d, and wait timeout", inFlightUploadDataSize, vs.concurrentUploadLimit) |
|
|
|
glog.V(1).Infof("too many requests: %v", err) |
|
|
|
writeJsonError(w, r, http.StatusTooManyRequests, err) |
|
|
|
return |
|
|
|
} |
|
|
|
glog.V(4).Infof("wait because inflight upload data %d > %d", vs.inFlightUploadDataSize, vs.concurrentUploadLimit) |
|
|
|
glog.V(4).Infof("wait because inflight upload data %d > %d", inFlightUploadDataSize, vs.concurrentUploadLimit) |
|
|
|
vs.inFlightUploadDataLimitCond.Wait() |
|
|
|
inFlightUploadDataSize = atomic.LoadInt64(&vs.inFlightUploadDataSize) |
|
|
|
} |
|
|
|
vs.inFlightUploadDataLimitCond.L.Unlock() |
|
|
|
} |
|
|
@ -121,9 +125,11 @@ func (vs *VolumeServer) publicReadOnlyHandler(w http.ResponseWriter, r *http.Req |
|
|
|
case "GET", "HEAD": |
|
|
|
stats.ReadRequest() |
|
|
|
vs.inFlightDownloadDataLimitCond.L.Lock() |
|
|
|
for vs.concurrentDownloadLimit != 0 && atomic.LoadInt64(&vs.inFlightDownloadDataSize) > vs.concurrentDownloadLimit { |
|
|
|
glog.V(4).Infof("wait because inflight download data %d > %d", vs.inFlightDownloadDataSize, vs.concurrentDownloadLimit) |
|
|
|
inFlightDownloadSize := atomic.LoadInt64(&vs.inFlightDownloadDataSize) |
|
|
|
for vs.concurrentDownloadLimit != 0 && inFlightDownloadSize > vs.concurrentDownloadLimit { |
|
|
|
glog.V(4).Infof("wait because inflight download data %d > %d", inFlightDownloadSize, vs.concurrentDownloadLimit) |
|
|
|
vs.inFlightDownloadDataLimitCond.Wait() |
|
|
|
inFlightDownloadSize = atomic.LoadInt64(&vs.inFlightDownloadDataSize) |
|
|
|
} |
|
|
|
vs.inFlightDownloadDataLimitCond.L.Unlock() |
|
|
|
vs.GetOrHeadHandler(w, r) |
|
|
|