Member since
07-18-2016
262
Posts
12
Kudos Received
21
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
6672 | 09-21-2018 03:16 AM | |
3195 | 07-25-2018 05:03 AM | |
4138 | 02-13-2018 02:00 AM | |
1930 | 01-21-2018 02:47 AM | |
37943 | 08-08-2017 10:32 AM |
08-06-2016
04:24 PM
There was dependency rpm packages installed the following and everything went fine. Install all dependent packages
bash# install
mpfr-2.4.1 tzdata-2016f bash# install
tzdata-2016f bash# install libgomp
ppl bash# install libgc cpp
gcc bash# yum install java#
yum install python-devel-2.6.6-64.el6.x86_64
... View more
08-03-2016
03:45 AM
Thank you! I believe java upgrade is not required. only openssl upgrade should fix this.
... View more
08-02-2016
12:52 PM
Thanks for your reply it worked for me. [root@ces ~]# pssh -v -h "host.txt" -A -i "-O StrictHostKeyChecking=no" -l root "touch sshkeys.txt" Warning: do not enter your password if anyone else has superuser
privileges or access to your account.
Password: [1] 18:04:48 [SUCCESS] cens [2] 18:04:48 [SUCCESS] cent [3] 18:04:48 [SUCCESS] cen [4] 18:04:48 [SUCCESS] cen4 [root@centos ~]# ls -lrt -rw-r--r-- 1 root root 31 Aug 2 18:01 host.txt
-rw-r--r-- 1 root root 0 Aug 2 18:04 sshkeys.txt
... View more
08-01-2016
09:29 AM
Thanks for your reply. I did the following this it worked for me. 1) Stopped the Ambari and Postgresql database [root@centos ~]# ambari-server stop
Using python /usr/bin/python2.6
Stopping ambari-server
Ambari Server stopped
[root@centos ~]# service postgresql stop
Stopping postgresql service: [ OK ]
[root@centos ~]# 2) Changed the network setting VM ware from Bridge to NAT 3) Restarted the Network Service #service network restart 4) Started the Postgresql database [root@centos ~]# service postgresql start
Starting postgresql service: [ OK ] 5) Stared the Ambari-service [root@centos ~]# ambari-server stop
Using python /usr/bin/python2.6
Starting ambari-server After complete this mine Ambari Web Interface was working fine.
... View more
07-27-2016
01:25 PM
Restarted the HRegion Server Servicefor this and We came out of the error .
... View more
08-12-2016
01:02 PM
1 Kudo
"If it runs in the Appmaster, what exactly are "the computed input splits" that jobclient stores into HDFS while submitting the Job ??" InputSplits are simply the work assignments of a mapper. I.e. you have the inputfolder /in/file1
/in/file2 And assume file1 has 200MB and file2 100MB ( default block size 128MB ) So the InputFormat per default will generate 3 input splits ( on the appmaster its a function of InputFormat) InputSplit1: /in/file1:0:128000000
InputSplit2: /in/file1:128000001:200000000
InputSplit3:/in/file2:0:100000000 ( per default one split = 1 block but he COULD do whatever he wants. He does this for example for small files where he uses MultiFileInputSplits which span multiple files ) "And how map works if the split spans over data blocks in two different data nodes??" So the mapper comes up ( normally locally to the block ) and starts reading the file with the offset provided. HDFS by definition is global and if you read non local parts of a file he will read it over the network but local is obviously more efficient. But he COULD read anything. The HDFS API makes it transparent. So NORMALLY the InputSplit generation will be done in a way that this does not happen. So data can be read locally but its not a necessary precondition. Often maps are non local ( you can see that in the resource manager ) and then he can simply read the data over the network. The API call is identical. Reading an HDFS file in Java is the same as reading a local file. Its just an extension to the Java FileSystem API.
... View more
07-27-2016
03:59 AM
This issue is with Namenode was on Safe mode 1)Ran command to came out of Safe mode 2) Stopped the HDFS service 3) Started the Zookeeper and HDFS service 4) After start namenode came up and running.
... View more
07-26-2016
12:58 PM
Very neatly explained.!
... View more
07-21-2016
04:15 PM
thank you Artem i am doing it for personal test. Now i able to install ambari and setup as well on other virtuwal machine. Any ways thanks for your guidance, future it will help me.
... View more
- « Previous
- Next »