Launched an app on 1 machine.
The app has a volume for a SQLite database with one table and about 21 rows. At most the data will get modified about once a year.
I’d like to add another machine to another region where more traffic has started to originate form.
I thought I’d use LiteFS across the machines so I don’t have to copy sqlite files.
I went through the process shown here.
Edited my fly.toml to have this in it.
[mounts]
source = "litefs"
destination = "/var/lib/litefs"
processes = ["app"]
When I got to deploy I get the following error:
Error: machine 2874290a005918 [app] can't update the attached volume litefs with name 'vol_r6gzommj2gz7d3dv' by 'cb_checkout_sqlite'
Presumably because the machine is still attached to my old volume cb_checkout_sqlite
?
Do I need to delete the machine and volume and redeploy?