forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Previously, SQL Stats's implementation for version gating is faulty. This means that SQL Stats's job monitor would attempt to start sql stats compaction job in an incompatible cluster. This commit fixed the faulty implementation. Resolves cockroachdb#69459 Resolves cockroachdb#69541 Resolves cockroachdb#69544 Resolves cockroachdb#69565 Release justification: Category 2: Bug fixes and low-risk updates to new functionality Release note: None
- Loading branch information
Showing
3 changed files
with
77 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// Copyright 2021 The Cockroach Authors. | ||
// | ||
// Use of this software is governed by the Business Source License | ||
// included in the file licenses/BSL.txt. | ||
// | ||
// As of the Change Date specified in that file, in accordance with | ||
// the Business Source License, use of this software will be governed | ||
// by the Apache License, Version 2.0, included in the file | ||
// licenses/APL.txt. | ||
|
||
package persistedsqlstats_test | ||
|
||
import ( | ||
"context" | ||
"testing" | ||
|
||
"github.com/cockroachdb/cockroach/pkg/base" | ||
"github.com/cockroachdb/cockroach/pkg/clusterversion" | ||
"github.com/cockroachdb/cockroach/pkg/server" | ||
"github.com/cockroachdb/cockroach/pkg/sql/tests" | ||
"github.com/cockroachdb/cockroach/pkg/testutils/sqlutils" | ||
"github.com/cockroachdb/cockroach/pkg/testutils/testcluster" | ||
"github.com/cockroachdb/cockroach/pkg/util/leaktest" | ||
"github.com/cockroachdb/cockroach/pkg/util/log" | ||
) | ||
|
||
func TestVersionGating(t *testing.T) { | ||
defer leaktest.AfterTest(t)() | ||
defer log.Scope(t).Close(t) | ||
|
||
ctx := context.Background() | ||
params, _ := tests.CreateTestServerParams() | ||
params.Knobs.Server = &server.TestingKnobs{ | ||
DisableAutomaticVersionUpgrade: 1, | ||
BinaryVersionOverride: clusterversion.ByKey(clusterversion.SQLStatsCompactionScheduledJob - 1), | ||
} | ||
tc := testcluster.StartTestCluster(t, 1, base.TestClusterArgs{ | ||
ServerArgs: params, | ||
}) | ||
|
||
defer tc.Stopper().Stop(ctx) | ||
|
||
sqlDB := sqlutils.MakeSQLRunner(tc.ServerConn(0 /* idx */)) | ||
sqlDB.CheckQueryResults(t, | ||
"SELECT count(*) FROM [SHOW SCHEDULES FOR SQL STATISTICS]", | ||
[][]string{{"0"}}) | ||
|
||
sqlDB.Exec(t, `SET CLUSTER SETTING version = $1`, | ||
clusterversion.ByKey(clusterversion.SQLStatsCompactionScheduledJob).String()) | ||
|
||
// Change the recurrence cluster setting to force job monitor to create the | ||
// sql stats compaction schedule. | ||
sqlDB.Exec(t, "SET CLUSTER SETTING sql.stats.cleanup.recurrence = '@daily'") | ||
|
||
// Wait for the change is picked up by the job monitor. | ||
sqlDB.CheckQueryResultsRetry(t, | ||
"SELECT recurrence FROM [SHOW SCHEDULES FOR SQL STATISTICS]", | ||
[][]string{{"@daily"}}) | ||
|
||
sqlDB.CheckQueryResults(t, | ||
"SELECT count(*) FROM [SHOW SCHEDULES FOR SQL STATISTICS]", | ||
[][]string{{"1"}}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters