mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-15 08:23:34 +01:00
app/vmselect/netstorage: assume the response is full if up to -replicationFactor-1 vmstorage nodes are unavailable
This is a follow-up for ee5c502446
Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/1767
This commit is contained in:
parent
572db17857
commit
08de733924
@ -1407,7 +1407,9 @@ func (snr *storageNodesRequest) collectResults(partialResultsCounter *metrics.Co
|
|||||||
return false, nil
|
return false, nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(errsPartial) == 0 {
|
if len(errsPartial) < *replicationFactor {
|
||||||
|
// Assume that the result is full if the the number of failing vmstorage nodes
|
||||||
|
// is smaller than the -replicationFactor.
|
||||||
return false, nil
|
return false, nil
|
||||||
}
|
}
|
||||||
if len(errsPartial) == len(storageNodes) {
|
if len(errsPartial) == len(storageNodes) {
|
||||||
@ -1417,13 +1419,16 @@ func (snr *storageNodesRequest) collectResults(partialResultsCounter *metrics.Co
|
|||||||
}
|
}
|
||||||
// Return partial results.
|
// Return partial results.
|
||||||
// This allows gracefully degrade vmselect in the case
|
// This allows gracefully degrade vmselect in the case
|
||||||
// if a part of storageNodes are temporarily unavailable.
|
// if a part of vmstorage nodes are temporarily unavailable.
|
||||||
|
partialResultsCounter.Inc()
|
||||||
// Do not return the error, since it may spam logs on busy vmselect
|
// Do not return the error, since it may spam logs on busy vmselect
|
||||||
// serving high amounts of requests.
|
// serving high amounts of requests.
|
||||||
partialResultsCounter.Inc()
|
partialErrorsLogger.Warnf("%d out of %d vmstorage nodes were unavailable during the query; a sample error: %s", len(errsPartial), len(storageNodes), errsPartial[0])
|
||||||
return true, nil
|
return true, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var partialErrorsLogger = logger.WithThrottler("partialErrors", 10*time.Second)
|
||||||
|
|
||||||
type storageNode struct {
|
type storageNode struct {
|
||||||
connPool *netutil.ConnPool
|
connPool *netutil.ConnPool
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user