Skip to content

Commit f5e3aae

Browse files
authored
Fixed profiles, added 1y continous timing and better hashing algo. (#31)
Signed-off-by: Bartlomiej Plotka <[email protected]>
1 parent 08477c8 commit f5e3aae

File tree

4 files changed

+64
-15
lines changed

4 files changed

+64
-15
lines changed

cmd/thanosbench/block.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Example plan with generation:
133133
./thanosbench block plan -p <profile> --labels 'cluster="one"' --max-time 2019-10-18T00:00:00Z | ./thanosbench block gen --output.dir ./genblocks --workers 20`)
134134
profile := cmd.Flag("profile", "Name of the harcoded profile to use").Required().Short('p').Enum(blockgen.Profiles.Keys()...)
135135
maxTime := model.TimeOrDuration(cmd.Flag("max-time", "If empty current time - 30m (usual consistency delay) is used.").Default("30m"))
136-
extLset := cmd.Flag("labels", "External labels for block stream (repeated).").PlaceHolder("<name>=\"<value>\"").Required().Strings()
136+
extLset := cmd.Flag("labels", "External labels for block stream (repeated).").PlaceHolder("<name>=\"<value>\"").Strings()
137137
m["block plan"] = func(g *run.Group, _ log.Logger) error {
138138
ctx, cancel := context.WithCancel(context.Background())
139139
g.Add(func() error {

go.mod

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ module github.com/thanos-io/thanosbench
22

33
require (
44
github.com/bwplotka/mimic v0.0.0-20190730202618-06ab9976e8ef
5+
github.com/cespare/xxhash/v2 v2.1.1
56
github.com/fatih/structtag v1.1.0
67
github.com/go-kit/kit v0.10.0
78
github.com/go-openapi/swag v0.19.9

pkg/blockgen/blockgen.go

+27-6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"path"
88
"time"
99

10+
"github.com/cespare/xxhash/v2"
1011
"github.com/pkg/errors"
1112

1213
"github.com/go-kit/kit/log"
@@ -76,7 +77,12 @@ func Generate(ctx context.Context, logger log.Logger, goroutines int, dir string
7677
if err != nil {
7778
return ulid.ULID{}, err
7879
}
79-
set := &blockSeriesSet{config: block}
80+
81+
extLset := block.Thanos.Labels
82+
if extLset == nil {
83+
extLset = map[string]string{}
84+
}
85+
set := &blockSeriesSet{config: block, extLset: labels.FromMap(extLset)}
8086
if err := seriesgen.Append(ctx, goroutines, w, set); err != nil {
8187
return ulid.ULID{}, errors.Wrap(err, "append")
8288
}
@@ -98,10 +104,11 @@ func Generate(ctx context.Context, logger log.Logger, goroutines int, dir string
98104
}
99105

100106
type blockSeriesSet struct {
101-
config BlockSpec
102-
i int
103-
target int
104-
err error
107+
config BlockSpec
108+
extLset labels.Labels
109+
i int
110+
target int
111+
err error
105112

106113
curr seriesgen.Series
107114
}
@@ -122,9 +129,23 @@ func (s *blockSeriesSet) Next() bool {
122129
series := s.config.Series[s.i-1]
123130
lset := labels.Labels(append([]labels.Label{{Name: "__blockgen_target__", Value: fmt.Sprintf("%v", s.target)}}, series.Labels...))
124131

132+
b := make([]byte, 0, 1024)
133+
for _, v := range lset {
134+
b = append(b, v.Name...)
135+
b = append(b, '\xff')
136+
b = append(b, v.Value...)
137+
b = append(b, '\xff')
138+
}
139+
for _, v := range s.extLset {
140+
b = append(b, v.Name...)
141+
b = append(b, '\xff')
142+
b = append(b, v.Value...)
143+
b = append(b, '\xff')
144+
}
145+
125146
// Stable random per series name.
126147
iter, err := series.Type.Create(
127-
rand.New(rand.NewSource(int64(lset.Hash()))),
148+
rand.New(rand.NewSource(int64(xxhash.Sum64(b)))),
128149
series.MinTime,
129150
series.MaxTime,
130151
series.Characteristics,

pkg/blockgen/profiles.go

+35-8
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,34 @@ var (
5252
48 * time.Hour,
5353
2 * time.Hour,
5454
}, 1*time.Hour, 100, 50),
55-
55+
"realistic-k8s-30d-tiny": realisticK8s([]time.Duration{
56+
// 30 days, from newest to oldest.
57+
2 * time.Hour,
58+
2 * time.Hour,
59+
2 * time.Hour,
60+
8 * time.Hour,
61+
176 * time.Hour,
62+
176 * time.Hour,
63+
176 * time.Hour,
64+
176 * time.Hour,
65+
2 * time.Hour,
66+
}, 1*time.Hour, 1, 5),
67+
"realistic-k8s-365d-tiny": realisticK8s([]time.Duration{
68+
// 1y days, from newest to oldest.
69+
2 * time.Hour,
70+
2 * time.Hour,
71+
2 * time.Hour,
72+
8 * time.Hour,
73+
176 * time.Hour,
74+
176 * time.Hour,
75+
176 * time.Hour,
76+
176 * time.Hour,
77+
67 * 24 * time.Hour,
78+
67 * 24 * time.Hour,
79+
67 * 24 * time.Hour,
80+
67 * 24 * time.Hour,
81+
67 * 24 * time.Hour,
82+
}, 1*time.Hour, 1, 5),
5683
"continuous-1w-small": continuous([]time.Duration{
5784
// One week, from newest to oldest, in the same way Thanos compactor would do.
5885
2 * time.Hour,
@@ -66,8 +93,7 @@ var (
6693
2 * time.Hour,
6794
// 10,000 series per block.
6895
}, 100, 100),
69-
70-
"key-k8s-30d-tiny": realisticK8s([]time.Duration{
96+
"continuous-30d-tiny": continuous([]time.Duration{
7197
// 30 days, from newest to oldest.
7298
2 * time.Hour,
7399
2 * time.Hour,
@@ -78,9 +104,8 @@ var (
78104
176 * time.Hour,
79105
176 * time.Hour,
80106
2 * time.Hour,
81-
}, 1*time.Hour, 1, 5),
82-
83-
"key-k8s-365d-tiny": realisticK8s([]time.Duration{
107+
}, 1, 5),
108+
"continuous-365d-tiny": continuous([]time.Duration{
84109
// 1y days, from newest to oldest.
85110
2 * time.Hour,
86111
2 * time.Hour,
@@ -93,7 +118,9 @@ var (
93118
67 * 24 * time.Hour,
94119
67 * 24 * time.Hour,
95120
67 * 24 * time.Hour,
96-
}, 1*time.Hour, 1, 5),
121+
67 * 24 * time.Hour,
122+
67 * 24 * time.Hour,
123+
}, 1, 5),
97124
}
98125
)
99126

@@ -201,7 +228,7 @@ func continuous(ranges []time.Duration, apps int, metricsPerApp int) PlanFn {
201228
}
202229

203230
for _, r := range ranges {
204-
mint := maxt - durToMilis(r)
231+
mint := maxt - durToMilis(r) + 1
205232

206233
if ctx.Err() != nil {
207234
return ctx.Err()

0 commit comments

Comments
 (0)