Skip to content

Commit

Permalink
Merge #69725
Browse files Browse the repository at this point in the history
69725: backupccl: add multi-region test to TestRestoreOldVersions r=ajstorm a=otan

Release justification: test-only change

Release note: None

Resolves #67650

Co-authored-by: Oliver Tan <[email protected]>
  • Loading branch information
craig[bot] and otan committed Sep 3, 2021
2 parents 1266aed + 64cb513 commit 42e5f94
Show file tree
Hide file tree
Showing 18 changed files with 96 additions and 0 deletions.
93 changes: 93 additions & 0 deletions pkg/ccl/backupccl/restore_old_versions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import (
"github.com/cockroachdb/cockroach/pkg/base"
"github.com/cockroachdb/cockroach/pkg/clusterversion"
"github.com/cockroachdb/cockroach/pkg/kv"
"github.com/cockroachdb/cockroach/pkg/roachpb"
"github.com/cockroachdb/cockroach/pkg/server"
"github.com/cockroachdb/cockroach/pkg/sql"
"github.com/cockroachdb/cockroach/pkg/sql/catalog"
Expand Down Expand Up @@ -69,6 +70,7 @@ func TestRestoreOldVersions(t *testing.T) {
exceptionalDirs = testdataBase + "/exceptional"
privilegeDirs = testdataBase + "/privileges"
interleavedDirs = testdataBase + "/interleaved"
multiRegionDirs = testdataBase + "/multi-region"
)

t.Run("interleaved", func(t *testing.T) {
Expand Down Expand Up @@ -126,6 +128,17 @@ func TestRestoreOldVersions(t *testing.T) {
}
})

t.Run("multi-region-restore", func(t *testing.T) {
dirs, err := ioutil.ReadDir(multiRegionDirs)
require.NoError(t, err)
for _, dir := range dirs {
require.True(t, dir.IsDir())
exportDir, err := filepath.Abs(filepath.Join(multiRegionDirs, dir.Name()))
require.NoError(t, err)
t.Run(dir.Name(), runOldVersionMultiRegionTest(exportDir))
}
})

// exceptional backups are backups that were possible to generate on old
// versions, but are now disallowed, but we should check that we fail
// gracefully with them.
Expand Down Expand Up @@ -321,6 +334,86 @@ func restoreOldVersionTestWithInterleave(exportDir string) func(t *testing.T) {
}
}

func runOldVersionMultiRegionTest(exportDir string) func(t *testing.T) {
return func(t *testing.T) {
const numNodes = 9
dir, dirCleanupFn := testutils.TempDir(t)
defer dirCleanupFn()
ctx := context.Background()

params := make(map[int]base.TestServerArgs, numNodes)
for i := 0; i < 9; i++ {
var region string
switch i / 3 {
case 0:
region = "europe-west2"
case 1:
region = "us-east1"
case 2:
region = "us-west1"
}
params[i] = base.TestServerArgs{
Locality: roachpb.Locality{
Tiers: []roachpb.Tier{
{Key: "region", Value: region},
},
},
ExternalIODir: dir,
}
}

tc := testcluster.StartTestCluster(t, numNodes, base.TestClusterArgs{
ServerArgsPerNode: params,
})
defer tc.Stopper().Stop(ctx)
require.NoError(t, os.Symlink(exportDir, filepath.Join(dir, "external_backup_dir")))

sqlDB := sqlutils.MakeSQLRunner(tc.Conns[0])

var unused string
var importedRows int
sqlDB.QueryRow(t, `RESTORE DATABASE multi_region_db FROM $1`, `nodelocal://0/external_backup_dir`).Scan(
&unused, &unused, &unused, &importedRows, &unused, &unused,
)
const totalRows = 12
if importedRows != totalRows {
t.Fatalf("expected %d rows, got %d", totalRows, importedRows)
}
sqlDB.Exec(t, `USE multi_region_db`)
sqlDB.CheckQueryResults(t, `select table_name, locality FROM [show tables] ORDER BY table_name;`, [][]string{
{`tbl_global`, `GLOBAL`},
{`tbl_primary_region`, `REGIONAL BY TABLE IN PRIMARY REGION`},
{`tbl_regional_by_row`, `REGIONAL BY ROW`},
{`tbl_regional_by_table`, `REGIONAL BY TABLE IN "us-east1"`},
})
sqlDB.CheckQueryResults(t, `SELECT region FROM [SHOW REGIONS FROM DATABASE] ORDER BY region`, [][]string{
{`europe-west2`},
{`us-east1`},
{`us-west1`},
})
sqlDB.CheckQueryResults(t, `SELECT * FROM tbl_primary_region ORDER BY pk`, [][]string{
{`1`, `a`},
{`2`, `b`},
{`3`, `c`},
})
sqlDB.CheckQueryResults(t, `SELECT * FROM tbl_global ORDER BY pk`, [][]string{
{`4`, `d`},
{`5`, `e`},
{`6`, `f`},
})
sqlDB.CheckQueryResults(t, `SELECT * FROM tbl_regional_by_table ORDER BY pk`, [][]string{
{`7`, `g`},
{`8`, `h`},
{`9`, `i`},
})
sqlDB.CheckQueryResults(t, `SELECT crdb_region, * FROM tbl_regional_by_row ORDER BY pk`, [][]string{
{`europe-west2`, `10`, `j`},
{`us-east1`, `11`, `k`},
{`us-west1`, `12`, `l`},
})
}
}

func restoreOldVersionTest(exportDir string) func(t *testing.T) {
return func(t *testing.T) {
params := base.TestServerArgs{}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ڪ�
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ڪ�
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
V�f�
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 42e5f94

Please sign in to comment.