Apache ZooKeeper is a distributed service that provides configuration information storage, naming, synchronization, and group services.
0
votes
0answers
7 views
Hbase MasterNotRunningException though Hmaster, regionserver, and Zookeeper are up
I have started hbase and all of the daemons are running.
$ jps
8482 HQuorumPeer
25105 RemoteMavenServer
9133 SecondaryNameNode
11883 HRegionServer
13793 Jps
8545 NameNode
8572 HMaster
11519 Main
...
0
votes
0answers
8 views
After restarting arch linux, zookeeper deletes all nodes I have added
I am configuring my zookeeper nodes and when I restart my machine all the nodes are gone. I am using the command "create /[node_name] [data]"
0
votes
0answers
6 views
Zookeeper Queue with Lock
As we see in Java Linked Blocking Queue, take() method takes lock/gaurds the tail node before dequeueing from queue. So no 2 threads will take the same node from the tail. In case of zookeeper, all ...
0
votes
0answers
13 views
Solrcloud delete collection bug?
First,I create a collection called usercollection
http://xxxxx/solr/admin/collections?action=CREATE&name=usercollection&numShards=3&replicationFactor=3&maxShardsPerNode=3
Then I ...
0
votes
0answers
33 views
Hadoop/Hbase NullPointer Error returned from Client Connection (after a long time-out)
Trying to make connection to my hbase/hadoop local single user server and I get this error after doing a "HBaseAdmin.tableExists":
13/05/15 11:37:19 INFO zookeeper.ZooKeeper: Session: ...
0
votes
2answers
33 views
Ruby - Zookeeper gem version wrong number of arguments (3 for 4) (ArgumentError)
I have installed ruby 2.0.0p195 and following gem
gem install net-ssh
gem install rdoc
gem install zookeeper
Ruby Zookeeper client installed successfully (ver - 1.4.4)
But when I execute the ...
0
votes
0answers
28 views
What is the zookeeper version supports SASL Authentication [closed]
Does zookeeper 3.3.6 support SASL Authentication? If not what is the stable zookeeper version which supports SASL?
0
votes
0answers
14 views
Have zookeeper sequential number continuous since 3.4.x?
In my project, I need the latest sequential number without get children nodes, because there are too many children nodes.
1
vote
0answers
31 views
Zookeeper Producer Consumer
I have few doubts on how producer consumer recipe will work with Zookeeper.
All the examples I have seen so far have producers and consumers in the same java processes as separate thread. But the ...
1
vote
1answer
31 views
Zooekeeper persistence on the cloud (esp. azure)
How do you keep persistent zookeeper data that will survive server restarts/outages on cloud environment? By default zookeeper persists to local disk. Is there any cloud-based implementation, ...
0
votes
1answer
69 views
What's the recommended ElasticSearch deployment on Windows Azure?
Bearing in mind that the ElasticSearch-Zookeeper plugin doesn't support v0.90 release.
With unicast, what's your strategy on updating your list of IPs? I.e. when upgrading/scaling-up/down.
What ...
1
vote
1answer
37 views
Zookeeper client node did not reconnect after session expired
I intercepted the connection between Zookeeper server and the client node using a custom TCP Monitor (Similar to TCPMon). I stopped the TCPMon and restarted it. When I restarted the TCPMon after the ...
0
votes
0answers
19 views
How to connect to multiple zookeeper ensembles with different authentication settings?
I need to connect to two zookeeper ensembles.
Ensemble 1 uses SASL DigestLoginModule authentication:
jaas.conf:
Client {
org.apache.zookeeper.server.auth.DigestLoginModule required
...
0
votes
1answer
37 views
Race condition in ZooKeeper and Python based message queue
I've been evaluating ZooKeeper as a simple message queue and I've written two very simple scripts: mq feeder and mq consumer. The feeder, below, is inly pushing 20 jobs to the queue and then is ...
1
vote
1answer
49 views
unable to determine zookeeper ensemble health
I setup a 3 node Zookeeper cdh4 ensemble on RHEL 5.5 machines. I have started the service by running zkServer.sh on each of the nodes. ZooKeeper instance is running on all the nodes, but how do I know ...
2
votes
1answer
55 views
Managing configuration files across multiple servers
Running a Rails application on multiple servers (~20), I want to able to manage the configurartion files (mainly *.yml, but also SSL pem/certs files and other text based) from a single location such ...
1
vote
1answer
33 views
JVM heap size zookeeper
I have Zookeeper and Cassandra both running on the same machine. I have 8GB heap size allocated to Cassandra. I dont have any settings for my Zookeeper heap size, by default it would take 2GB(64-bit ...
2
votes
0answers
46 views
Apache Zookeeper: distribution of nodes across data centers
I am working on a brand new SolrCloud - ZooKeeper infrastructure.
Some background information:
all other services (mostly web site infrastructure) are distributed across two data centers, with ...
0
votes
4answers
54 views
Java method which uses a file system hierarchy to create a tree
I'm facing the following issue and I've been racking my brain looking for a solution, but nothing comes to my mind by now:
I have a file system hierarchy, something like:
/HANDLERS/HANDLER1
...
0
votes
1answer
31 views
How to enble SASL Authentiation Layer on Zookeeper?
I'm new to Zookeeper. I have created a node in the zookeeper server in standalone mode. Here is the code snippet for that.
public Connect(String hostPort, String znode, String filename) throws ...
0
votes
1answer
33 views
how to deal with Zookeeper's session
I use LinkedIn's framework norbert to implement a distributed service. I have two server node, ServerNode1, ServerNode2, and a client Client, norbert utilizes Zookeeper to store the current available ...
0
votes
0answers
28 views
Adding standalone zookeeper servers into fabric ensemble
We're attempting to add standalone zookeeper servers into the zk ensemble ran by fuse fabric (as either followers or observers). However, it looks like fabric has pretty tight control over the zk ...
0
votes
1answer
52 views
how to used zookeeper watch in kazoo to block program
I read the docs for kazoo.
I then ran the code example on the site, the func for watch been called once every time I run it, I want to block the program until the children of one node deleted, how can ...
0
votes
2answers
45 views
How can I create a node recursively using zookeeper client library on Java?
I know this question has been already asked and answered for a zookeeper using python. The answer was good, however, I want something more related with the code. I've already implemented a method to ...
1
vote
2answers
68 views
Why ZooKeeper needs majority to run?
I've been wondering why ZooKeeper needs a majority of the machines in the ensemble to work at all. Lets say we have a very simple ensemble of 3 machines - A,B,C.
When A fails, new leader is elected - ...
0
votes
0answers
75 views
Curator Zookeeper Client keeps throw out ConnectionLossException per (connectionTimeout+1) seconds in ConnectionState.getZookeeper()
I am use curator 1.2.4 and I keep getting ConnectionLossException when I want to monitor one znode for it's children changes.
So I implemented a watcher like this
public class ...
1
vote
1answer
134 views
Solrcloud configuration on AWS EC2 machine
I'm facing problem with the setup of SolrCloud on AWS EC2 machine.
The scenario is follows,
I have three servers for zookeeper and solr.
Each server has zookeeper running on it.
When I start Solr ...
0
votes
0answers
47 views
RTBkit TypeError: cannot concatenate 'str' and 'NoneType' objects
I am trying to run RTBKit from Ubuntu 12.04lts with 4GB RAM.
I am following the steps from HERE
I was able to execute steps before sudo make -k all.
But when I execute the command sudo make -k all, ...
0
votes
1answer
28 views
zookeeper launch error when in single node mode
Here is the command line:
bin/zookeeper-server-start.sh config/zookeeper.properties
Here is the output:
[2013-04-15 18:18:05,570] INFO tickTime set to 3000 ...
1
vote
1answer
60 views
Zookeeper does not clean up deleted nodes
I've made some tests and it seems like zookeeper doesn't clean up the last
500 deleted nodes.
In my test I created nodes and deleted each node after it was created. I
repeated this step 1000 times ...
0
votes
2answers
141 views
Embed Apache ZooKeeper in Jetty generates Debug log message
I am using Jetty 8 and ZooKeeper 3.4.5. When I connect to ZooKeeper, jetty keep generating DEBUG level message. How to suppress it?
16:54:56.757 [main-SendThread(127.0.0.1:2181)] DEBUG ...
0
votes
1answer
47 views
Zookeeper Network Ensemble does not start appropiately
I've been working with zookeeper lately to fill a requirement of reliablity in distributed applications. I'm working with three computers and I followed this tutorial:
...
0
votes
0answers
25 views
Asynchronous python-zookeeper example?
With the documentation for zkpython being on the brief side, especially when it comes to the asynchronous methods, I have a hard time understanding how to use the asynchronous API.
Say that I want to ...
0
votes
1answer
138 views
Reloading Zoo keeper solr conf (schema.xml)
I have setup a solr cloud replication using standalone zookeeper. But now I wish to make some changes to my schema.xml and reload the core. The problem is that when I run a single server solr (no solr ...
0
votes
0answers
24 views
Zookeeper C API sequential node creation
I'm trying to implement the Zookeeper Master election algorithm recipe (http://zookeeper.apache.org/doc/trunk/recipes.html). Using the Zookeeper C API ...
1
vote
0answers
51 views
Solr-Zookeeper increment the number of shards without setting max number of shards
I have a problem in creating shards with zoo keeper.
When I create a collection and the shards for the corresponding collection ,I have to specify max number of shards the collection going to have.If ...
1
vote
0answers
482 views
HBase standalone failed to connect (fail to create table)
I am trying to deploy Hbase in standalone mode following this article: http://hbase.apache.org/book.html#quickstart. The version is 0.92.1-cdh4.1.2
But I am getting these errors when try to create a ...
3
votes
1answer
54 views
Going from a single zookeeper server to a clustered configuration
I have a single server that I now want to replicate and go for higher availability. One of the elements in my software stack if Zookeeper, so it seems natural to go to a clustered configuration on it.
...
1
vote
0answers
40 views
connecting to zookeeper in different server
I am trying to connect to a zookeeper that is running in another cluster or environment (eg staging) from dev cluster which has its own zookeeper.
When I run this in distributed mode, I cannot ...
1
vote
1answer
36 views
Why is Chubby lockserver not multi-master?
As I understand Chubby at any given time there are 5 chubby servers. One is the master and handles coordination of writes to the quorum, and the other 4 servers are read only and forward handling of ...
0
votes
1answer
39 views
Can I connect to Zookeeper server with a different version client?
I need to use zookeeper java client in my project A.
A has a dependency B which is a library that uses zookeeper 3.3.5 java client to connect to an "enterprise service directory" zookeeper cluster. ...
0
votes
1answer
74 views
Hbase and Zookeeper EndOfStreamException
this Exception is always appears
EndOfStreamException: Unable to read additional data from client sessionid 0x13da73a3622010a, likely client has closed socket
at ...
0
votes
2answers
55 views
Java class to read a zoo.cfg using Apache Zoo Keeper
I've been working with apache zookeeper and I've been asked to read the zoo.cfg which contains the properties:
tickTime=2000
dataDir=/var/lib/zookeeper
clientPort=2181
...
0
votes
1answer
17 views
apache zookeeper ask server RAM
Is it possible to use zookeeper to monitor the server resources or to retrieve a number representing the total RAM available?
0
votes
0answers
138 views
Hbase connection failure using spring
I had a simple crud app with HBase using just a java-client and everything was ok. But when I tried to do the same app using spring, zookeeper refuses the connection or closes it and I can't really ...
0
votes
1answer
290 views
Running MapReduce on HBase gives Zookeeper error
I am doing a test project with Hadoop and HBase. Currently the cluster has 2 Ubuntu VMs hosted on a Windows machine.
I am able to perform PUT, QUERY and DELETE operation remotly (in my host machine) ...
0
votes
1answer
68 views
How does zookeeper determine the 'java.library.path' for a hadoop job?
I am running hadoop jobs on a distributed cluster using oozie. I give a setting 'oozie.libpath' for the oozie jobs.
Recently, I have deleted few of my older version jar files from the library path ...
0
votes
1answer
90 views
FileNotFoundException while running SolrCloud on Tomcat
I have a Solr 4.2.0 server which is running under the Tomcat 7.0 container. I'm trying to wire it with my external zookeeper (actually, it doesn't work with the embdedded zookeeper too).
I tried ...
0
votes
0answers
68 views
Storm Stopped Processing
I am using storm 0.8.1 in local cluster mode. For the last few hours the storm cluster has stopped emitting after processing for few iterations. Basically i am storing the data streams that are being ...
0
votes
1answer
41 views
Error importing Zookeeper libzookeeper_mt.so.2 in python
I am having issues trying to import this .so file in Python...I added this to my /etc/bashrc and source'd it to make it reload...no luck so far...
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
The ...
