我想设置一个具有故障转移功能的IOT报告数据库。想法是拥有一个包含2个节点的群集,一个在数据中心中,一个在家里。 如果“家庭”失去了互联网连接,它将继续运行并在 在线状态下,“数据中心”将与离线更改保持一致。 现在,我阅读了rethinkdb文档,您至少需要3个节点才能使故障转移正常运行。 所以问题是,我的方案是否仅可以在2个节点上使用,如果可以,怎么办?
答案 0 :(得分:1)
根据文档https://www.rethinkdb.com/docs/start-a-server/
First, start RethinkDB on the first machine: $ rethinkdb --bind all Then start RethinkDB on the second machine: $ rethinkdb --join IP_OF_FIRST_MACHINE:29015 --bind all