Member since
02-02-2016
583
Posts
518
Kudos Received
98
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3267 | 09-16-2016 11:56 AM | |
1375 | 09-13-2016 08:47 PM | |
5479 | 09-06-2016 11:00 AM | |
3176 | 08-05-2016 11:51 AM | |
5256 | 08-03-2016 02:58 PM |
06-23-2016
10:55 AM
1 Kudo
Please follow below posts and see if that resolve this issue. https://community.hortonworks.com/questions/15506/error-cannot-retrieve-repository-metadata-repomdxm.html https://community.hortonworks.com/questions/31523/facing-error-while-upgrading-from-hdp-23-to-24-usi.html
... View more
06-23-2016
10:33 AM
1 Kudo
You added it in wrong way, you need to append those confs in AMBARI_JVM_ARGS variable. After that restart the ambari server. export AMBARI_JVM_ARGS=$AMBARI_JVM_ARGS' -Xms512m -Xmx2048m -Djava.security.auth.login.config=/etc/ambari-server/conf/krb5JAASLogin.conf -Djava.security.krb5.conf=/etc/krb5.conf -Djavax.security.auth.useSubjectCredsOnly=false -Dhttp.proxyHost=proxy.sgp.hp.com -Dhttp.proxyPort=8080'
... View more
06-23-2016
10:18 AM
please follow this doc for ambari internet proxy setup. http://docs.hortonworks.com/HDPDocuments/Ambari-2.1.0.0/bk_ambari_reference_guide/content/_how_to_set_up_an_internet_proxy_server_for_ambari.html
... View more
06-23-2016
10:14 AM
can you please share the output of below command from that node where its failing? yum list 'hadoop_2_4*-libhdfs*'
... View more
06-23-2016
09:56 AM
2 Kudos
Are you using any proxy to access internet?
... View more
06-23-2016
08:44 AM
2 Kudos
Yes, you can use hdfs checksum to find the file integrity on hdfs. See below jira's for more information. https://issues.apache.org/jira/browse/HADOOP-9209 https://issues.apache.org/jira/browse/HDFS-219 https://issues.apache.org/jira/browse/HADOOP-3981
... View more
06-23-2016
08:33 AM
2 Kudos
@Raja Ray As per the logs I couldn't find where datanode is getting down, can you please provide more logs? Also the error might not be relevant since it seems to be related to https://issues.apache.org/jira/browse/AMBARI-12420. Check if you are using same ambari version.
... View more
06-23-2016
08:29 AM
2 Kudos
First please check if namenode is up and running. If yes, then from datanode host run below command and see if it able to connect to the NN port. From DN: telnet 192.168.1.100 9000 If telnet is not responding then you might have firewall rules blocking the connection. Try disabling firewall and see if that make any difference.
... View more
06-22-2016
09:01 PM
2 Kudos
@Kumar Veerappan We recommend to upgrade HDP stack so that you can get appropriate version of spark which comes with stack instead of manually installing spark.
... View more
06-20-2016
04:04 PM
2 Kudos
Try adding spark assembly jar while running pyspark. pyspark --jars /usr/hdp/current/spark-client/lib/spark-assembly-<version>-hadoop2<version>.jar
... View more