Is there a way to set the VM size for the release_command execution machine?

I have the following configuration:

[processes]
  worker = "/app/bin/worker"
  www = "/app/bin/www"
[[vm]]
  cpu_kind = "performance"
  cpus = 4
  memory = 8192
  processes = ["fly_app_release_command"]
[[vm]]
  cpu_kind = "performance"
  cpus = 1
  memory = 1024
  processes = ["www", "worker"]

However, the release_command is running on a performance-1x machine.

How can I make it run on a performance-4x machine instead?

Hey @jechol,

Your memory size for performance-1x is set to 1024. I don’t think this is right. It should be 2048. This is mentioned in the machine sizing guide-Machine Sizing · Fly Docs

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.