> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fly.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Scale Postgres VMs

<Warning>
  **This page is archived.** Fly Postgres (unmanaged) is no longer maintained, and Fly.io Support is not able to provide support or guidance for it. We now offer [Fly.io Managed Postgres](/postgres), our fully-managed database service that handles all aspects of running production PostgreSQL databases.

  These pages are kept for reference and are not listed in the navigation. The full set is indexed on the [Fly Postgres (Unmanaged)](/unmanaged-postgres) page.
</Warning>

See [Monitoring](/unmanaged-postgres/managing/monitoring) for how to check the current sizes of the VMs in your Postgres cluster.

<Warning>
  **Before scaling a Postgres VM:** Consider the [Postgres configuration parameters](/unmanaged-postgres/managing/configuration-tuning) of your cluster, and adjust the resources accordingly. In particular, if the `shared-buffers` value is proportionally too high for the VM RAM, then a Postgres VM might fail its health checks.

  <br />

  <br />

  If you're scaling your VMs up, then scale the VMs first before adjusting the Postgres config to match. If you're scaling down, then adjust the cluster's Postgres parameters to match the reduced resources before scaling the VMs.
</Warning>

Scale VM resources for each Machine in the cluster with the [`flyctl machine update`](/flyctl/cmd/fly_machine_update) command. Here's an example of scaling RAM to 1GB on a machine:

```bash theme={null}
fly machine update e784079b449483 --vm-memory 1024 --app pg-test
```

You can use [`fly machine status`](/flyctl/cmd/fly_machine_status) again to confirm the new scale of the Machine.

## HA clusters

If you have more than one instance in the primary region cluster, scale these VMs identically; they are meant to be interchangeable so the cluster can fail over in case of trouble.

## Postgres resource parameters

When you created your Fly Postgres cluster, certain Postgres configuration parameters were set to sensible values for the resources being provisioned. This means you may want, or need, to change them if you scale your VM resources. Read [Configuration Tuning](/unmanaged-postgres/managing/configuration-tuning) before scaling down.
