Note:
This topic has been translated from a Chinese forum by GPT and might contain errors.Original topic: 如何使用Tidis构建高可用的Redis集群?

I have recently been using the latest version: Tidis + three-node TiKV + three-node PD, aiming to replace my original single-node Redis to achieve a highly available Redis setup. However, when I use one Tidis node + three-node TiKV + three-node PD, I encounter write failures (I only have one type of sorted set read/write operation). I suspect there might be an issue with my Tidis setup because the three-node TiKV, along with three PD nodes and three TiDB nodes, has been running with read/write operations for nearly 20 days without any problems.
Here is my Tidis + three-node architecture diagram:
Part of my Tidis config.toml configuration is as follows:
[server]
listen = “0.0.0.0”
port = 6666
pd_addrs = “172.216.9.81:2379,172.216.9.82:2379,172.216.9.83:2379”
I hope someone who is currently using Tidis can provide some guidance. Thank you very much!