By default MySQL Group Replication runs in Single-Primary mode. And it’s the best option and the option you should use.
But sometimes it might happen that in very specific cases you would like to run you MGR Cluster in Multi-Primary mode: writing simultaneously on all the nodes member of the Group.

Java 在 Log4j 日志中显示首字母,如 com.abc.def.ClassName 日志中显示为 c.a.d.ClassName,方便调试,以及减少记录大小。

In this blog post, I’d like to show some relationships of “Group Replication” and “InnoDB Cluster“. My hope is that I will be able to draw meaningful correlations and attempt to simplify our way of thinking about these setups.

MySQL 的 Group Replication 功能,可以在一组 MySQL 服务器之间实现自动主机选举,形成一主多从结构。经过高级配置后,可以实现多主多从结构。
MySQL Router 是一个轻量级透明中间件,可以自动获取上述集群的状态,规划 SQL 语句,分配到合理的 MySQL 后端进行执行。
MySQL Shell 是一个同时支持 JavaScript 和 SQL 的交互程序,可以快速配置 InnoDB Cluster。

合理的 JedisPool 资源池参数设置能为业务使用 Redis 保驾护航,本文将对 JedisPool 的使用、资源池的参数进行详细说明,最后给出“最合理”配置。
并同时对 Jedis 使用中常见的问题进行了汇总,以方便后期查看。
