X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/098a6b73cd5b7ad391ed30e95b825817d22aec24..9f37e0dd819730350a82c229c12e7856c325212e:/services/keepstore/command.go diff --git a/services/keepstore/command.go b/services/keepstore/command.go index be26397736..0927b18704 100644 --- a/services/keepstore/command.go +++ b/services/keepstore/command.go @@ -157,9 +157,8 @@ func (h *handler) setup(ctx context.Context, cluster *arvados.Cluster, token str } bufs = newBufferPool(h.Logger, h.Cluster.API.MaxKeepBlobBuffers, BlockSize) - if h.Cluster.API.MaxConcurrentRequests < 1 { - h.Cluster.API.MaxConcurrentRequests = h.Cluster.API.MaxKeepBlobBuffers * 2 - h.Logger.Warnf("API.MaxConcurrentRequests <1 or not specified; defaulting to MaxKeepBlobBuffers * 2 == %d", h.Cluster.API.MaxConcurrentRequests) + if h.Cluster.API.MaxConcurrentRequests > 0 && h.Cluster.API.MaxConcurrentRequests < h.Cluster.API.MaxKeepBlobBuffers { + h.Logger.Warnf("Possible configuration mistake: not useful to set API.MaxKeepBlobBuffers (%d) higher than API.MaxConcurrentRequests (%d)", h.Cluster.API.MaxKeepBlobBuffers, h.Cluster.API.MaxConcurrentRequests) } if h.Cluster.Collections.BlobSigningKey != "" {