摘要:
【参考】 https://github.com/citusdata/pg_auto_failover https://zhuanlan.zhihu.com/p/337259025 【环境】 paf1:189 paf2:204 paf3:202 【主要流程】 hostnamectl set-hostn 阅读全文
摘要:
【原文】 https://www.cnblogs.com/study-everyday/p/8629100.html 【解决的问题】 1)使用hash%n,增加节点,全部数据都要改变 在一致性hash环上,增加一个节点x,只影响逆时针一个节点 减少一个节点,影响顺时针下一个节点 2)节点数少,只有2 阅读全文
摘要:
CREATE NODE GROUP ngrp3 WITH (dn1,dn2); CREATE TABLE testgrp3 (id int primary key, note text) DISTRIBUTE BY HASH(id) TO GROUP ngrp3; insert into testg 阅读全文
摘要:
【测试环境】 CREATE NODE GROUP ngrp2 WITH (dn1); CREATE TABLE testgrp2 (id int primary key, note text) DISTRIBUTE BY HASH(id) TO GROUP ngrp2; insert into te 阅读全文
摘要:
1)插入n条数据 insert into test values(3, 'text'); 2)调用链 320行第一次为0,第二次为1 3)实现原理 3.1)roundRobinNode是一个链表 3.2)如果下一个元素不是队尾,取值 如果是队尾,取队头,顺序遍历 阅读全文
摘要:
int main(){ int i=0; for(;i<200000;i++){ char *p = new char[1000 * 1000 * 1000]; } cout<<"i="<<i<<endl; } ./b terminate called after throwing an insta 阅读全文
摘要:
1)映射配置 2)debug配置 注意再次配置mapping yum install gdb-gdbserver -y gdbserver :1234 --attach 3876 阅读全文
摘要:
参考 https://blog.csdn.net/zhaowenzhong/article/details/109186011 测试前 集群一个dn节点 initgtm -Z gtm -D /home/postgres/data/gtm initdb -D /home/postgres/data/c 阅读全文
摘要:
【参考】https://github.com/postgres-x2/postgres-x2https://blog.csdn.net/u014539401/article/details/69733928 【环境流程】git clone https://github.com.cnpmjs.org/ 阅读全文
摘要:
【基础版】 一个gtm,一个cn,一个dn 【参考】 https://www.cnblogs.com/lottu/p/5646486.html 本地配置 F:\2021\typora总结\postgres-xl 阅读全文