This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-07-31
Channels
- # beginners (9)
- # boot (38)
- # cider (7)
- # cljs-dev (181)
- # cljsrn (49)
- # clojure (136)
- # clojure-italy (44)
- # clojure-losangeles (1)
- # clojure-news (1)
- # clojure-russia (3)
- # clojure-sanfrancisco (1)
- # clojure-serbia (2)
- # clojure-spec (28)
- # clojure-uk (41)
- # clojure-ukraine (1)
- # clojurescript (103)
- # core-async (6)
- # core-logic (46)
- # cursive (5)
- # data-science (8)
- # datascript (6)
- # datomic (5)
- # emacs (35)
- # events (3)
- # jobs (2)
- # jobs-rus (2)
- # juxt (6)
- # lumo (7)
- # off-topic (101)
- # om (6)
- # onyx (6)
- # parinfer (38)
- # pedestal (5)
- # perun (1)
- # planck (4)
- # protorepl (4)
- # re-frame (62)
- # reagent (20)
- # remote-jobs (1)
- # ring-swagger (1)
- # spacemacs (16)
- # unrepl (43)
- # vim (13)
Hi all! If i have configure 3 zoo's in my peer-config and one of then goes offline, what happen to this peer connection? Its need all 3 online to succefully connect? Or gave me connecting refuse?
@lellis ZooKeeper only needs a majority of nodes online. If Onyx fails to connect for some reason, it’ll bounce it’s connection and retry.
Ok but if i have these config: :zookeeper/address "zoo1.cdg.vpc:2181,zoo2.cdg.vpc:2181,zoo3.cdg.vpc:2181"
and zoo3 its offline, my peer will connect or will wait and retry until zoo3 come online again?
It should connect if everything is configured correctly.
@lellis this explains it https://stackoverflow.com/questions/13022244/zookeeper-reliability-three-versus-five-nodes
I believe you will need 3 servers to initially be up for the quorum to be established, for it to still work when one of them goes down.