You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 13, 2019. It is now read-only.
The sequence of label index sections is finalized by an [offset table](#offset-table)pointing to the beginning of each label index section for a given set of label names.
156
+
The sequence of label index sections is finalized by a [label offset table](#label-offset-table)containing label offset entries that points to the beginning of each label index section for a given label name.
157
157
158
158
### Postings
159
159
@@ -175,24 +175,48 @@ Postings sections store monotonically increasing lists of series references that
175
175
└─────────────────────────────────────────┘
176
176
```
177
177
178
-
The sequence of postings sections is finalized by an [offset table](#offset-table)pointing to the beginning of each postings section for a given set of label names.
178
+
The sequence of postings sections is finalized by a [postings offset table](#postings-offset-table)containing postings offset entries that points to the beginning of each postings section for a given label pair.
179
179
180
-
### Offset Table
180
+
### Label Offset Table
181
181
182
-
An offset table stores a sequence of entries that maps a list of strings to an offset. They are used to track label index and postings sections. They are read into memory when an index file is loaded.
182
+
A label offset table stores a sequence of label offset entries.
183
+
Every label offset entry holds the label name and the offset to its values in the label index section.
184
+
They are used to track label index sections. They are read into memory when an index file is loaded.
183
185
184
186
```
185
187
┌─────────────────────┬──────────────────────┐
186
188
│ len <4b> │ #entries <4b> │
187
189
├─────────────────────┴──────────────────────┤
188
190
│ ┌────────────────────────────────────────┐ │
189
-
│ │ n = #strs <uvarint> │ │
191
+
│ │ n = 1 <1b> │ │
190
192
│ ├──────────────────────┬─────────────────┤ │
191
-
│ │ len(str_1) <uvarint> │ str_1 <bytes> │ │
193
+
│ │ len(name) <uvarint> │ name <bytes> │ │
192
194
│ ├──────────────────────┴─────────────────┤ │
193
-
│ │ ... │ │
195
+
│ │ offset <uvarint64> │ │
196
+
│ └────────────────────────────────────────┘ │
197
+
│ . . . │
198
+
├────────────────────────────────────────────┤
199
+
│ CRC32 <4b> │
200
+
└────────────────────────────────────────────┘
201
+
```
202
+
203
+
204
+
### Postings Offset Table
205
+
206
+
A postings offset table stores a sequence of postings offset entries.
207
+
Every postings offset entry holds the lable name/value pair and the offset to its series list in the postings section.
208
+
They are used to track postings sections. They are read into memory when an index file is loaded.
209
+
210
+
```
211
+
┌─────────────────────┬──────────────────────┐
212
+
│ len <4b> │ #entries <4b> │
213
+
├─────────────────────┴──────────────────────┤
214
+
│ ┌────────────────────────────────────────┐ │
215
+
│ │ n = 2 <1b> │ │
194
216
│ ├──────────────────────┬─────────────────┤ │
195
-
│ │ len(str_n) <uvarint> │ str_n <bytes> │ │
217
+
│ │ len(name) <uvarint> │ name <bytes> │ │
218
+
│ ├──────────────────────┼─────────────────┤ │
219
+
│ │ len(value) <uvarint> │ value <bytes> │ │
196
220
│ ├──────────────────────┴─────────────────┤ │
197
221
│ │ offset <uvarint64> │ │
198
222
│ └────────────────────────────────────────┘ │
@@ -216,11 +240,11 @@ If a reference is zero, it indicates the respective section does not exist and e
0 commit comments