-
Notifications
You must be signed in to change notification settings - Fork 4k
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
chore(rds): deprecate unsupported aurora mysql versions #30282
Conversation
Signed-off-by: Francis <colifran@amazon.com>
Signed-off-by: Francis <colifran@amazon.com>
These changes look good, but additionally for There are a few more added and deprecated versions, I can open another PR like #29422 to add all these changes if you'd like. Otherwise, here is the output of my CLI for all the RDS engine versions if you want to update them yourself:
Note the last deletion, I ran my application on several regions and checked the web console, Postgres 16.3 was only added to classic RDS engines, not to Aurora as far as I can tell (see announcement) |
Signed-off-by: Francis <colifran@amazon.com>
@nmussy thanks for the information! I've deprecated the other two Aurora MySQL versions. I think I'll keep this PR scoped to deprecating unsupported Aurora MySQL versions and let you continue on with the rest in a separate PR. |
writer: rds.ClusterInstance.provisioned('Instance', { | ||
instanceType: ec2.InstanceType.of(ec2.InstanceClass.BURSTABLE3, ec2.InstanceSize.SMALL), | ||
instanceType: ec2.InstanceType.of(ec2.InstanceClass.BURSTABLE3, ec2.InstanceSize.MEDIUM), |
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.
why the size increase?
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.
8.0.mysql_aurora.3.06.0 can't be configured with an instance size small. It'll cause a deployment failure. The instance size has to be medium or large.
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
### Reason for this change The following Aurora MySQL versions are no longer supported by RDS: - 5.7.mysql_aurora.2.07.9 - 5.7.mysql_aurora.2.07.10 - 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 See - https://docs.aws.amazon.com/AmazonRDS/latest/AuroraMySQLReleaseNotes/AuroraMySQL.Updates.30Updates.html ### Description of changes Marked the unsupported Aurora MySQL versions as deprecated and fixed failing integ tests. I have also confirmed that these versions are not configurable via the RDS console. ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
Comments on closed issues and PRs are hard for our team to see. If you need help, please open a new issue that references this one. |
Reason for this change
The following Aurora MySQL versions are no longer supported by RDS:
See - https://docs.aws.amazon.com/AmazonRDS/latest/AuroraMySQLReleaseNotes/AuroraMySQL.Updates.30Updates.html
Description of changes
Marked the unsupported Aurora MySQL versions as deprecated and fixed failing integ tests. I have also confirmed that these versions are not configurable via the RDS console.
Checklist
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license