Yosef, There isnt a limit on the number of ZK node numbers directly. We do have a limit on data calls to ZK. So in your case if you have too many direct children of a single znode (say millions), the getChildren calls return an error. I'd advise against having too many direct chidlren for a znode. Bucketing the users might make sense for you if you have too many users.
thanks mahadev On Thu, Aug 11, 2011 at 2:19 AM, yosefarr <[email protected]> wrote: > Hi, > If i want to save users that connect to my system as zookeeper nodes and > each user has some proprties - connection id, user name and etc: > i need to know if there is a Limitation on ZooKeeper nodes numbers? > > /server1 > /user-1 > /user-2 > ........ > /user-n > > Thanks, > Yosef. > > -- > View this message in context: > http://zookeeper-user.578899.n2.nabble.com/ZooKeeper-Limitation-tp6675643p6675643.html > Sent from the zookeeper-user mailing list archive at Nabble.com.
