点击上方“IT那活儿”公众号,关注后了解更多内容,不管IT什么活儿,干就完了!!!
逻辑复制特点
订阅端可写。
逻辑复制配置步骤
vi postgresql.conf
wal_level = logical
isten_addresses = *
create user repuser replication login connection limit 10 encrypted password ‘123456’;
grant connect on database test to repuser;
grant select on test2 to repuser;
dp+ test2
create publication pub2 for table test2;
--查看已经创建的所有发布:
select * from pg_publication;
create table test2 (id int);
create subscription sub2 connection ‘host=192.168.168.123 port=1921 dbname=test user=repuser’ publication pub2;
select * from pg_subscription;
select (1) from test2;
发布订阅新表操作
grant select on test3 to repuser;
alter publication pub2 add table test3;
create table test3 (id int);
alter subscription sub2 refresh publication;
其他参考语句
SELECT * FROM pg_publication_tables;
alter subscription sub2 disable;
alter subscription sub2 enable;
select * from pg_subscription;
select * from pg_stat_replication;
select * from pg_stat_subscription;
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/129381.html
postgresql 10主备流复制测试 img{ display:block; margin:0 auto !important; width:100%; } body{ width:75%; ...
摘要:在技术探索中,选择了更适合云数据库场景的架构和引擎设计。目前,巨杉数据库付费企业级客户与社区用户总数超过家,并已在超过家强级别的银行保险证券等大型金融机构核心生产业务上线。这一整体架构设计相信是云数据发展的主流架构设计。 分布式数据库技术发展多年,但是在应用、业务的驱动下,分布式数据库的架构一直在不断发展和演进。 开源金融级分布式数据库SequoiaDB,经过6年的研发,坚持从零开始打...
postgresql10主备流复制测试 img{ display:block; margin:0 auto !important; width:100%; } body{ width:75%; ...
摘要:第三章安装和安装安装下载创建用户初始化数据库记录初始化数据库的用户密码也可以使用下面的命令,两者的区别就是一个有初始化密码,一个没有配置启动信息修改配置如下图所示保存退出尝试启 第三章:mysql安装和postgresql安装 mysql安装 下载mysql cd /usr/local/src wget https://dev.mysql.com/get/Downloads/MySQL...
阅读 1250·2023-01-11 13:20
阅读 1559·2023-01-11 13:20
阅读 1013·2023-01-11 13:20
阅读 1680·2023-01-11 13:20
阅读 3972·2023-01-11 13:20
阅读 2520·2023-01-11 13:20
阅读 1356·2023-01-11 13:20
阅读 3486·2023-01-11 13:20