-
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
Move towards MySQL 8.0 as the default template generation #11153
Move towards MySQL 8.0 as the default template generation #11153
Conversation
This upgrades the remaining things to Ubuntu 20.04 and makes MySQL 8.0 the default we run tests against. We still have tests for MySQL 5.7 but those are now explicitly opted into. This should finish up the Ubuntu 20.04 upgrade and also makes things easier for the future when we need to upgrade again. Signed-off-by: Dirkjan Bussink <[email protected]>
Review ChecklistHello reviewers! 👋 Please follow this checklist when reviewing this Pull Request. General
Bug fixes
Non-trivial changes
New/Existing features
Backward compatibility
|
…neration Signed-off-by: deepthi <[email protected]>
…for 8.0 Signed-off-by: deepthi <[email protected]>
…neration Signed-off-by: deepthi <[email protected]>
… 45 mins Signed-off-by: deepthi <[email protected]>
…nly need this for vtorc, but I've made the change to the template so all tests get it. Signed-off-by: deepthi <[email protected]>
…neration Signed-off-by: deepthi <[email protected]>
test/ci_workflow_gen.go
Outdated
@@ -121,15 +120,14 @@ var ( | |||
"vreplication_cellalias", |
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.
Line 117: do we still need a separate mysql80
test?
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.
Everything else looks good to me!
@@ -93,7 +93,7 @@ func TestReadTopologyInstanceBufferable(t *testing.T) { | |||
assert.Contains(t, primaryInstance.InstanceAlias, "zone1") | |||
assert.NotEqual(t, 0, primaryInstance.ServerID) | |||
assert.Greater(t, len(primaryInstance.ServerUUID), 10) | |||
assert.Contains(t, primaryInstance.Version, "5.7") | |||
assert.Contains(t, primaryInstance.Version, "8.0") |
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.
We can use assert.Regexp(t,
[58].[07].*, replicaInstance.Version)
instead. This will make this test work with both 5.7 and 8.0
Signed-off-by: deepthi <[email protected]>
…neration Signed-off-by: deepthi <[email protected]>
Signed-off-by: deepthi <[email protected]>
I've addressed the feedback, and except for the known issue with vtbackup_transform, tests are passing. |
…80-default-ci-template-generation Signed-off-by: Rameez Sajwani <[email protected]>
Signed-off-by: Rameez Sajwani <[email protected]>
Signed-off-by: Rameez Sajwani <[email protected]>
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.
❤️
I was unable to backport this Pull Request to the following branches: |
…1153) * Move towards MySQL 8.0 as the default template generation This upgrades the remaining things to Ubuntu 20.04 and makes MySQL 8.0 the default we run tests against. We still have tests for MySQL 5.7 but those are now explicitly opted into. This should finish up the Ubuntu 20.04 upgrade and also makes things easier for the future when we need to upgrade again. Signed-off-by: Dirkjan Bussink <[email protected]> * CI: rename shard vtorc_8.0 to vtorc_5.7, change expected test output for 8.0 Signed-off-by: deepthi <[email protected]> * CI: increase timeout for 8.0 tests on the actual test step from 30 to 45 mins Signed-off-by: deepthi <[email protected]> * CI: increase timeout to 45 minutes for mysql57 tests too. We really only need this for vtorc, but I've made the change to the template so all tests get it. Signed-off-by: deepthi <[email protected]> * CI: fix vtorc test to work with both 5.7 and 8.0 Signed-off-by: deepthi <[email protected]> * CI: missed docker flag in mysql57 template, one more fix to vtorc test Signed-off-by: deepthi <[email protected]> * removing spaces from pb file Signed-off-by: Rameez Sajwani <[email protected]> * removing spaces in pb file part 2 Signed-off-by: Rameez Sajwani <[email protected]> Signed-off-by: Dirkjan Bussink <[email protected]> Signed-off-by: deepthi <[email protected]> Signed-off-by: Rameez Sajwani <[email protected]> Co-authored-by: deepthi <[email protected]> Co-authored-by: Rameez Sajwani <[email protected]> Signed-off-by: Rameez Sajwani <[email protected]>
…1153) * Move towards MySQL 8.0 as the default template generation This upgrades the remaining things to Ubuntu 20.04 and makes MySQL 8.0 the default we run tests against. We still have tests for MySQL 5.7 but those are now explicitly opted into. This should finish up the Ubuntu 20.04 upgrade and also makes things easier for the future when we need to upgrade again. Signed-off-by: Dirkjan Bussink <[email protected]> * CI: rename shard vtorc_8.0 to vtorc_5.7, change expected test output for 8.0 Signed-off-by: deepthi <[email protected]> * CI: increase timeout for 8.0 tests on the actual test step from 30 to 45 mins Signed-off-by: deepthi <[email protected]> * CI: increase timeout to 45 minutes for mysql57 tests too. We really only need this for vtorc, but I've made the change to the template so all tests get it. Signed-off-by: deepthi <[email protected]> * CI: fix vtorc test to work with both 5.7 and 8.0 Signed-off-by: deepthi <[email protected]> * CI: missed docker flag in mysql57 template, one more fix to vtorc test Signed-off-by: deepthi <[email protected]> * removing spaces from pb file Signed-off-by: Rameez Sajwani <[email protected]> * removing spaces in pb file part 2 Signed-off-by: Rameez Sajwani <[email protected]> Signed-off-by: Dirkjan Bussink <[email protected]> Signed-off-by: deepthi <[email protected]> Signed-off-by: Rameez Sajwani <[email protected]> Co-authored-by: deepthi <[email protected]> Co-authored-by: Rameez Sajwani <[email protected]>
…1153) * Move towards MySQL 8.0 as the default template generation This upgrades the remaining things to Ubuntu 20.04 and makes MySQL 8.0 the default we run tests against. We still have tests for MySQL 5.7 but those are now explicitly opted into. This should finish up the Ubuntu 20.04 upgrade and also makes things easier for the future when we need to upgrade again. Signed-off-by: Dirkjan Bussink <[email protected]> * CI: rename shard vtorc_8.0 to vtorc_5.7, change expected test output for 8.0 Signed-off-by: deepthi <[email protected]> * CI: increase timeout for 8.0 tests on the actual test step from 30 to 45 mins Signed-off-by: deepthi <[email protected]> * CI: increase timeout to 45 minutes for mysql57 tests too. We really only need this for vtorc, but I've made the change to the template so all tests get it. Signed-off-by: deepthi <[email protected]> * CI: fix vtorc test to work with both 5.7 and 8.0 Signed-off-by: deepthi <[email protected]> * CI: missed docker flag in mysql57 template, one more fix to vtorc test Signed-off-by: deepthi <[email protected]> * removing spaces from pb file Signed-off-by: Rameez Sajwani <[email protected]> * removing spaces in pb file part 2 Signed-off-by: Rameez Sajwani <[email protected]> Signed-off-by: Dirkjan Bussink <[email protected]> Signed-off-by: deepthi <[email protected]> Signed-off-by: Rameez Sajwani <[email protected]> Co-authored-by: deepthi <[email protected]> Co-authored-by: Rameez Sajwani <[email protected]>
…11619) * Move towards MySQL 8.0 as the default template generation (#11153) * Move towards MySQL 8.0 as the default template generation This upgrades the remaining things to Ubuntu 20.04 and makes MySQL 8.0 the default we run tests against. We still have tests for MySQL 5.7 but those are now explicitly opted into. This should finish up the Ubuntu 20.04 upgrade and also makes things easier for the future when we need to upgrade again. Signed-off-by: Dirkjan Bussink <[email protected]> * CI: rename shard vtorc_8.0 to vtorc_5.7, change expected test output for 8.0 Signed-off-by: deepthi <[email protected]> * CI: increase timeout for 8.0 tests on the actual test step from 30 to 45 mins Signed-off-by: deepthi <[email protected]> * CI: increase timeout to 45 minutes for mysql57 tests too. We really only need this for vtorc, but I've made the change to the template so all tests get it. Signed-off-by: deepthi <[email protected]> * CI: fix vtorc test to work with both 5.7 and 8.0 Signed-off-by: deepthi <[email protected]> * CI: missed docker flag in mysql57 template, one more fix to vtorc test Signed-off-by: deepthi <[email protected]> * removing spaces from pb file Signed-off-by: Rameez Sajwani <[email protected]> * removing spaces in pb file part 2 Signed-off-by: Rameez Sajwani <[email protected]> Signed-off-by: Dirkjan Bussink <[email protected]> Signed-off-by: deepthi <[email protected]> Signed-off-by: Rameez Sajwani <[email protected]> Co-authored-by: deepthi <[email protected]> Co-authored-by: Rameez Sajwani <[email protected]> * fixing template files to default to mysql80 Signed-off-by: Rameez Sajwani <[email protected]> * changing update statement to alter Signed-off-by: Rameez Sajwani <[email protected]> * Avoid deadlocks related to 0 receiver behavior (#10132) * Prevent deadlocks related to 0 receiver behavior Signed-off-by: Matt Lord <[email protected]> * Update test tables to use poller_idx Signed-off-by: Matt Lord <[email protected]> * Minor changes after mutex usage review in message manager + cache Signed-off-by: Matt Lord <[email protected]> * Use atomics for receiver count and messages pending Signed-off-by: Matt Lord <[email protected]> * Don't take exclusive lock when in fast path Signed-off-by: Matt Lord <[email protected]> * Update tests to use the new recommended message table structure See: vitessio/website#1015 Signed-off-by: Matt Lord <[email protected]> * Correct tests Signed-off-by: Matt Lord <[email protected]> * Update e2e test to use new recommended table structure Signed-off-by: Matt Lord <[email protected]> * Fix TestMessageStreamingPlan test Signed-off-by: Matt Lord <[email protected]> * Fix godriver/TestStreamMessaging test Signed-off-by: Matt Lord <[email protected]> * Split streamMu into streamProcessingMu and lastPollPositionMu Signed-off-by: Matt Lord <[email protected]> * Poller cannot take main lock w/o having X stream processing lock Signed-off-by: Matt Lord <[email protected]> * Improve the comments a bit Signed-off-by: Matt Lord <[email protected]> * Hold the main mutex during Add This is for safe concurrency with the last receiver unsubscribing Signed-off-by: Matt Lord <[email protected]> * Changes after pair reviewing with Sugu Signed-off-by: Matt Lord <[email protected]> * Use my GitHub handle for the self reference Signed-off-by: Matt Lord <[email protected]> Signed-off-by: Rameez Sajwani <[email protected]> * remove unwanted sleep Signed-off-by: Rameez Sajwani <[email protected]> * Fix failures Signed-off-by: Rameez Sajwani <[email protected]> * Fix backup tests Signed-off-by: Rameez Sajwani <[email protected]> * fix vtgate_gen4 error Signed-off-by: Rameez Sajwani <[email protected]> * upgrading to mysql 8.0 using vinalla mysql Signed-off-by: Rameez Sajwani <[email protected]> * pin to specific version 8.0.25 Signed-off-by: Rameez Sajwani <[email protected]> * Try to pin mysql version to 8.0.25 using tar file Signed-off-by: Rameez Sajwani <[email protected]> * Fix bug in last commit for 8.0.25 Signed-off-by: Rameez Sajwani <[email protected]> * fixing template files to use mysql8.0.25 Signed-off-by: Rameez Sajwani <[email protected]> * fixing community version Signed-off-by: Rameez Sajwani <[email protected]> * removing all mysql version before installation Signed-off-by: Rameez Sajwani <[email protected]> * moving cluster 11 to self host Signed-off-by: Rameez Sajwani <[email protected]> * trying different combination since mysql is not getting installed correctly Signed-off-by: Rameez Sajwani <[email protected]> * use tar instead of deb file Signed-off-by: Rameez Sajwani <[email protected]> * remove mysql stop statement Signed-off-by: Rameez Sajwani <[email protected]> * setting vt_mysql_root Signed-off-by: Rameez Sajwani <[email protected]> * moving export to right place Signed-off-by: Rameez Sajwani <[email protected]> * change template to accomodate tar file download Signed-off-by: Rameez Sajwani <[email protected]> * fixing mysql80 cluster Signed-off-by: Rameez Sajwani <[email protected]> * Adding mysql to the path env variable Signed-off-by: Rameez Sajwani <[email protected]> * fixing shardedpitr_tls test Signed-off-by: Rameez Sajwani <[email protected]> * fix upgrade-downgrade test Signed-off-by: Rameez Sajwani <[email protected]> * adjust epected AUTO_INCREMENT value Signed-off-by: Shlomi Noach <[email protected]> * removed 'expected_table_structure' files because there are different outputs in mysql57 and in mysql80 Signed-off-by: Shlomi Noach <[email protected]> * adding mysql version in workflow logs Signed-off-by: Rameez Sajwani <[email protected]> * move to utuntu 18 for upgrade-downgrade test Signed-off-by: Rameez Sajwani <[email protected]> Signed-off-by: Dirkjan Bussink <[email protected]> Signed-off-by: deepthi <[email protected]> Signed-off-by: Rameez Sajwani <[email protected]> Signed-off-by: Matt Lord <[email protected]> Signed-off-by: Shlomi Noach <[email protected]> Co-authored-by: Dirkjan Bussink <[email protected]> Co-authored-by: deepthi <[email protected]> Co-authored-by: Matt Lord <[email protected]> Co-authored-by: Shlomi Noach <[email protected]>
* Move towards MySQL 8.0 as the default template generation (#11153) * Move towards MySQL 8.0 as the default template generation This upgrades the remaining things to Ubuntu 20.04 and makes MySQL 8.0 the default we run tests against. We still have tests for MySQL 5.7 but those are now explicitly opted into. This should finish up the Ubuntu 20.04 upgrade and also makes things easier for the future when we need to upgrade again. Signed-off-by: Dirkjan Bussink <[email protected]> * CI: rename shard vtorc_8.0 to vtorc_5.7, change expected test output for 8.0 Signed-off-by: deepthi <[email protected]> * CI: increase timeout for 8.0 tests on the actual test step from 30 to 45 mins Signed-off-by: deepthi <[email protected]> * CI: increase timeout to 45 minutes for mysql57 tests too. We really only need this for vtorc, but I've made the change to the template so all tests get it. Signed-off-by: deepthi <[email protected]> * CI: fix vtorc test to work with both 5.7 and 8.0 Signed-off-by: deepthi <[email protected]> * CI: missed docker flag in mysql57 template, one more fix to vtorc test Signed-off-by: deepthi <[email protected]> * removing spaces from pb file Signed-off-by: Rameez Sajwani <[email protected]> * removing spaces in pb file part 2 Signed-off-by: Rameez Sajwani <[email protected]> Signed-off-by: Dirkjan Bussink <[email protected]> Signed-off-by: deepthi <[email protected]> Signed-off-by: Rameez Sajwani <[email protected]> Co-authored-by: deepthi <[email protected]> Co-authored-by: Rameez Sajwani <[email protected]> * changing update statement to alter Signed-off-by: Rameez Sajwani <[email protected]> * Adding mysql 8.0.25 Signed-off-by: Rameez Sajwani <[email protected]> * fix junit Signed-off-by: Rameez Sajwani <[email protected]> * fixing failures Signed-off-by: Rameez Sajwani <[email protected]> * fixing more unit tests Signed-off-by: Rameez Sajwani <[email protected]> * fix selfhost test Signed-off-by: Rameez Sajwani <[email protected]> * Fixing selfhosted workflows Signed-off-by: Rameez Sajwani <[email protected]> * fixing vreplication_v2 Signed-off-by: Rameez Sajwani <[email protected]> * removing cluster 12 and 18 from selfhosted Signed-off-by: Rameez Sajwani <[email protected]> * manual fixing some workflows Signed-off-by: Rameez Sajwani <[email protected]> * making vreplication_v2 exactly like upstream Signed-off-by: Rameez Sajwani <[email protected]> * Moving all the workflow to latest mysql version (vanilla) Signed-off-by: Rameez Sajwani <[email protected]> * remove port restrictions Signed-off-by: Rameez Sajwani <[email protected]> * tmp fix for vreplication_v2 Signed-off-by: Rameez Sajwani <[email protected]> * making vreplication_v2 to previous version Signed-off-by: Rameez Sajwani <[email protected]> * correcting typo Signed-off-by: Rameez Sajwani <[email protected]> * mvoing vreplication_v2 to selfhost Signed-off-by: Rameez Sajwani <[email protected]> * change docker image to mysql80 Signed-off-by: Rameez Sajwani <[email protected]> * removing limited source from vrepl Signed-off-by: Rameez Sajwani <[email protected]> * revert back last commit changes Signed-off-by: Rameez Sajwani <[email protected]> * test: fix aggregation test Signed-off-by: Harshit Gangal <[email protected]> * removing ptrtls Signed-off-by: Rameez Sajwani <[email protected]> * remove pitrTls tests Signed-off-by: Rameez Sajwani <[email protected]> * changing source/destination to mysql8.0 for vreplication Signed-off-by: Rameez Sajwani <[email protected]> * remove unwanted workflows Signed-off-by: Rameez Sajwani <[email protected]> * adding timeout to stress test Signed-off-by: Rameez Sajwani <[email protected]> * feeback through code review Signed-off-by: Rameez Sajwani <[email protected]> Signed-off-by: Dirkjan Bussink <[email protected]> Signed-off-by: deepthi <[email protected]> Signed-off-by: Rameez Sajwani <[email protected]> Signed-off-by: Harshit Gangal <[email protected]> Co-authored-by: Dirkjan Bussink <[email protected]> Co-authored-by: deepthi <[email protected]> Co-authored-by: Harshit Gangal <[email protected]>
This upgrades the remaining things to Ubuntu 20.04 and makes MySQL 8.0 the default we run tests against. We still have tests for MySQL 5.7 but those are now explicitly opted into.
This should finish up the Ubuntu 20.04 upgrade and also makes things easier for the future when we need to upgrade again.
It is also marked as back port since we want to keep this updated on back ports as well or otherwise we're be blocked in the somewhat near future when 18.04 is deprecated. We probably want to look at changing the default maybe back there to 5.7 (to minimize other test changes that happened in previous PRs like #11118) but that's a separate step to look at during back porting.
Related Issue(s)
Part of the upgrade already started with #11026 but keeping things sensible in the CI generation scripts is much easier with this upgrade we think.
Checklist