Currently I have configured 3 node MYSQL InnoDB Cluster with two routers. Is it possible to remove one of the router from cluster? what are the implications ? using cluster.listRouters() I could see two entries, is there a similar command to remove router.
Thanks.
dbdemon
7,0394 gold badges21 silver badges40 bronze badges
asked Dec 4, 2021 at 4:16
chandanchandan
1 Answer 1
A single router == a "single-point-of-failure". That is, if it dies, the entire database is inaccessible.
(HA usually implies no single-point-of-failure.)
answered Dec 4, 2021 at 17:12
lang-sql