Member since
04-27-2016
61
Posts
61
Kudos Received
3
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
5037 | 09-19-2016 05:42 PM | |
1832 | 06-11-2016 06:41 AM | |
4507 | 06-10-2016 05:17 PM |
05-31-2018
09:11 PM
First you need to know the error. - Check your namenode log file, by default located in the following directory /var/log/hadoop/hdfs run tail -f /var/log/hadoop/hdfs/hadoop-hdfs-namenode*.log . and try to start the service again. - Check if namenode process was already running on that node with ps -ef | grep namenode
... View more
01-23-2017
07:44 PM
2 Kudos
Hi @Geetha Anne Our most recent release is 2.5.3. We provide support for a rolling window of the previous 2 versions. This means we still provide support for 2.3. HDP 2.3 was released on June 8, 2015.
... View more
03-01-2017
11:16 PM
Its not related to HDP 2.5.0, I just encountered the same on 2.4.3. Was resolved for me after changing ambari.properties agent.threadpool.size.max
client.threadpool.size.max
The value should be mapped to actual CPU core count. Also, increased the heap size for namenode and datanode to 2 GB from the default 1GB value.
... View more
09-28-2016
02:20 AM
@Timothy Spann yes that code was written for storm 0.10. Now I am trying to test that for 1.0.1. Updated the Pom with necessary storm and Kafka versions and added guava dependency as suggested in the above link. Still I am getting build errors
... View more
09-19-2016
05:41 PM
1 Kudo
It looks like it was interrupted. Maybe you ran out of resources on the sandbox host? 2016-09-16 18:09:44,369 [AMRM Callback Handler Thread] INFO impl.AMRMClientAsyncImpl - Interrupted while waiting for queue
java.lang.InterruptedException
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.reportInterruptAfterWait(AbstractQueuedSynchronizer.java:2017)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2052)
at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
at org.apache.hadoop.yarn.client.api.async.impl.AMRMClientAsyncImpl$CallbackHandlerThread.run(AMRMClientAsyncImpl.java:287)
... View more
09-23-2016
09:17 PM
2 Kudos
We just did a refresh of the Sandbox to fix this issue. If you have run into this issue I would suggest downloading the Sandbox again or following the steps above.
... View more
04-18-2017
06:38 PM
Works great ! Thanks.
... View more
08-26-2016
09:32 PM
HDP kafka has a patch for old client api (consumer, producer) to work with kerberorized kafka cluster. So you need to make sure the dependencies you set are coming from the hortonworks maven repo <dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.10</artifactId>
<version>0.8.2.0</version>
");"><exclusions>
");"><exclusion>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
</exclusion>
");"><exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency> The above is from Apache. You can use this http://repo.hortonworks.com/content/groups/public/org/apache/kafka/kafka_2.10/0.9.0.2.4.2.8-3/ instead of the above. Add repo.hortonworks.com as one of the maven repo and use the version 0.9.0.2.4.2.8-3 instead of 0.8.2.0 like above.
... View more
08-29-2016
01:53 AM
'hbase.master.logcleaner.plugins' is not overridden in hbase-site.xml Need to investigate further.
... View more