* Initial Implementation of partial movetables. Implement cross-shard queries that obey shard routing rules. Refactor rss updation with routed shard and add to multi col resolution. Run vtgate and reservedconn tests for both regular and with a partially moved shard. Add ability to run tests with partial keyspaces by adding to a list in the CI generator. Implement that in test.go and cluster setup. Revert previous iteration of running partial keyspace tests in parallel. One test is failing: TestSetSystemVarAutocommitWithConnError. Add partial vtgate misc test Add partial keyspace tests to vtgate transaction Add vtgate queries partial keyspace tests Review and fix skipped tests where applicable. Refactor to allow conditional skipping of tests for partial keyspaces only so that other tests work exactly as earlier without specifying the DbName, for example Add move shards example Cache routing tables and minor refactor. Move move_shards example Signed-off-by: Rohit Nayak <rohit@planetscale.com> Add lookup index to move shards example. Comment error logs while trying to delete from missing _vt.vdiff table Signed-off-by: Rohit Nayak <rohit@planetscale.com> Remove move shards demo example Signed-off-by: Rohit Nayak <rohit@planetscale.com> Add vtgate flag to enable shard routing. Update tests to get vtparams based on partial keyspace setting, so that global routing continues to be tested as earlier without DbName being specified Signed-off-by: Rohit Nayak <rohit@planetscale.com> To create subsequent partial movetables workflows we should ignore previous partial movetables (now frozen) Signed-off-by: Rohit Nayak <rohit@planetscale.com> Remove vdiff2 deletes since they were failing unit tests etc Signed-off-by: Rohit Nayak <rohit@planetscale.com> Use vtgate flag to enable shard routing rules Signed-off-by: Rohit Nayak <rohit@planetscale.com> Fix incorrect test setup Signed-off-by: Rohit Nayak <rohit@planetscale.com> Expect modified frozen query Signed-off-by: Rohit Nayak <rohit@planetscale.com> set vtgate param --enable_shard_routing in partial movetables test Signed-off-by: Rohit Nayak <rohit@planetscale.com> Fix failing tests Signed-off-by: Rohit Nayak <rohit@planetscale.com> Fix flags test Signed-off-by: Rohit Nayak <rohit@planetscale.com> Use VTParams helper for partial keyspace tests Signed-off-by: Rohit Nayak <rohit@planetscale.com> Specify vtParams.DBName for partial keyspace queries Signed-off-by: Rohit Nayak <rohit@planetscale.com> Self-review. Remove bypass caching. Signed-off-by: Rohit Nayak <rohit@planetscale.com> * Report partial SwitchTraffic results Signed-off-by: Matt Lord <mattalord@gmail.com> * Try to address most of the upstream PR review comments From: https://github.com/vitessio/vitess/pull/9987 Signed-off-by: Matt Lord <mattalord@gmail.com> * Enforce proper routing for partial migrations Signed-off-by: Matt Lord <mattalord@gmail.com> Signed-off-by: Rohit Nayak <rohit@planetscale.com> * Minor changes after self review Signed-off-by: Matt Lord <mattalord@gmail.com> Signed-off-by: Rohit Nayak <rohit@planetscale.com> * Account for local timezone in check for vdiff progress Signed-off-by: Rohit Nayak <rohit@planetscale.com> * Update go version in workflows. Fix gofmt issue Signed-off-by: Rohit Nayak <rohit@planetscale.com> * Fix failing CI tests Signed-off-by: Rohit Nayak <rohit@planetscale.com> * Comment failing test for partial keyspaces Signed-off-by: Rohit Nayak <rohit@planetscale.com> * Fix TestVtGateVtExplain by specifying dbname Signed-off-by: Rohit Nayak <rohit@planetscale.com> * Fix leftover debug code Signed-off-by: Rohit Nayak <rohit@planetscale.com> * Move partial keyspace tests to a single shard. Refactor test.go to use multiple config.json files Signed-off-by: Rohit Nayak <rohit@planetscale.com> * Address review comments Signed-off-by: Rohit Nayak <rohit@planetscale.com> * Address review comments Signed-off-by: Rohit Nayak <rohit@planetscale.com> * Improve test skip comments Signed-off-by: Rohit Nayak <rohit@planetscale.com> * gofmt Signed-off-by: Rohit Nayak <rohit@planetscale.com> * Fix failing tests Signed-off-by: Rohit Nayak <rohit@planetscale.com> * Address review comments Signed-off-by: Rohit Nayak <rohit@planetscale.com> * Try TestFunctionInDefault for partial keyspaces. Update skip comment. Signed-off-by: Rohit Nayak <rohit@planetscale.com> * Delete temporary log lines Signed-off-by: Rohit Nayak <rohit@planetscale.com> Signed-off-by: Rohit Nayak <rohit@planetscale.com> Signed-off-by: Matt Lord <mattalord@gmail.com> Co-authored-by: Matt Lord <mattalord@gmail.com> |
||
---|---|---|
.. | ||
backup | ||
cellalias | ||
cluster | ||
clustertest | ||
docker | ||
encryption | ||
keyspace | ||
messaging | ||
migration | ||
mysqlctl | ||
mysqlctld | ||
mysqlserver | ||
onlineddl | ||
preparestmt | ||
recovery | ||
reparent | ||
schemadiff/vrepl | ||
sharded | ||
stress | ||
tabletgateway | ||
tabletmanager | ||
topoconncache | ||
topotest | ||
utils | ||
vault | ||
versionupgrade | ||
vreplication | ||
vtcombo | ||
vtctldweb | ||
vtgate | ||
vtgr | ||
vtorc | ||
README.md |
README.md
This document describe the testing strategy we use for all Vitess components, and the progression in scope / complexity.
As Vitess developers, our goal is to have great end to end test coverage. In the past, these tests were mostly written in python 2.7 is coming to end of life we are moving all of those into GO.
End to End Tests
These tests are meant to test end-to-end behaviors of the Vitess ecosystem, and complement the unit tests. For instance, we test each RPC interaction independently (client to vtgate, vtgate to vttablet, vttablet to MySQL, see previous sections). But is also good to have an end-to-end test that validates everything works together.
These tests almost always launch a topology service, a few mysqld instances, a few vttablets, a vtctld process, a few vtgates, ... They use the real production processes, and real replication. This setup is mandatory for properly testing re-sharding, cluster operations, ... They all however run on the same machine, so they might be limited by the environment.
Strategy
All the end to end test are placed under path go/test/endtoend. The main purpose of grouping them together is to make sure we have single place for reference and to combine similar test to run them in the same cluster and save test running time.
Setup
All the tests should be launching a real cluster just like the production setup and execute the tests on that setup followed by a teardown of all the services.
The cluster launch functions are provided under go/test/endtoend/cluster. This is still work in progress so feel free to add new function as required or update the existing ones.
In general the cluster is build in following order
- Define Keyspace
- Define Shards
- Start topology service [default etcd]
- Start vtctld client
- Start required mysqld instances
- Start corresponding vttablets (atleast 1 primary and 1 replica)
- Start Vtgate
A good example to refer will be go/test/endtoend/clustertest
Pre-Requisite
Make sure you have vitess binary available in bin folder. If not, then you can run ./bootstrap.sh
follow by make build
& source build.env
.
To make it easier to re-run test please add following to you bash profile.
export VTROOT=/<vitess path>/vitess
export VTDATAROOT=${VTROOT}/vtdataroot
export PATH=${VTROOT}/bin:${PATH}