|
4 | 4 | "context"
|
5 | 5 | "encoding/json"
|
6 | 6 | "fmt"
|
| 7 | + "math" |
7 | 8 | "os"
|
8 | 9 | "path/filepath"
|
9 | 10 | "testing"
|
@@ -436,16 +437,54 @@ func TestFetcher_IsBlockDir(t *testing.T) {
|
436 | 437 | })
|
437 | 438 | }
|
438 | 439 |
|
439 |
| -func metasFromCache(data map[string][]byte) []Meta { |
440 |
| - metas := make([]Meta, 0, len(data)) |
441 |
| - for _, v := range data { |
| 440 | +func Benchmark_Fetcher_processMetasCacheResponse(b *testing.B) { |
| 441 | + b.Log(b.N) |
| 442 | + |
| 443 | + cfg := bloomStoreConfig{ |
| 444 | + numWorkers: 1, |
| 445 | + workingDirs: []string{b.TempDir()}, |
| 446 | + } |
| 447 | + |
| 448 | + c, err := NewBloomClient(cfg, nil, log.NewNopLogger()) |
| 449 | + require.NoError(b, err) |
| 450 | + f, err := NewFetcher(cfg, c, nil, nil, nil, log.NewNopLogger(), v1.NewMetrics(nil)) |
| 451 | + require.NoError(b, err) |
| 452 | + |
| 453 | + step := math.MaxUint64 / uint64(b.N) |
| 454 | + |
| 455 | + refs := make([]MetaRef, 0, b.N) |
| 456 | + keys := make([]string, 0, b.N) |
| 457 | + bufs := make([][]byte, 0, b.N) |
| 458 | + |
| 459 | + for i := 0; i < b.N; i++ { |
| 460 | + minFp := model.Fingerprint(uint64(i) * step) |
| 461 | + maxFp := model.Fingerprint(uint64(i)*step + step) |
| 462 | + |
| 463 | + ref := Ref{ |
| 464 | + TenantID: "fake", |
| 465 | + TableName: "tsdb_index_20000", |
| 466 | + Bounds: v1.NewBounds(minFp, maxFp), |
| 467 | + StartTimestamp: model.Earliest, |
| 468 | + EndTimestamp: model.Latest, |
| 469 | + } |
| 470 | + metaRef := MetaRef{Ref: ref} |
| 471 | + refs = append(refs, metaRef) |
| 472 | + |
| 473 | + keys = append(keys, f.client.Meta(metaRef).Addr()) |
| 474 | + |
442 | 475 | meta := Meta{
|
443 |
| - MetaRef: MetaRef{}, |
| 476 | + MetaRef: metaRef, |
| 477 | + Blocks: []BlockRef{{Ref: ref}}, |
444 | 478 | }
|
445 |
| - _ = json.Unmarshal(v, &meta) |
446 |
| - metas = append(metas, meta) |
| 479 | + |
| 480 | + buf, _ := json.Marshal(meta) |
| 481 | + bufs = append(bufs, buf) |
447 | 482 | }
|
448 |
| - return metas |
| 483 | + |
| 484 | + b.ReportAllocs() |
| 485 | + b.ResetTimer() |
| 486 | + |
| 487 | + _, _, _ = f.processMetasCacheResponse(context.TODO(), refs, keys, bufs) |
449 | 488 | }
|
450 | 489 |
|
451 | 490 | func metaRefs(metas []Meta) []MetaRef {
|
|
0 commit comments