-
Notifications
You must be signed in to change notification settings - Fork 42
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
MM-57261: Use a valid database engine version for MySQL #710
Conversation
According to the describe-db-engine-versions subcommand of the aws cli, the only patch version for 3.05 is 3.05.2, but we're upgrading to the newer 3.06 nonetheless: > aws --profile=mm-loadtest rds describe-db-engine-versions --engine aurora-mysql | jq '.DBEngineVersions[].EngineVersion' "5.7.mysql_aurora.2.07.9" "5.7.mysql_aurora.2.07.10" "5.7.mysql_aurora.2.11.1" "5.7.mysql_aurora.2.11.2" "5.7.mysql_aurora.2.11.3" "5.7.mysql_aurora.2.11.4" "5.7.mysql_aurora.2.11.4" "5.7.mysql_aurora.2.12.0" "5.7.mysql_aurora.2.12.1" "8.0.mysql_aurora.3.01.0" "8.0.mysql_aurora.3.01.1" "8.0.mysql_aurora.3.02.0" "8.0.mysql_aurora.3.02.1" "8.0.mysql_aurora.3.02.2" "8.0.mysql_aurora.3.02.3" "8.0.mysql_aurora.3.03.0" "8.0.mysql_aurora.3.03.1" "8.0.mysql_aurora.3.03.2" "8.0.mysql_aurora.3.03.3" "8.0.mysql_aurora.3.04.0" "8.0.mysql_aurora.3.04.1" "8.0.mysql_aurora.3.04.2" "8.0.mysql_aurora.3.05.2" "8.0.mysql_aurora.3.06.0"
@@ -54,7 +54,7 @@ variable "db_cluster_identifier" { | |||
variable "db_engine_version" { | |||
type = map(any) | |||
default = { | |||
"aurora-mysql" = "8.0.mysql_aurora.3.05.0" | |||
"aurora-mysql" = "8.0.mysql_aurora.3.06.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.
Can we use 3.05.2
instead? The idea was to use the same MySQL patch version as our min supported one which is 8.0.32
.
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.
Ah, of course, hadn't thought of that. Let me change it.
MySQL minimum supported version is 8.0.32
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.
Thanks!
I'll test this, merge and cherry-pick to |
* Use a valid database engine version for MySQL According to the describe-db-engine-versions subcommand of the aws cli, the only patch version for 3.05 is 3.05.2: > aws --profile=mm-loadtest rds describe-db-engine-versions --engine aurora-mysql | jq '.DBEngineVersions[].EngineVersion' "5.7.mysql_aurora.2.07.9" "5.7.mysql_aurora.2.07.10" "5.7.mysql_aurora.2.11.1" "5.7.mysql_aurora.2.11.2" "5.7.mysql_aurora.2.11.3" "5.7.mysql_aurora.2.11.4" "5.7.mysql_aurora.2.11.4" "5.7.mysql_aurora.2.12.0" "5.7.mysql_aurora.2.12.1" "8.0.mysql_aurora.3.01.0" "8.0.mysql_aurora.3.01.1" "8.0.mysql_aurora.3.02.0" "8.0.mysql_aurora.3.02.1" "8.0.mysql_aurora.3.02.2" "8.0.mysql_aurora.3.02.3" "8.0.mysql_aurora.3.03.0" "8.0.mysql_aurora.3.03.1" "8.0.mysql_aurora.3.03.2" "8.0.mysql_aurora.3.03.3" "8.0.mysql_aurora.3.04.0" "8.0.mysql_aurora.3.04.1" "8.0.mysql_aurora.3.04.2" "8.0.mysql_aurora.3.05.2" "8.0.mysql_aurora.3.06.0" * Use 3.05.2 to match our minimum supported version MySQL minimum supported version is 8.0.32
* Use a valid database engine version for MySQL According to the describe-db-engine-versions subcommand of the aws cli, the only patch version for 3.05 is 3.05.2: > aws --profile=mm-loadtest rds describe-db-engine-versions --engine aurora-mysql | jq '.DBEngineVersions[].EngineVersion' "5.7.mysql_aurora.2.07.9" "5.7.mysql_aurora.2.07.10" "5.7.mysql_aurora.2.11.1" "5.7.mysql_aurora.2.11.2" "5.7.mysql_aurora.2.11.3" "5.7.mysql_aurora.2.11.4" "5.7.mysql_aurora.2.11.4" "5.7.mysql_aurora.2.12.0" "5.7.mysql_aurora.2.12.1" "8.0.mysql_aurora.3.01.0" "8.0.mysql_aurora.3.01.1" "8.0.mysql_aurora.3.02.0" "8.0.mysql_aurora.3.02.1" "8.0.mysql_aurora.3.02.2" "8.0.mysql_aurora.3.02.3" "8.0.mysql_aurora.3.03.0" "8.0.mysql_aurora.3.03.1" "8.0.mysql_aurora.3.03.2" "8.0.mysql_aurora.3.03.3" "8.0.mysql_aurora.3.04.0" "8.0.mysql_aurora.3.04.1" "8.0.mysql_aurora.3.04.2" "8.0.mysql_aurora.3.05.2" "8.0.mysql_aurora.3.06.0" * Use 3.05.2 to match our minimum supported version MySQL minimum supported version is 8.0.32
Summary
According to the
describe-db-engine-versions
subcommand of the aws cli (the source of truth for the valid versions), the only patch version for 3.05 is 3.05.2,but we're upgrading to the newer 3.06 nonetheless:Ticket Link
https://mattermost.atlassian.net/browse/MM-57261