Member since
06-08-2016
33
Posts
10
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
4606 | 06-29-2016 09:32 PM |
06-02-2017
11:29 AM
It's problem with your client java configuration not with cluster instances (ResourceManager, NodeMagaer, NN and others). So you need increase java heap for hadoop client: export HADOOP_OPTS="$HADOOP_OPTS -Xmx4G"
... View more
10-02-2016
03:18 AM
3 Kudos
@Eric Periard The one you really need (1.1.0) is here: https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-examples/1.1.0 Pls don't forget to vote and accept the response that helped.
... View more
12-28-2016
11:59 PM
3 Kudos
@Eric Periard Check this: https://community.hortonworks.com/questions/59122/hadoop-examples-110-snapshotjar-missing.html It would have been if the documentation was more precise. Duly noted. Thanks.
... View more
07-11-2016
04:28 PM
1 Kudo
I think the majority of people do not use ssh fencing at all. The reason for this is that Namenode HA works fine without it. The only issue can be that during a network partitioning old connections to the old standby might still exist and get stale old date during read-only operations. - They cannot do any write transactions since the Journalnode majority prohibits that - Normally if zkfc works correctly an active namenode will not go into zombie mode, he is dead or not. So the chances of a split brain are low and the impact is pretty limited. If you use ssh fencing the important part is that your script cannot block other wise the failover will be stopped, you need to have all scripts return in a sensible amount of time even if the access is not possible. Fencing by definition is always an attempt. Since most of the time the node is simply down. And they need to return success in the end. So you need a fork with a timeout and then return true. https://hadoop.apache.org/docs/r2.7.1/hadoop-project-dist/hadoop-hdfs/HDFSHighAvailabilityWithQJM.html#Verifying_automatic_failover
... View more
08-25-2017
02:18 PM
@Eric Periard have you managed to find any solution for this? I'm stuck in the same error for over a week. Many thanks in advance. Best regards
... View more
07-11-2016
01:30 PM
Has there been any progress so far on that issue... I've tried so many approach that I've resorted to making this script that checks the node status every minute...
... View more
06-08-2016
02:06 PM
Most likely the latter.... I haven't been able to figure out what exactly is causing the issue.
... View more