Member since
02-09-2016
559
Posts
422
Kudos Received
98
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2134 | 03-02-2018 01:19 AM | |
3517 | 03-02-2018 01:04 AM | |
2364 | 08-02-2017 05:40 PM | |
2342 | 07-17-2017 05:35 PM | |
1717 | 07-10-2017 02:49 PM |
09-14-2016
05:28 PM
1 Kudo
@Praneender Vuppala You can take a look at the Ambari Server logs to see if you can get more information about the errors: /var/log/ambari-server/ambari-server.log
... View more
09-14-2016
04:52 PM
@Praneender Vuppala Can you try using the beeline client to run the same queries that you run via the hive client? I'm curious if that works, as the communication mechanism is different.
... View more
09-14-2016
01:23 PM
@Navin Ladda Awesome news! I'm happy I was able to help.
... View more
09-13-2016
10:12 PM
@Praneender Vuppala I wonder if you are hitting this issue: https://issues.apache.org/jira/browse/AMBARI-15727, probably not. You can try setting Hive queries to MR instead of Tez to see if the problem still exists. Can you provide more information about your environment? What version of Ambari are you using? What version of HDP? You said you can run a query from the hive shell. Are you use the "hive" or the "beeline" client. The hive client talks to the metastore directly. The beeline client uses the thrift server and uses more of the overall stack. Here is the documentation for the beeline client: https://cwiki.apache.org/confluence/display/Hive/HiveServer2+Clients#HiveServer2Clients-BeelineExample
... View more
09-13-2016
09:58 PM
@Praneender Vuppala Is the Thrift Server running?
... View more
09-13-2016
08:32 PM
@Praneender Vuppala You can try setting: hadoop.proxyuser.root.hosts=* to see if that resolves your issue.
... View more
09-13-2016
08:24 PM
I highly recommend you try upgrading to the latest 5.1.x version. That may fix the issue.
... View more
09-13-2016
08:14 PM
There may be a VirtualBox issue. Once I validated my checksum was correct, I didn't have any problems importing the image as an appliance. Out of curiosity, what version of VirtualBox are you using? I have been able to use 5.0.x and 5.1.x on the same HDP_2.4_virtualbox_v3.ova file.
... View more
09-13-2016
08:03 PM
@Praneender Vuppala Try putting quotes around admin like this: hadoop.proxyuser.root.groups="admin"
hadoop.proxyuser.root.hosts=hadoop7master.localdomain If that doesn't work, try using * to see if that helps isolate the problem: hadoop.proxyuser.root.groups=*
hadoop.proxyuser.root.hosts=hadoop7master.localdomain Did you also ensure that /user/admin directory was created in HDFS and owned by the admin user? $ sudo su - hdfs
$ hadoop fs -mkdir /user/admin
$ hadoop fs -chown admin:hadoop /user/admin
I assume that you restarted the services after you made the changes?
... View more
09-13-2016
07:16 PM
1 Kudo
@Navin Ladda I've run into this problem several times, but it was intermittent. I'm on Mac OS X, and the file failed to download using Chrome and Firefox. However, I was able to successfully download it using Safari.
Here is the MD5 check of my file (successfully imported into VirtualBox):
$ md5 HDP_2.4_virtualbox_v3.ova
MD5 (HDP_2.4_virtualbox_v3.ova) = 6991bc1276053c27f82688fd42c5352d
And here is the size, in bytes:
$ ls -la HDP_2.4_virtualbox_v3.ova
-rw-r--r--@ 1 username group 9168198144 Mar 21 20:11 HDP_2.4_virtualbox_v3.ova
On Windows, you can use the Microsoft File Checksum Integrity Verifier tool to check the MD5: https://www.microsoft.com/en-us/download/details.aspx?id=11533 fciv.exe C:\Users\username\Downloads\HDP_2.4_virtualbox_v3.ova
File Checksum Integrity Verifier version 2.05.
6991bc1276053c27f82688fd42c5352d c:\users\username\downloads\hdp_2.4_virtualbox_v 3.ova
... View more