PostgreSQL 大对象迁移
更新时间:2024-03-07 19:06:53
PDF
针对含有大对象表的 PostgreSQL 数据库环境,可选择 pg_dump
和 pg_restore
迁移方式,迁移到 PolonDB 集群中。
注意 |
---|
数据迁移期间,需暂停源数据库与 PolonDB 数据库,请在业务低峰期进行数据迁移,避免数据丢失。 |
前提条件
操作步骤
-
在 PostgreSQL 源数据库,保存数据库结构。
$ pg_dump \ --format = plain \ --schema-only \ --file = schema.sql \ --schema = target_schema \ (可选) postgres:// user:password @ host_ip :5432 / db_name
-
在 PolonDB 集群,使用
psql
连接集群,并创建数据库结构。\ i schema.sql
-
在 PolonDB 集群,运行
create_distributed_table
和create_reference_table
语句,创建数据库对象。说明 若收到有关外键的错误,通常是由于操作顺序有误。可以先删除外键,再重新添加数据库对象。
-
将应用程序置于维护模式,并禁用对源数据库的任何其他写入。
-
在 PostgreSQL 源数据库,使用
pg_dump
将源数据库中的数据保存到磁盘。$ pg_dump \ --format = custom \ --data-only \ --file = data.dump \ --schema = target_schema \ (可选) postgres:// user:password @ host_ip :5432 / db_name
-
使用
pg_restore
将数据导入 PolonDB。$ pg_restore \ --host = host \ --dbname = dbname \ --username = username \ data.dump
-
测试应用,并验证数据完整性。
确认数据无误后,则迁移完成,可启用 PolonDB 数据库。