Skip to content
This repository was archived by the owner on Aug 13, 2019. It is now read-only.

Commit 3ccab17

Browse files
zhulongchengkrasi-georgiev
authored andcommitted
docs: add label offset table and postings offset table (#593)
Signed-off-by: zhulongcheng <[email protected]>
1 parent 5512826 commit 3ccab17

File tree

1 file changed

+34
-10
lines changed

1 file changed

+34
-10
lines changed

docs/format/index.md

+34-10
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ For instance, a single label name with 4 different values will be encoded as:
153153
└────┴───┴───┴──────────────┴──────────────┴──────────────┴──────────────┴───────┘
154154
```
155155

156-
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.
157157

158158
### Postings
159159

@@ -175,24 +175,48 @@ Postings sections store monotonically increasing lists of series references that
175175
└─────────────────────────────────────────┘
176176
```
177177

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.
179179

180-
### Offset Table
180+
### Label Offset Table
181181

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.
183185

184186
```
185187
┌─────────────────────┬──────────────────────┐
186188
│ len <4b> │ #entries <4b> │
187189
├─────────────────────┴──────────────────────┤
188190
│ ┌────────────────────────────────────────┐ │
189-
│ │ n = #strs <uvarint> │ │
191+
│ │ n = 1 <1b> │ │
190192
│ ├──────────────────────┬─────────────────┤ │
191-
│ │ len(str_1) <uvarint> │ str_1 <bytes> │ │
193+
│ │ len(name) <uvarint> │ name <bytes> │ │
192194
│ ├──────────────────────┴─────────────────┤ │
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> │ │
194216
│ ├──────────────────────┬─────────────────┤ │
195-
│ │ len(str_n) <uvarint> │ str_n <bytes> │ │
217+
│ │ len(name) <uvarint> │ name <bytes> │ │
218+
│ ├──────────────────────┼─────────────────┤ │
219+
│ │ len(value) <uvarint> │ value <bytes> │ │
196220
│ ├──────────────────────┴─────────────────┤ │
197221
│ │ offset <uvarint64> │ │
198222
│ └────────────────────────────────────────┘ │
@@ -216,11 +240,11 @@ If a reference is zero, it indicates the respective section does not exist and e
216240
├─────────────────────────────────────────┤
217241
│ ref(label indices start) <8b> │
218242
├─────────────────────────────────────────┤
219-
│ ref(label indices table) <8b> │
243+
│ ref(label offset table) <8b>
220244
├─────────────────────────────────────────┤
221245
│ ref(postings start) <8b> │
222246
├─────────────────────────────────────────┤
223-
│ ref(postings table) <8b>
247+
│ ref(postings offset table) <8b> │
224248
├─────────────────────────────────────────┤
225249
│ CRC32 <4b> │
226250
└─────────────────────────────────────────┘

0 commit comments

Comments
 (0)