File tree 1 file changed +17
-3
lines changed
1 file changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -57,9 +57,23 @@ var ensureOrderBatchPool = sync.Pool{
57
57
// EnsureOrder() must be called once before any reads are done. This allows for quick
58
58
// unordered batch fills on startup.
59
59
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
+
63
77
ordered bool
64
78
}
65
79
You can’t perform that action at this time.
0 commit comments