Member since
08-03-2014
15
Posts
0
Kudos Received
3
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
23567 | 01-23-2015 11:14 AM | |
9505 | 08-28-2014 09:22 AM | |
11945 | 08-05-2014 07:18 AM |
08-04-2019
09:20 AM
Zookeeper works on quorum. And quorum holds the majority of servers rules. If you have 3 servers and one is down, then Majority of servers are working. you can read further Zookeeper Quorum
... View more
11-04-2016
09:01 PM
We had this exception for a while and it gone by itself. as far as i am concerned this exception occurs when namenode block locations is not fresh . check if you have HDFS Block skew condition . if you see this offten then its problem because it clearly denotes that it is missing some block otherwise you can ignore it.
... View more
01-23-2015
11:14 AM
The problem was indeed in the packaging. I fixed it by including the maven-assembly-plugin. <plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
... View more
08-29-2014
02:09 AM
Thanks for the reply. My problem is fixed finallly as you told it is necessary that flume sink must have the 777 permission to write the data to HDFS from webserver. Now my flime ng is working without having any issues. -Thankyou
... View more
08-05-2014
07:18 AM
The problem was that the following call: (Found in the error log of the installation UI, check out the original question) python -c 'import socket; import sys; s = socket.socket(socket.AF_INET); s.settimeout(5.0); s.connect((sys.argv[1], int(sys.argv[2]))); s.close();' hadooop-test.in.wellcentive.com 7182 was calling hadooop (threee o's) instead of the name of the server hadoop (two o's) I checked with my systems team and there was a duplicate entry in the dns with the three o's. Fixed and that was teh problem.
... View more