Skip to content

Commit e61c8c9

Browse files
committed
MemPostings: comments on m & lvs
Signed-off-by: Oleg Zaytsev <[email protected]>
1 parent 764dcbb commit e61c8c9

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

tsdb/index/postings.go

+17-3
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,23 @@ var ensureOrderBatchPool = sync.Pool{
5757
// EnsureOrder() must be called once before any reads are done. This allows for quick
5858
// unordered batch fills on startup.
5959
type MemPostings struct {
60-
mtx sync.RWMutex
61-
m map[string]map[string][]storage.SeriesRef
62-
lvs map[string][]string
60+
mtx sync.RWMutex
61+
62+
// m holds the postings lists for each label-value pair, indexed first by label name, and then by label value.
63+
//
64+
// mtx must be held when interacting with m (the appropriate one for reading or writing).
65+
// It is safe to retain a reference to a postings list after releasing the lock.
66+
//
67+
// BUG: There's currently a data race in addFor, which might modify the tail of the postings list:
68+
// https://github.com/prometheus/prometheus/issues/15317
69+
m map[string]map[string][]storage.SeriesRef
70+
71+
// lvs holds the label values for each label name.
72+
// lvs[name] is essentially an unsorted append-only list of all keys in m[name]
73+
// mtx must be held when interacting with lvs.
74+
// Since it's append-only, it is safe to the label values slice after releasing the lock.
75+
lvs map[string][]string
76+
6377
ordered bool
6478
}
6579

0 commit comments

Comments
 (0)