You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
hexa00
changed the title
Postgress 11 is EOL and out of standard support for RDS causing additional cost
PostgreSQL 11 is EOL and out of standard support for RDS causing additional cost
Aug 14, 2024
You can't just do 11 -> 12 .. needs to be 12.17 and we need to assume that people are on the latest minor for the upgrade to work without issue on aws's side (which is a resonable assumption I think given it upgrades minors automatically)
You also need to add allow_major_version_upgrade = true
And potentially apply_immediately = true
The PostgreSQL version used in the datastore module is currently 11 as seen in :
terraform-aws-metaflow/modules/datastore/variables.tf
Line 14 in ee7093c
However this version is now at EOL and costs extra to be supported by AWS (0.10$/h/VCPU) see:
https://docs.aws.amazon.com/AmazonRDS/latest/PostgreSQLReleaseNotes/postgresql-release-calendar.html
https://aws.amazon.com/rds/postgresql/pricing/
Could this be upgraded ?
The text was updated successfully, but these errors were encountered: