PostgreSQL 10.0 preview 功能增强 - 逻辑复制支持并行COPY初始化数据

本文涉及的产品
云数据库 RDS SQL Server,基础系列 2核4GB
云原生数据库 PolarDB 分布式版,标准版 2核8GB
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
简介:

标签

PostgreSQL , 10.0 , 逻辑复制 , 初始数据COPY


背景

PostgreSQL 已支持逻辑复制,同时对逻辑复制增加了一个初始同步的增强功能,支持通过wal receiver协议跑COPY命令(已封装在逻辑复制的内核代码中),支持多表并行。

也就是说,你可以使用PostgreSQL的逻辑复制,快速的(流式、并行)将一个实例迁移到另一个实例。

Logical replication support for initial data copy  
  
Add functionality for a new subscription to copy the initial data in the  
tables and then sync with the ongoing apply process.  
  
For the copying, add a new internal COPY option to have the COPY source  
data provided by a callback function.  The initial data copy works on  
the subscriber by receiving COPY data from the publisher and then  
providing it locally into a COPY that writes to the destination table.  
  
A WAL receiver can now execute full SQL commands.  This is used here to  
obtain information about tables and publications.  
  
Several new options were added to CREATE and ALTER SUBSCRIPTION to  
control whether and when initial table syncing happens.  
  
Change pg_dump option --no-create-subscription-slots to  
--no-subscription-connect and use the new CREATE SUBSCRIPTION  
... NOCONNECT option for that.  
  
Author: Petr Jelinek <petr.jelinek@2ndquadrant.com>  
Tested-by: Erik Rijkers <er@xs4all.nl>  

逻辑复制包含的初始化COPY的流程如下

主库开启事务快照(快照支持在多个会话间共享, 这也是PostgreSQL的独门秘籍之一), COPY数据, COPY结束后释放快照, 从快照对应的WAL LSN开始接收增量.

/*-------------------------------------------------------------------------  
   2  * tablesync.c  
   3  *    PostgreSQL logical replication  
   4  *  
   5  * Copyright (c) 2012-2016, PostgreSQL Global Development Group  
   6  *  
   7  * IDENTIFICATION  
   8  *    src/backend/replication/logical/tablesync.c  
   9  *  
  10  * NOTES  
  11  *    This file contains code for initial table data synchronization for  
  12  *    logical replication.  
  13  *  
  14  *    The initial data synchronization is done separately for each table,  
  15  *    in separate apply worker that only fetches the initial snapshot data  
  16  *    from the publisher and then synchronizes the position in stream with  
  17  *    the main apply worker.  
  18  *  
  19  *    The are several reasons for doing the synchronization this way:  
  20  *     - It allows us to parallelize the initial data synchronization  
  21  *       which lowers the time needed for it to happen.  
  22  *     - The initial synchronization does not have to hold the xid and LSN  
  23  *       for the time it takes to copy data of all tables, causing less  
  24  *       bloat and lower disk consumption compared to doing the  
  25  *       synchronization in single process for whole database.  
  26  *     - It allows us to synchronize the tables added after the initial  
  27  *       synchronization has finished.  
  28  *  
  29  *    The stream position synchronization works in multiple steps.  
  30  *     - Sync finishes copy and sets table state as SYNCWAIT and waits  
  31  *       for state to change in a loop.  
  32  *     - Apply periodically checks tables that are synchronizing for SYNCWAIT.  
  33  *       When the desired state appears it will compare its position in the  
  34  *       stream with the SYNCWAIT position and based on that changes the  
  35  *       state to based on following rules:  
  36  *        - if the apply is in front of the sync in the wal stream the new  
  37  *          state is set to CATCHUP and apply loops until the sync process  
  38  *          catches up to the same LSN as apply  
  39  *        - if the sync is in front of the apply in the wal stream the new  
  40  *          state is set to SYNCDONE  
  41  *        - if both apply and sync are at the same position in the wal stream  
  42  *          the state of the table is set to READY  
  43  *     - If the state was set to CATCHUP sync will read the stream and  
  44  *       apply changes until it catches up to the specified stream  
  45  *       position and then sets state to READY and signals apply that it  
  46  *       can stop waiting and exits, if the state was set to something  
  47  *       else than CATCHUP the sync process will simply end.  
  48  *     - If the state was set to SYNCDONE by apply, the apply will  
  49  *       continue tracking the table until it reaches the SYNCDONE stream  
  50  *       position at which point it sets state to READY and stops tracking.  
  51  *  
  52  *    The catalog pg_subscription_rel is used to keep information about  
  53  *    subscribed tables and their state and some transient state during  
  54  *    data synchronization is kept in shared memory.  
  55  *  
  56  *    Example flows look like this:  
  57  *     - Apply is in front:  
  58  *        sync:8  
  59  *          -> set SYNCWAIT  
  60  *        apply:10  
  61  *          -> set CATCHUP  
  62  *          -> enter wait-loop  
  63  *        sync:10  
  64  *          -> set READY  
  65  *          -> exit  
  66  *        apply:10  
  67  *          -> exit wait-loop  
  68  *          -> continue rep  
  69  *     - Sync in front:  
  70  *        sync:10  
  71  *          -> set SYNCWAIT  
  72  *        apply:8  
  73  *          -> set SYNCDONE  
  74  *          -> continue per-table filtering  
  75  *        sync:10  
  76  *          -> exit  
  77  *        apply:10  
  78  *          -> set READY  
  79  *          -> stop per-table filtering  
  80  *          -> continue rep  
  81  *-------------------------------------------------------------------------  
  82  */  
  83   

这个patch的讨论,详见邮件组,本文末尾URL。

PostgreSQL社区的作风非常严谨,一个patch可能在邮件组中讨论几个月甚至几年,根据大家的意见反复的修正,patch合并到master已经非常成熟,所以PostgreSQL的稳定性也是远近闻名的。

参考

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=7c4f52409a8c7d85ed169bbbc1f6092274d03920

相关实践学习
使用PolarDB和ECS搭建门户网站
本场景主要介绍基于PolarDB和ECS实现搭建门户网站。
阿里云数据库产品家族及特性
阿里云智能数据库产品团队一直致力于不断健全产品体系,提升产品性能,打磨产品功能,从而帮助客户实现更加极致的弹性能力、具备更强的扩展能力、并利用云设施进一步降低企业成本。以云原生+分布式为核心技术抓手,打造以自研的在线事务型(OLTP)数据库Polar DB和在线分析型(OLAP)数据库Analytic DB为代表的新一代企业级云原生数据库产品体系, 结合NoSQL数据库、数据库生态工具、云原生智能化数据库管控平台,为阿里巴巴经济体以及各个行业的企业客户和开发者提供从公共云到混合云再到私有云的完整解决方案,提供基于云基础设施进行数据从处理、到存储、再到计算与分析的一体化解决方案。本节课带你了解阿里云数据库产品家族及特性。
目录
相关文章
|
9月前
|
SQL Oracle 关系型数据库
实时计算 Flink版操作报错之往GREENPLUM 6 写数据,用postgresql-42.2.9.jar 报 ON CONFLICT (uuid) DO UPDATE SET 语法有问题。怎么解决
在使用实时计算Flink版过程中,可能会遇到各种错误,了解这些错误的原因及解决方法对于高效排错至关重要。针对具体问题,查看Flink的日志是关键,它们通常会提供更详细的错误信息和堆栈跟踪,有助于定位问题。此外,Flink社区文档和官方论坛也是寻求帮助的好去处。以下是一些常见的操作报错及其可能的原因与解决策略。
|
2月前
|
存储 关系型数据库 数据库
【赵渝强老师】PostgreSQL的数据文件
PostgreSQL的物理存储结构主要包括数据文件、日志文件等。数据文件按oid命名,超过1G时自动拆分。通过查询数据库和表的oid,可定位到具体的数据文件。例如,查询数据库oid后,再查询特定表的oid及relfilenode,即可找到该表对应的数据文件位置。
104 1
|
8月前
|
消息中间件 Java 关系型数据库
实时计算 Flink版操作报错合集之从 PostgreSQL 读取数据并写入 Kafka 时,遇到 "initial slot snapshot too large" 的错误,该怎么办
在使用实时计算Flink版过程中,可能会遇到各种错误,了解这些错误的原因及解决方法对于高效排错至关重要。针对具体问题,查看Flink的日志是关键,它们通常会提供更详细的错误信息和堆栈跟踪,有助于定位问题。此外,Flink社区文档和官方论坛也是寻求帮助的好去处。以下是一些常见的操作报错及其可能的原因与解决策略。
1041 0
|
8月前
|
DataWorks 安全 关系型数据库
DataWorks产品使用合集之使用Flink CDC读取PostgreSQL数据时如何指定编码格式
DataWorks作为一站式的数据开发与治理平台,提供了从数据采集、清洗、开发、调度、服务化、质量监控到安全管理的全套解决方案,帮助企业构建高效、规范、安全的大数据处理体系。以下是对DataWorks产品使用合集的概述,涵盖数据处理的各个环节。
118 0
|
6月前
|
SQL 关系型数据库 MySQL
SQL Server、MySQL、PostgreSQL:主流数据库SQL语法异同比较——深入探讨数据类型、分页查询、表创建与数据插入、函数和索引等关键语法差异,为跨数据库开发提供实用指导
【8月更文挑战第31天】SQL Server、MySQL和PostgreSQL是当今最流行的关系型数据库管理系统,均使用SQL作为查询语言,但在语法和功能实现上存在差异。本文将比较它们在数据类型、分页查询、创建和插入数据以及函数和索引等方面的异同,帮助开发者更好地理解和使用这些数据库。尽管它们共用SQL语言,但每个系统都有独特的语法规则,了解这些差异有助于提升开发效率和项目成功率。
700 0
|
6月前
|
SQL 关系型数据库 HIVE
实时计算 Flink版产品使用问题之如何将PostgreSQL数据实时入库Hive并实现断点续传
实时计算Flink版作为一种强大的流处理和批处理统一的计算框架,广泛应用于各种需要实时数据处理和分析的场景。实时计算Flink版通常结合SQL接口、DataStream API、以及与上下游数据源和存储系统的丰富连接器,提供了一套全面的解决方案,以应对各种实时计算需求。其低延迟、高吞吐、容错性强的特点,使其成为众多企业和组织实时数据处理首选的技术平台。以下是实时计算Flink版的一些典型使用合集。
|
6月前
|
开发框架 关系型数据库 数据库
在 PostgreSQL 中,解决图片二进制数据,由于bytea_output参数问题导致显示不正常的问题。
在 PostgreSQL 中,解决图片二进制数据,由于bytea_output参数问题导致显示不正常的问题。
|
8月前
|
关系型数据库 5G PostgreSQL
postgreSQL 导出数据、导入
postgreSQL 导出数据、导入
70 1
|
8月前
|
SQL 关系型数据库 PostgreSQL
PostgreSQL和greenplum的copy命令可以添加字段吗?
【6月更文挑战第5天】PostgreSQL和greenplum的copy命令可以添加字段吗?
107 3
|
8月前
|
监控 关系型数据库 数据库
PostgreSQL和greenplum的copy命令如何使用?
【6月更文挑战第5天】PostgreSQL和greenplum的copy命令如何使用?
253 2

相关产品

  • 云原生数据库 PolarDB
  • 云数据库 RDS PostgreSQL 版