Hi,
Does upgrading a a disk being used by postgres (9.1, on Ubuntu) with the following process sound safe?
- pg_start_backup
- Take a filesystem snapshot (of a volume containing postgres data but not pg_xlog)
- Bring a new higher performing disk online from snapshot
- pg_ctl stop
- switch disks (umount/remount at same mountpoint)
- pg_ctl start
- pg_stop_backup
This seems like an odd use case because pg_start_backup is designed for performing on-line backups, but I think it will give me minimum downtime.
Thanks,
Jacob