Skip to content

Commit e5b49fb

Browse files
Profile: Added low memory profile; Fixed blocks to not overlap (#26)
* Profile: Low memory usable In this PR, we intend to generate 30d blocks, and in order to avoid overlapping, the mint has been increased by 1, mint := maxt - durToMilis(r) tada Signed-off-by: soniasingla <[email protected]> * Long term version Signed-off-by: soniasingla <[email protected]> * Long term version for 30 days Signed-off-by: soniasingla <[email protected]> * Update pkg/blockgen/profiles.go Co-authored-by: Bartlomiej Plotka <[email protected]> Signed-off-by: soniasingla <[email protected]> Co-authored-by: Bartlomiej Plotka <[email protected]>
1 parent ebe2a13 commit e5b49fb

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

pkg/blockgen/profiles.go

+14-1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,19 @@ var (
6666
2 * time.Hour,
6767
// 10,000 series per block.
6868
}, 100, 100),
69+
70+
"key-k8s-30d-tiny": realisticK8s([]time.Duration{
71+
// 30 days, from newest to oldest.
72+
2 * time.Hour,
73+
2 * time.Hour,
74+
2 * time.Hour,
75+
8 * time.Hour,
76+
176 * time.Hour,
77+
176 * time.Hour,
78+
176 * time.Hour,
79+
176 * time.Hour,
80+
2 * time.Hour,
81+
}, 1*time.Hour, 1, 5),
6982
}
7083
)
7184

@@ -92,7 +105,7 @@ func realisticK8s(ranges []time.Duration, rolloutInterval time.Duration, apps in
92105
}
93106

94107
for _, r := range ranges {
95-
mint := maxt - durToMilis(r)
108+
mint := maxt - durToMilis(r) + 1
96109

97110
b := BlockSpec{
98111
Meta: metadata.Meta{

0 commit comments

Comments
 (0)