Commit e785661
authored
Experiment with using tsdb doc values codec for _seq_no. (#133788)
Running metricsgenreceiver without this change:
```
"_seq_no": {
"total": "369.9mb",
"total_in_bytes": 387962443,
"inverted_index": {
"total": "0b",
"total_in_bytes": 0
},
"stored_fields": "0b",
"stored_fields_in_bytes": 0,
"doc_values": "369.9mb",
"doc_values_in_bytes": 387962443,
"points": "0b",
"points_in_bytes": 0,
"norms": "0b",
"norms_in_bytes": 0,
"term_vectors": "0b",
"term_vectors_in_bytes": 0,
"knn_vectors": "0b",
"knn_vectors_in_bytes": 0
}
```
and running metricsgenreceiver with this change:
```
"_seq_no": {
"total": "212.3mb",
"total_in_bytes": 222616293,
"inverted_index": {
"total": "0b",
"total_in_bytes": 0
},
"stored_fields": "0b",
"stored_fields_in_bytes": 0,
"doc_values": "212.3mb",
"doc_values_in_bytes": 222616293,
"points": "0b",
"points_in_bytes": 0,
"norms": "0b",
"norms_in_bytes": 0,
"term_vectors": "0b",
"term_vectors_in_bytes": 0,
"knn_vectors": "0b",
"knn_vectors_in_bytes": 0
}
```
metricsgenreceiver config:
```
receivers:
metricsgen:
start_now_minus: 72h
interval: 5s
interval_jitter_std_dev: 1ms
real_time: false
exit_after_end: true
seed: 123
scenarios:
- path: builtin/hostmetrics
scale: 100
```1 parent a669863 commit e785661
File tree
1 file changed
+9
-1
lines changed- server/src/main/java/org/elasticsearch/index/codec
1 file changed
+9
-1
lines changedLines changed: 9 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
| 18 | + | |
18 | 19 | | |
19 | 20 | | |
20 | 21 | | |
| |||
25 | 26 | | |
26 | 27 | | |
27 | 28 | | |
| 29 | + | |
28 | 30 | | |
29 | 31 | | |
30 | 32 | | |
| |||
33 | 35 | | |
34 | 36 | | |
35 | 37 | | |
| 38 | + | |
| 39 | + | |
36 | 40 | | |
37 | 41 | | |
38 | 42 | | |
| |||
122 | 126 | | |
123 | 127 | | |
124 | 128 | | |
| 129 | + | |
125 | 130 | | |
126 | 131 | | |
127 | | - | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
128 | 136 | | |
129 | 137 | | |
130 | 138 | | |
| |||
0 commit comments