Tagged Questions
ZooKeeper is a centralized service for maintaining configuration information, naming, providing distributed synchronization, and providing group services.
21
votes
7answers
4k views
Real World Use of Zookeeper
I've been looking at Zookeeper recently and wondered whether anybody was using it currently and what they were specifically using it for storing.
The most common use case is for configuration ...
10
votes
7answers
3k views
Distributed sequence number generation?
I've generally implemented sequence number generation using database sequences in the past.
e.g. Using Postgres SERIAL type http://neilconway.org/docs/sequences/
I'm curious though as how to ...
10
votes
2answers
2k views
Zookeeper/Chubby -vs- MySql NDB
I have been reading the Paxos paper, the FLP theorem etc. recently and evaluating Apache Zookeeper for a project. I have also been going thru Chubby (Google's distributed locking service) and the ...
7
votes
2answers
923 views
ZooKeeper and RabbitMQ/Qpid together - overkill or a good combination?
Greetings,
I'm evaluating some components for a multi-data center distributed system. We're going to be using message queues (via either RabbitMQ or Qpid) so agents can make asynchronous requests to ...
6
votes
3answers
1k views
If you are using Apache ZooKeeper, what do you use it for?
Is someone out there who is using ZooKeeper for their sites? If you do, what do you use it for? i just want to see real word use case?
5
votes
1answer
540 views
ZooKeeper alternative for .net
Is there any alternative of ZooKeeper in .net? Other than database which we all use for similar stuff.
We need it for leader selection and to make sure one item is getting processed only once and ...
4
votes
3answers
180 views
Is there anyway to allow one application thread to continue while at a breakpoint in GDB?
While debugging an application using the Apache Zookeeper C runtime library, I run into issues when setting breakpoints with the default all-stop mode in GDB. With the Zookeeper thread being unable to ...
4
votes
2answers
727 views
Explaining Apache ZooKeeper
I am trying to understand ZooKeeper, how it works and what it does. And I am totally confused. Is there any application which is comparable to ZooKeeper?
If you know, then how would you describe ...
3
votes
2answers
280 views
Something like Apache Zookeeper with no java?
Is there some library or project out there that works like Zookeeper but has no java dependency? I'm looking at putting this on an embedded linux system, and need minimal footprint... something like ...
3
votes
3answers
2k views
Trouble with HBase / Zookeeper installation
I have a problem with installing hbase on Ubuntu 11.04. I'm new to ubuntu and actually a noob! Recently, I installed hadoop-0.20.2 on my laptop with single cluster configurations, and I ran WordCount ...
3
votes
3answers
792 views
ZooKeeper alternatives? (cluster coordination service)
ZooKeeper is a highly available coordination service for data centers. It originated in the Hadoop project. One can implement locking, fail over, leader election, group membership and other ...
3
votes
1answer
655 views
how to integrate cassandra with zookeeper to support transactions
I have a Cassandra cluster and Zookeeper server installed. Now I want to support transactions in cassandra using zookeeper. How do i do that.
Zookeeper creates znodes to perform read and write ...
3
votes
2answers
248 views
what does 2n + 1 quorum mean?
I've come across this when describing the Zookeeper configuration for HBase, and I'm unfamiliar with the term. Does the 'N' have anything to do with the number of nodes in my HBase cluster? Or the ...
3
votes
1answer
452 views
message passing and signaling in distributed system
I have a distributed video analysis system, which is composed of:
1. feature extraction: generated lots of features(20+) from each frame of the video
2. multiple detectors(in different machine):
...
3
votes
2answers
1k views
Has anyone tried using ZooKeeper?
I was currently looking into memcached as way to coordinate a group of server, but came across Apache's ZooKeeper along the way. It looks interesting, and Yahoo uses it, so it shouldn't be bad, but ...
2
votes
1answer
41 views
Zookeeper Solr integration
I have been trying out the Solr trunk suggested in SolrCloud which has ZooKeeper integration.
When I try Example C i.e. Two shard cluster with shard replicas and ZooKeeper ensemble I have not been ...
2
votes
2answers
61 views
Is there any way to configure nginx (or other quick reverse proxy) dynamically?
Suppose we have several identical nodes which are the application servers of some n-tier service. And suppose we use Apache ZooKeeper to keep all the config's of our distributed application. Plus we ...
2
votes
1answer
35 views
How to implement Chubby-style lock sequencers with ZooKeeper?
Google's Chubby distributed lock manager has a feature called "sequencers" that I would like to emulate using ZooKeeper. Is there a known good way to do so?
A sequencer works as follows:
Client ...
2
votes
1answer
60 views
Does it make sense to use Zookeeper to store user permission
I am writing a distributed application involving several front-end node that need to deny action to the user unless they are part of a list.
Right now we have more then 4 of those noded but only a ...
2
votes
1answer
54 views
How to see number of connection in zookeeper
I want to see number of connection in zookeeper runing , as m running through lily , so it is giving exception but want to check number of connection in zookeeper.
...
2
votes
1answer
231 views
Load balanced service using Zookeeper and Thrift
We have a computationally intensive service which is used to do a number of transformations. Its largely computationally bound (CPU bound) process. Essentially what happens is we have a message broker ...
2
votes
0answers
79 views
Configure Zookeeper zoodiscovery centralized and replicated mode
I have a problem configuring Zookeeper to work with zoodiscovery mode centralized and replicated. The guide at http://wiki.eclipse.org/Zookeeper_Based_ECF_Discovery is a little mysterious about that.
...
2
votes
1answer
135 views
OSGi Remote DS product configuration works only inside Eclipse
I'm working on Eclipse STS 2.7.2 with Java JDK 1.6, Windows XP SP3. I work behind a proxy which requires authentication.
I wrote two simple client and server plugins which work using DS and Zookeeper ...
2
votes
1answer
116 views
Data broadcasting between instances of distributed server
I'm trying to get some feedback on the recommendations for a service 'roster' in my specific application. I have a server app that maintains persistant socket connections with clients. I want to ...
2
votes
3answers
859 views
HBase Zookeeper Close Connection
I'm trying to make a simple Web Service that runs on Apache Tomcat and has only one operation thate makes a HBase table scan.
Here is how i get the config:
Configuration config = ...
2
votes
1answer
219 views
How to design task distribution with ZooKeeper
I am planning to write an application which will have distributed Worker processes. One of them will be Leader which will assign tasks to other processes. Designing the Leader elelection process is ...
2
votes
1answer
196 views
Generating unique primary Ids of int32 & int64 sizes
I am developing a social web application using Java and a distributed noSQL DB(Cassandra).
I need to generate ids for new users and posts on the application in the sizes of 32bits and 64 bits ...
2
votes
1answer
89 views
Getting “uninitialized constant Zookeeper (NameError)” while trying to use zookeeper gem
I'm trying to use zookeeper gem and example code from README fails:
require 'rubygems'
require 'zookeeper'
z = Zookeeper.new("localhost:2181")
z.get_children(:path => "/")
causes error:
...
2
votes
1answer
713 views
Can I recursively create a path in Zookeeper?
I'm pulling ZooKeeper into a project for some concurrency management, and the first thing I tried was something that, to me, was quite obvious (using the zkpython binding):
zh = ...
1
vote
2answers
125 views
Is Zookeeper a fit for this scenario?
Here's my requirement.
I have got a bunch of machines in a cluster ( say about 4 - A,B,C,D).
A's job is to poll a database for updates (so, A could be looking for new orders in order table). ...
1
vote
1answer
87 views
Zookeeper Znode
When we use zookeeper for coordination of a set of Hbase nodes , then zookeeper
can be housed on the same nodes as Hbase nodes or it MUST be housed on a seperate cluster?
Also one thing I am not able ...
1
vote
0answers
58 views
Is there a native win32 client implementation of Apache Zookeeper?
I'm trying to evaluate Apache Zookeeper (which looks really cool). Is there a win32 native implementation of the client?
Let me clarify native, I don't mean something that relies upon Cygwin, or ...
1
vote
2answers
114 views
Zookeeper Node strategy to pick up the leader?
Suppose I have 5 node configuration in the Zookeeper {1,2,3,4,5}
Zookeeper says that a leader is elected when a majority of nodes vote for any given node then, the node having majority of nodes is ...
1
vote
1answer
99 views
Zookeeper barrier implementation
I am trying to implement a barrier in Zookeeper. My implementation works all of the time when there are a small number of nodes that need to join to pass the barrier. However, when I test my ...
1
vote
2answers
218 views
How do you backup Zookeeper?
I have read that copying the data directory will work. But, that is a combination of logs and snapshots. How do folks backup a zookeeper infrastructure ? Export ? Dump ? Custom script ? What are the ...
1
vote
1answer
204 views
How is Apache Zookeeper used in sharding?
We are thinking of centralizing cfg information and looks like zookeeper is a good choice. We are also interested in sharding and have a scheme. In the poweredBy[1] saw that Rackspace and Yahoo is ...
1
vote
1answer
408 views
Apache ZooKeeper: How do writes work
Apache ZooKeeper is a kind of high available data-store for small objects. A ZooKeeper cluster consists of some nodes which all keep the whole dataset in their memory. The dataset is called ...
1
vote
2answers
696 views
hbase zookeper quorum
What exactly is zookeper quorum setting in hbase-site.xml ?
Thanks in advance.
1
vote
1answer
171 views
Is there anyway to give a Zookeeper node a NULL ACL via python-bindings?
I'm trying to create a node using the python bindings that are bundled with the zookeeper distribution ( src/contrib/zkpython/ ). Using zookeeper-3.3.1.
The pydoc for create states that if the ACL is ...
1
vote
1answer
1k views
Servicemix 4, DOSGi, and Zookeeper
This is cross posted from the fusesource forum and the servicemmix forum.
I can't get DOSGi working in FUSE. I'm trying to get CXF's DOSGi 1.1-SNAPSHOT with Zookeeper discovery onto FUSE 4.1.0.2. ...
0
votes
3answers
160 views
Request Apache Accumulo error help using Hadoop and Zookeeper in a test environment
I am setting up a test environment using apache accumulo ver 1.4.0, hadoop ver 0.20.2 and zookeeper ver 3.3.3. Please see below for the issue.
Hadoop and Zookeeper work great together, but when I ...
0
votes
2answers
128 views
How to build zookeeper/zkpython in 32bit mode in Mac OS X 10.7 Lion?
I ought to use 32-bit Python in 32-bit mode (due to oracle instantclient-10.2.0.4, which segfaults in 64bit in Mac OS X, but works in 32bit). Everything was fine so far, till I got zookeeper. ...
0
votes
0answers
79 views
HBase Region Server becomes null during bulkloading
While trying to put data to an Hbase table, after mapping and reducing ~50000 th line, the bulk loading crashes. It gives
11/11/29 09:57:50 INFO mapred.JobClient: map 100% reduce 0%
11/11/29 ...
0
votes
1answer
397 views
How to fix the Zookeeper error for Hbase
Main OS is windows 7 64bit. Using VM player to create two vm CentOS 5.6 system. The net connection is bridge. I installed Hbase on both of the CentOS system, one is master, the other is slave. When I ...
0
votes
2answers
67 views
neo4j1.4 ha “Graph database not assigned and no cause of shutdown, maybe not started yet or in the middle of master/slave swap?”
zookeeper 3.3.2 on solaris10 x64
at solaris 10 x64 config:
zookeeper 3.3.2 install /export/zookeeper-3.3.2
3 zookeeper dir
/export/zookeeper1
/export/zookeeper2
/export/zookeeper3
startup.sh
...
0
votes
1answer
165 views
Weird DNS server causes Hadoop and HBase to malfunction
I have a network with some weird (as I understand) DNS server which causes Hadoop or HBase to malfunction.
It resolves my hostname to some address my machine doesn't know about (i.e. there is no such ...
0
votes
1answer
51 views
Not able to set up zookeeper in replicated mode
I am trying to set up zookeeper in replicated node with 3 server.
my config file is like this
tickTime=2000
dataDir=/var/lib/zookeeper/
clientPort=2181
initLimit=5
syncLimit=2
...
0
votes
1answer
91 views
why this error is coming in zookeeper
I installed zookeeper as follows :
wget http://archive.cloudera.com/cdh/3/zookeeper-3.3.3-cdh3u1.tar.gz
here is my zoo.cf
# The number of milliseconds of each tick
tickTime=2000
# The number of ...
0
votes
0answers
80 views
How to make Zookeeper broadcast host's IP instead of hostname when ecf.exported.containerfactoryargs property is not set
Not setting the ecf.exported.containerfactoryargs property when publishing an OSGi service through Zookeeper results in the service being published under the host's hostname instead of its IP.
I see:
...
0
votes
0answers
28 views
best method to start zooKeeper instance in GWT server interface
I am a newbie with GWT and zooKeeper. I am using GWT to create a WebApp which uses some data presented by the ZooKeeper instance.
I am wondering the best way to run a ZooKeeper instance in the ...