From 815aa8f28e1df64ba8fa6e040e2ecdcbcdad8881 Mon Sep 17 00:00:00 2001 From: irfan sharif Date: Mon, 28 Nov 2022 11:07:19 -0500 Subject: [PATCH] roachtest: reduce frequency of index-overload test Release note: None --- .../roachtest/tests/admission_control_index_overload.go | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkg/cmd/roachtest/tests/admission_control_index_overload.go b/pkg/cmd/roachtest/tests/admission_control_index_overload.go index 9411df9d5269..904d49f08ca5 100644 --- a/pkg/cmd/roachtest/tests/admission_control_index_overload.go +++ b/pkg/cmd/roachtest/tests/admission_control_index_overload.go @@ -32,12 +32,9 @@ import ( // queries, but the intent is to measure the impact of the index creation. func registerIndexOverload(r registry.Registry) { r.Add(registry.TestSpec{ - Name: "admission-control/index-overload", - Owner: registry.OwnerAdmissionControl, - // TODO(baptist): After two weeks of nightly baking time, reduce - // this to a weekly cadence. This is a long-running test and serves only - // as a coarse-grained benchmark. - // Tags: []string{`weekly`}, + Name: "admission-control/index-overload", + Owner: registry.OwnerAdmissionControl, + Tags: []string{`weekly`}, Cluster: r.MakeClusterSpec(4, spec.CPU(8)), Run: func(ctx context.Context, t test.Test, c cluster.Cluster) { crdbNodes := c.Spec().NodeCount - 1