mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-25 13:44:05 -08:00
Merge pull request #13473 from bboreham/pure-mutex
tsdb: use cheaper Mutex on series
This commit is contained in:
commit
cd4562d3a6
|
@ -1487,9 +1487,9 @@ func (h *Head) Delete(ctx context.Context, mint, maxt int64, ms ...*labels.Match
|
|||
continue
|
||||
}
|
||||
|
||||
series.RLock()
|
||||
series.Lock()
|
||||
t0, t1 := series.minTime(), series.maxTime()
|
||||
series.RUnlock()
|
||||
series.Unlock()
|
||||
if t0 == math.MinInt64 || t1 == math.MinInt64 {
|
||||
continue
|
||||
}
|
||||
|
@ -2024,7 +2024,7 @@ func (s sample) Type() chunkenc.ValueType {
|
|||
// memSeries is the in-memory representation of a series. None of its methods
|
||||
// are goroutine safe and it is the caller's responsibility to lock it.
|
||||
type memSeries struct {
|
||||
sync.RWMutex
|
||||
sync.Mutex
|
||||
|
||||
ref chunks.HeadSeriesRef
|
||||
lset labels.Labels
|
||||
|
|
|
@ -684,9 +684,9 @@ func (a *headAppender) UpdateMetadata(ref storage.SeriesRef, lset labels.Labels,
|
|||
return 0, fmt.Errorf("unknown series when trying to add metadata with HeadSeriesRef: %d and labels: %s", ref, lset)
|
||||
}
|
||||
|
||||
s.RLock()
|
||||
s.Lock()
|
||||
hasNewMetadata := s.meta == nil || *s.meta != meta
|
||||
s.RUnlock()
|
||||
s.Unlock()
|
||||
|
||||
if hasNewMetadata {
|
||||
a.metadata = append(a.metadata, record.RefMetadata{
|
||||
|
|
Loading…
Reference in a new issue