Fahad Abid
Fahad Abid

Reputation: 1092

Google Cloud SQL instance upscale and downscale with Zero downtime

I have an application using the Google Cloud PostgreSQL service. Higher availability is already enabled on the instance . Now I want to upscale/downscale the number of core and RAM of instance with zero downtime.Is there any approach to achieve zero downtime.Also there is read replica create with the instance. In case of up scaling I have to upscale the replica first and then the main instance. Second in case of down scaling I just down grade the main instance as replica can not be downscale.

Upvotes: 3

Views: 2721

Answers (1)

Miguel
Miguel

Reputation: 996

It is not possible to edit instances with zero downtime, the best way to handle that would be being prepared to have downtime, that can also happen during maintenance windows.

Regarding upscaling/downscaling, you can do that with the number of cores and its memory, both for master and read replicas, what you cannot downscale is the SSD Storage size

Upvotes: 3

Related Questions