Member since
01-04-2016
409
Posts
313
Kudos Received
35
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
5708 | 01-16-2018 07:00 AM | |
1885 | 09-13-2017 06:17 PM | |
3746 | 09-13-2017 05:58 AM | |
2384 | 08-28-2017 07:16 AM | |
4155 | 05-11-2017 11:30 AM |
10-05-2016
05:46 PM
Hi @Ashnee Sharma Thank You for the reply. This way I fixed the hostname. As user “root” “vi /etc/sysconfig/network”, change HOSTNAME value to the new hostname “hostname NEW_HOST_NAME” to change it for the current sessions “vi /etc/hosts”, change the old value to point to the new hostname “service network restart” to restart the networking service and apply all the new changes. and the error got resolved.
... View more
10-03-2016
12:46 PM
@Ashnee Sharma "broken pipe" is an indication of some network disruption. It could be many different things, Ambari 2.4 with latest version of Hive view 1.5 improves on the stability of Hive view as opposed to what you're using. If this error is directly related to Hive view 1.0 and not network issue, then you will absolutely benefit from upgrading. Good luck.
... View more
10-03-2016
10:52 AM
5 Kudos
@Ashnee Sharma For YARN applications log aggregation takes case of log management Please read below blog for more details http://hortonworks.com/blog/simplifying-user-logs-management-and-access-in-yarn/
... View more
10-02-2016
02:23 AM
Hi , Thaks for your quick reply. Couple of pints need to clarify
1. Application master is responsible for getting datablock info from NameNode , and creating container in the respective datanodes for processing the data
2. It is also responsible for monitoring the task and in case it failed, then app master will start the container in different datanode
... View more
10-04-2016
01:28 AM
Thanks Ashnee. I didn't notice that.
... View more
09-28-2016
11:39 AM
The logs about the jobs temporary file which is created while job is running.
... View more
09-26-2016
10:31 AM
1 Kudo
Hi I done following steps :- 1) Run service check . 2)follow the link and updated the config from backend :- https://cwiki.apache.org/confluence/display/AMBARI/Modify+configurations 3) And then restarted the service and issue is resolved.
... View more
09-22-2016
01:38 PM
1 Kudo
Hi Ashnee, There are some known issues and they are listed in the following link please refer this hope this will be helpful for you. https://docs.hortonworks.com/HDPDocuments/Ambari-2.1.0.0/bk_releasenotes_ambari_2.1.0.0/content/ambari_relnotes-2.1.0.0-known-issues.html Thanks, Mahesh
... View more
09-16-2016
08:07 AM
2 Kudos
To upgrade it will take time so I have written script to get the graph of queue usage data:- Gnuplot installed on linux box cat data.sh #!/bin/bash WD='/path where we will resotre
the data FN=`date +%Y%m%d%H%M%S` curl "http://XXX.XXX.XXX:8088/ws/v1/cluster/scheduler"
> $WD/$FN To collect the output in one file for creating one graph for qurue usage:- cat queue.sh HM=home path where stored all config and script WD=$HM/original QD=$HM/queue-data rm -rf $QD/* cd $WD for que in abc xyz xx do for i in `ls` do column=`awk -F',' '{ for (i=0; i<=NF; i++) {print i,$i}}' $i| grep $que | tail -1 | awk '{print $1}'` uc=$((column-6)) auc=$((column-2)) awk -F',' '{print ARGV[3], $ucp, $aucp}' ucp="$uc" aucp="$auc" $i | awk -F' ' '{print $1" "$2" "$3}' | awk -F':' '{print $1" "$2" "$3}' | awk '{print $1" "$3" "$5}' >> $QD/$que done done paste -d' ' $QD/abc $QD/xyz $QD/xx | gawk '{print $1 " " $3 " " $6 " " $9 " " $12 " " $15 " " $18 " " $21 " " $24" " $27}' >>$QD/all_que Than create a conf file for create graph:- cat 1.conf set terminal png truecolor size 2000,600 set output "all-in-1.png" set autoscale set xdata time set timefmt "%Y%m%d%H%M%S" set format x "%Y/%m/%d\n%H:%M\n" set style data lines set key reverse Left outside set xlabel "Time(in IST)" set ylabel "Used Capacity" set title "non-parental-queue-usage" plot "/home/xyz" using 1:2 title "xyz", '' using 1:3 title "abc", '' using 1:4 title "xx" /home/xyz is path from where we will get the details of que usage and time In this conf on xlabel is use for TIme and ylable for used capacity of queue. Now plot the graph using following command- cat 1.conf | gnuplot You will see the graph Thanks for the reply.....!!!!!!!
... View more