mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-26 06:04:05 -08:00
Merge pull request #2587 from prometheus/beorn7/storage2
storage: Mark storage as dirty if indexing fails
This commit is contained in:
commit
516a96d9a3
|
@ -1381,9 +1381,11 @@ func (p *persistence) processIndexingQueue() {
|
|||
|
||||
if err := p.labelPairToFingerprints.IndexBatch(pairToFPs); err != nil {
|
||||
log.Error("Error indexing label pair to fingerprints batch: ", err)
|
||||
p.setDirty(err)
|
||||
}
|
||||
if err := p.labelNameToLabelValues.IndexBatch(nameToValues); err != nil {
|
||||
log.Error("Error indexing label name to label values batch: ", err)
|
||||
p.setDirty(err)
|
||||
}
|
||||
batchSize = 0
|
||||
nameToValues = index.LabelNameLabelValuesMapping{}
|
||||
|
|
Loading…
Reference in a new issue