# 在PostgreSQL中 pg_start_backup 做了什么?HM 2019-07-30 ## pg_start_backup 做一个备份开始标记,还做了一些其他的操作,下面进行探寻. * 函数定义:```postgres=# \df pg_start_backup List of functions Schema | Name | Result data type | Argument data types | Type ------------+-----------------+…
转自:https://www.percona.com/blog/2018/10/19/postgresql-building-enterprise-grade-setup-with-open-source/ Hello everyone, and thank you to those that attended our webinar on Building an Enterprise-grade PostgreSQL setup using open source tools last Wed…
PostgreSQL HA Collect: 1.pgpool 2.Pacemaker + Corosync 3.ecox 4.Patroni: A Template for PostgreSQL HA with ZooKeeper, etcd or Consul Patroni originated as a fork of Governor, the project from Compose. It includes plenty of new features. 5.Governor: A…
etcd:从应用场景到实现原理的全方位解读 ETCD:A highly-available key value store for shared configuration and service discovery. 简单:基于HTTP+JSON的API让你用curl就可以轻松使用. 安全:可选SSL客户认证机制. 快速:每个实例每秒支持一千次写操作. 可信:使用Raft算法充分实现了分布式. 基于Raft强一致性算法的分布式存储仓库 分布式系统中的数据分为控制数据和应用数据.使用etcd的场…
源自公众号:BiggerBoy 一.什么是etcd? etcd 发音为/ˈɛtsiːdiː/,名字的由来,"distributed etc directory.",意思是"分布式etc目录",说明它存的是大型分布式系统的配置信息. 官网的一句话 A distributed, reliable key-value store for the most critical data of a distributed system. 翻译并理解过来就是:一个用于存储分布…
Problems with mmm for mysql posted in MySQL by shlomi 原文:http://code.openark.org/blog/mysql/problems-with-mmm-for-mysql 出于兴趣和研究目的翻译了此文,最近也看了大众点评关于后台使用MMM来做高可用的一些信息(貌似2014年开始转用MHA来做HA),想评估下下MMM在实际生产环境当中的可用性. 正文: 我最近在部署MMM for MySQL的时候遭遇到了一些问题,这使我决定不把它…
键值存储仓库,用于配置共享和服务发现. A highly-available key value store for shared configuration and service discovery. 基本介绍 服务发现 要解决服务发现的问题,需要有下面三大支柱,缺一不可. 一个强一致性.高可用的服务存储目录.基于Raft算法的etcd天生就是这样一个强一致性高可用的服务存储目录. 一种注册服务和监控服务健康状态的机制.用户可以在etcd中注册服务,并且对注册的服务设置key TTL,定时保…