From dc5ddd0edf502f87bd9a7a10bd52ff88e479cd9e Mon Sep 17 00:00:00 2001 From: Nick Pillitteri Date: Thu, 25 Apr 2024 15:01:47 -0400 Subject: [PATCH] Remove unneeded compactor in querier e2e test This compactor was added in #6779 but isn't actually needed since we're testing monolithic mode which already includes the compactor component. Coincidentally, this also seems to fix #7972 Signed-off-by: Nick Pillitteri --- integration/querier_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/integration/querier_test.go b/integration/querier_test.go index 76ff81ffb25..a1cd9c57d34 100644 --- a/integration/querier_test.go +++ b/integration/querier_test.go @@ -445,10 +445,6 @@ func TestQuerierWithBlocksStorageRunningInSingleBinaryMode(t *testing.T) { const shippedBlocks = 2 require.NoError(t, cluster.WaitSumMetrics(e2e.GreaterOrEqual(float64(shippedBlocks*seriesReplicationFactor)), "cortex_bucket_store_blocks_loaded")) - // Start the compactor to have the bucket index created before querying. - compactor := e2emimir.NewCompactor("compactor", consul.NetworkHTTPEndpoint(), flags) - require.NoError(t, s.StartAndWaitReady(compactor)) - var expectedCacheRequests int // Query back the series (1 only in the storage, 1 only in the ingesters, 1 on both).