Ah so I did miss something then. That’s funny, I actually remember scanning the “get your processes here” post but IIRC based on the “processes” name and the old post date I figured it was some kind of sugar for a supervisor process thing, which I didn’t want. Now actually reading more closely I see it does actually spin up different microVMs. Thanks!
One question about this - can I write something like this in my fly.toml and it’ll work?
[deploy]
processes = ["jobdrain"]
strategy = "rolling"
I need to use a rolling deploy strategy for my job drain because it uses a Postgres advisory lock and it can’t handle n>1 instances running (so canary deploys fail). Canary for the other stuff is fine though
Ooh good to know