-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing tables to globally routed list in schema tracker only if they are not already present in a VSchema #17371
Open
rohit-nayak-ps
wants to merge
23
commits into
vitessio:main
Choose a base branch
from
planetscale:rohit/global-routing-tables-not-in-vschema
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+846
−154
Open
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
82c9fec
Add missing tables to globally routed list in schema tracker only if …
rohit-nayak-ps 9a0aa1e
Address review comment: needed to reverse the bools passed because th…
rohit-nayak-ps e4ad00f
Fix incorrect logical check
rohit-nayak-ps 6082da9
Add new logic for adding unique tables from unsharded keyspaces witho…
rohit-nayak-ps c441772
Add vtgate flag to turn on/off the logic to mark unsharded tables wit…
rohit-nayak-ps be4da02
Add vtgate flag to turn on/off the logic to mark unsharded tables wit…
rohit-nayak-ps 8ccdee3
Fix flags test
rohit-nayak-ps f5e273c
Refactor e2e test
rohit-nayak-ps dcaf58b
Add global routing e2e to CI
rohit-nayak-ps 045275c
Add Extended unit test case
rohit-nayak-ps 7645ff5
Add more cases
rohit-nayak-ps 2544005
Add more cases
rohit-nayak-ps c12d77f
More tets cases
rohit-nayak-ps 90e251b
Remove incorrect comments from unit tests. Delete log lines added for…
rohit-nayak-ps d8eb0bd
Address review comments
rohit-nayak-ps 3b38cc4
Refactor e2e as suggested
rohit-nayak-ps ca7fdf4
feat: use the existing keyspace struct instead of creating a new one
GuptaManan100 b145017
Address review comments
rohit-nayak-ps 8b024c4
Remove flag
rohit-nayak-ps b08c868
Recreate flag help
rohit-nayak-ps 2d34688
Fix failing tests
rohit-nayak-ps 4a8724c
Fix help files which were previously incorrectly generated using an o…
rohit-nayak-ps 969b81d
Remove unnecessary setting of keyspace name as performance opt
rohit-nayak-ps File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,284 @@ | ||
/* | ||
Copyright 2024 The Vitess Authors. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package vreplication | ||
|
||
import ( | ||
"bytes" | ||
"fmt" | ||
"strings" | ||
"testing" | ||
"text/template" | ||
"time" | ||
|
||
"github.com/stretchr/testify/require" | ||
|
||
vttablet "vitess.io/vitess/go/vt/vttablet/common" | ||
) | ||
|
||
type tgrTestConfig struct { | ||
ksU1, ksU2, ksS1 string | ||
ksU1Tables, ksU2Tables, ksS1Tables []string | ||
} | ||
|
||
var grTestConfig tgrTestConfig = tgrTestConfig{ | ||
ksU1: "unsharded1", | ||
ksU2: "unsharded2", | ||
ksS1: "sharded1", | ||
ksU1Tables: []string{"t1", "t2", "t3"}, | ||
ksU2Tables: []string{"t2", "t4", "t5"}, | ||
ksS1Tables: []string{"t2", "t4", "t6"}, | ||
} | ||
|
||
type grTestExpectations struct { | ||
postKsU1, postKsU2, postKsS1 func(t *testing.T) | ||
} | ||
|
||
// Scope helpers to this test file so we don't pollute the global namespace. | ||
type grHelpers struct { | ||
t *testing.T | ||
} | ||
|
||
func (h *grHelpers) getSchema(tables []string) string { | ||
var createSQL string | ||
for _, table := range tables { | ||
createSQL += "CREATE TABLE " + table + " (id int primary key, val varchar(32)) ENGINE=InnoDB;\n" | ||
} | ||
return createSQL | ||
} | ||
|
||
func (h *grHelpers) getShardedVSchema(tables []string) string { | ||
const vSchemaTmpl = `{ | ||
"sharded": true, | ||
"vindexes": { | ||
"reverse_bits": { | ||
"type": "reverse_bits" | ||
} | ||
}, | ||
"tables": { | ||
{{- range $i, $table := .Tables}} | ||
{{- if gt $i 0}},{{end}} | ||
"{{ $table }}": { | ||
"column_vindexes": [ | ||
{ | ||
"column": "id", | ||
"name": "reverse_bits" | ||
} | ||
] | ||
} | ||
{{- end}} | ||
} | ||
} | ||
` | ||
type VSchemaData struct { | ||
Tables []string | ||
} | ||
tmpl, err := template.New("vschema").Parse(vSchemaTmpl) | ||
require.NoError(h.t, err) | ||
var buf bytes.Buffer | ||
err = tmpl.Execute(&buf, VSchemaData{tables}) | ||
require.NoError(h.t, err) | ||
return buf.String() | ||
} | ||
|
||
func (h *grHelpers) insertData(t *testing.T, keyspace string, table string, id int, val string) { | ||
vtgateConn, cancel := getVTGateConn() | ||
defer cancel() | ||
_, err := vtgateConn.ExecuteFetch(fmt.Sprintf("insert into %s.%s(id, val) values(%d, '%s')", | ||
keyspace, table, id, val), 1, false) | ||
require.NoError(t, err) | ||
} | ||
|
||
func (h *grHelpers) isGlobal(t *testing.T, tables []string, expectedVal string) bool { | ||
vtgateConn, cancel := getVTGateConn() | ||
defer cancel() | ||
var err error | ||
asExpected := true | ||
for _, table := range tables { | ||
for _, target := range []string{"", "@primary", "@replica"} { | ||
_, err = vtgateConn.ExecuteFetch(fmt.Sprintf("use %s", target), 1, false) | ||
require.NoError(t, err) | ||
rs, err := vtgateConn.ExecuteFetch(fmt.Sprintf("select * from %s", table), 1, false) | ||
require.NoError(t, err) | ||
gotVal := rs.Rows[0][1].ToString() | ||
if gotVal != expectedVal { | ||
asExpected = false | ||
} | ||
} | ||
} | ||
return asExpected | ||
} | ||
|
||
func (h *grHelpers) isNotGlobal(t *testing.T, tables []string) bool { | ||
vtgateConn, cancel := getVTGateConn() | ||
defer cancel() | ||
var err error | ||
asExpected := true | ||
for _, table := range tables { | ||
for _, target := range []string{"", "@primary", "@replica"} { | ||
_, err = vtgateConn.ExecuteFetch(fmt.Sprintf("use %s", target), 1, false) | ||
require.NoError(t, err) | ||
_, err := vtgateConn.ExecuteFetch(fmt.Sprintf("select * from %s", table), 1, false) | ||
if err == nil || !strings.Contains(err.Error(), fmt.Sprintf("table %s not found", table)) { | ||
asExpected = false | ||
} | ||
} | ||
} | ||
return asExpected | ||
} | ||
|
||
func (h *grHelpers) isAmbiguous(t *testing.T, tables []string) bool { | ||
vtgateConn, cancel := getVTGateConn() | ||
defer cancel() | ||
var err error | ||
asExpected := true | ||
for _, table := range tables { | ||
for _, target := range []string{"", "@primary", "@replica"} { | ||
_, err = vtgateConn.ExecuteFetch(fmt.Sprintf("use %s", target), 1, false) | ||
require.NoError(t, err) | ||
_, err := vtgateConn.ExecuteFetch(fmt.Sprintf("select * from %s", table), 1, false) | ||
if err == nil || !strings.Contains(err.Error(), "ambiguous") { | ||
asExpected = false | ||
} | ||
} | ||
} | ||
return asExpected | ||
} | ||
|
||
func (h *grHelpers) getExpectations() *map[bool]*grTestExpectations { | ||
var exp = make(map[bool]*grTestExpectations) | ||
exp[false] = &grTestExpectations{ | ||
postKsU1: func(t *testing.T) { | ||
require.True(t, h.isGlobal(t, []string{"t1", "t2", "t3"}, grTestConfig.ksU1)) | ||
}, | ||
postKsU2: func(t *testing.T) { | ||
require.True(t, h.isGlobal(t, []string{"t1", "t3"}, grTestConfig.ksU1)) | ||
require.True(t, h.isGlobal(t, []string{"t4", "t5"}, grTestConfig.ksU2)) | ||
require.True(t, h.isAmbiguous(t, []string{"t2"})) | ||
}, | ||
postKsS1: func(t *testing.T) { | ||
require.True(t, h.isGlobal(t, []string{"t2", "t4"}, grTestConfig.ksS1)) | ||
require.True(t, h.isGlobal(t, []string{"t1", "t3"}, grTestConfig.ksU1)) | ||
require.True(t, h.isGlobal(t, []string{"t5"}, grTestConfig.ksU2)) | ||
require.True(t, h.isGlobal(t, []string{"t6"}, grTestConfig.ksS1)) | ||
}, | ||
} | ||
exp[true] = &grTestExpectations{ | ||
postKsU1: func(t *testing.T) { | ||
require.True(t, h.isGlobal(t, []string{"t1", "t2", "t3"}, grTestConfig.ksU1)) | ||
}, | ||
postKsU2: func(t *testing.T) { | ||
require.True(t, h.isGlobal(t, []string{"t1", "t3"}, grTestConfig.ksU1)) | ||
require.True(t, h.isGlobal(t, []string{"t4", "t5"}, grTestConfig.ksU2)) | ||
require.True(t, h.isAmbiguous(t, []string{"t2"})) | ||
}, | ||
postKsS1: func(t *testing.T) { | ||
require.True(t, h.isAmbiguous(t, []string{"t2", "t4"})) | ||
require.True(t, h.isGlobal(t, []string{"t1", "t3"}, grTestConfig.ksU1)) | ||
require.True(t, h.isGlobal(t, []string{"t5"}, grTestConfig.ksU2)) | ||
}, | ||
} | ||
return &exp | ||
|
||
} | ||
|
||
func (h *grHelpers) getUnshardedVschema(unshardedHasVSchema bool, tables []string) string { | ||
if !unshardedHasVSchema { | ||
return "" | ||
} | ||
vschema := `{"tables": {` | ||
for i, table := range tables { | ||
if i != 0 { | ||
vschema += `,` | ||
} | ||
vschema += fmt.Sprintf(`"%s": {}`, table) | ||
} | ||
vschema += `}}` | ||
return vschema | ||
} | ||
|
||
func (h *grHelpers) rebuildGraphs(t *testing.T, keyspaces []string) { | ||
var err error | ||
for _, ks := range keyspaces { | ||
err = vc.VtctldClient.ExecuteCommand("RebuildKeyspaceGraph", ks) | ||
require.NoError(t, err) | ||
} | ||
require.NoError(t, err) | ||
err = vc.VtctldClient.ExecuteCommand("RebuildVSchemaGraph") | ||
require.NoError(t, err) | ||
} | ||
|
||
func TestGlobalRouting(t *testing.T) { | ||
h := grHelpers{t} | ||
exp := *h.getExpectations() | ||
for unshardedHasVSchema, funcs := range exp { | ||
require.NotNil(t, funcs) | ||
testGlobalRouting(t, unshardedHasVSchema, funcs) | ||
} | ||
} | ||
|
||
func testGlobalRouting(t *testing.T, unshardedHasVSchema bool, funcs *grTestExpectations) { | ||
h := grHelpers{t: t} | ||
setSidecarDBName("_vt") | ||
vttablet.InitVReplicationConfigDefaults() | ||
|
||
vc = NewVitessCluster(t, nil) | ||
defer vc.TearDown() | ||
zone1 := vc.Cells["zone1"] | ||
config := grTestConfig | ||
vc.AddKeyspace(t, []*Cell{zone1}, config.ksU1, "0", h.getUnshardedVschema(unshardedHasVSchema, config.ksU1Tables), | ||
h.getSchema(config.ksU1Tables), 1, 0, 100, nil) | ||
verifyClusterHealth(t, vc) | ||
for _, table := range config.ksU1Tables { | ||
h.insertData(t, config.ksU1, table, 1, config.ksU1) | ||
vtgateConn, cancel := getVTGateConn() | ||
waitForRowCount(t, vtgateConn, config.ksU1+"@replica", table, 1) | ||
cancel() | ||
} | ||
keyspaces := []string{config.ksU1} | ||
h.rebuildGraphs(t, keyspaces) | ||
// FIXME: figure out how to ensure vtgate has processed the updated vschema | ||
time.Sleep(5 * time.Second) | ||
funcs.postKsU1(t) | ||
|
||
vc.AddKeyspace(t, []*Cell{zone1}, config.ksU2, "0", h.getUnshardedVschema(unshardedHasVSchema, config.ksU2Tables), | ||
h.getSchema(config.ksU2Tables), 1, 0, 200, nil) | ||
verifyClusterHealth(t, vc) | ||
for _, table := range config.ksU2Tables { | ||
h.insertData(t, config.ksU2, table, 1, config.ksU2) | ||
vtgateConn, cancel := getVTGateConn() | ||
waitForRowCount(t, vtgateConn, config.ksU2+"@replica", table, 1) | ||
cancel() | ||
} | ||
keyspaces = append(keyspaces, config.ksU2) | ||
h.rebuildGraphs(t, keyspaces) | ||
time.Sleep(5 * time.Second) | ||
funcs.postKsU2(t) | ||
|
||
vc.AddKeyspace(t, []*Cell{zone1}, config.ksS1, "-80,80-", h.getShardedVSchema(config.ksS1Tables), h.getSchema(config.ksS1Tables), | ||
1, 0, 300, nil) | ||
verifyClusterHealth(t, vc) | ||
for _, table := range config.ksS1Tables { | ||
h.insertData(t, config.ksS1, table, 1, config.ksS1) | ||
vtgateConn, cancel := getVTGateConn() | ||
waitForRowCount(t, vtgateConn, config.ksS1+"@replica", table, 1) | ||
cancel() | ||
} | ||
keyspaces = append(keyspaces, config.ksS1) | ||
h.rebuildGraphs(t, keyspaces) | ||
time.Sleep(5 * time.Second) | ||
funcs.postKsS1(t) | ||
} |
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,13 @@ | ||
create table u2_a | ||
( | ||
id bigint, | ||
a bigint, | ||
primary key (id) | ||
) Engine = InnoDB; | ||
|
||
create table u2_b | ||
( | ||
id bigint, | ||
b varchar(50), | ||
primary key (id) | ||
) Engine = InnoDB; |
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The code logic looks 💯 correct!