I’m in the process of migrating off fly.io as I’m nearing the 500GB limit and can’t figure out if there’s any way to exceed that.
The entirety of the volume is a single large sqlite db - I’m currently using fly ssh console --command 'bash -c "sqlite3 /data/prod.sqlite .dump | gzip -c"' > out.gz
, but this appears to be capped at ~3MB/s per second - I have a machine with 2x CPUs, that’s not running at full load, so I suspect the bottleneck is some network cap.
- Is there a way to do this faster?
- Would a command like
fly ssh sftp
have access to greater network bandwidth?