▲ | oulipo2 3 days ago | |
So the alternative would be to just pg_dump / pg_restore the content? Is it an issue? | ||
▲ | eirikbakke 2 days ago | parent | next [-] | |
That is the correct way to do it for PostgreSQL. It does rule out some common SQLite use cases, such as using the database for app persistence. The app would never be able to upgrade the major version of PostgreSQL, unless it bundled PostgreSQL binaries for every major version ever used. | ||
▲ | chucky_z 3 days ago | parent | prev | next [-] | |
If it's more than even like 10GB this is going to take _awhile_. I love the pg_* commands but they ain't exactly the speediest things around. | ||
▲ | amtamt 3 days ago | parent | prev [-] | |
Logical replication would be a good option, with temporarily extra hardware added. |