【发布时间】:2023-04-07 21:21:01
【问题描述】:
在documentation 中关于 WSO2 数据库的集群/高可用性,示例是使用 MySQL。 是否有任何信息或任何人使用 Postgres? 高可用性如何实施? 例如使用 pgpool-II?
【问题讨论】:
标签: postgresql wso2 cluster-computing high-availability failover
在documentation 中关于 WSO2 数据库的集群/高可用性,示例是使用 MySQL。 是否有任何信息或任何人使用 Postgres? 高可用性如何实施? 例如使用 pgpool-II?
【问题讨论】:
标签: postgresql wso2 cluster-computing high-availability failover
您需要额外的工具来在 Postgres 中实施高可用性(故障转移、故障回复、切换) - 您知道这一点。这是谷歌关于他们如何使用 Patroni 或 pg_auto_failover 或磁盘复制和 Linux 工具的非常好的插图文章:https://cloud.google.com/architecture/architectures-high-availability-postgresql-clusters-compute-engine
以下是可用 HA 工具的列表 - 特别是 repmgr 值得您关注:https://www.percona.com/blog/2018/09/28/high-availability-for-enterprise-grade-postgresql-environments/
这里解释了他们如何在 Azure 中进行 HA:https://www.citusdata.com/blog/2019/05/30/introducing-pg-auto-failover/
【讨论】: