Member since
10-01-2015
3933
Posts
1150
Kudos Received
374
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3365 | 05-03-2017 05:13 PM | |
2797 | 05-02-2017 08:38 AM | |
3076 | 05-02-2017 08:13 AM | |
3006 | 04-10-2017 10:51 PM | |
1517 | 03-28-2017 02:27 AM |
01-11-2016
05:56 PM
@Kuldeep Kulkarni you can use command line tools like pdsh or some configuration management tool like ansible and tail /var/log/messages for installed RPMs, alternatively, you can run command ps aux | grep yum and see what's being installed as well.
... View more
01-11-2016
05:51 PM
3 Kudos
Ambari has been around at least 3 years less than CM, in that time, it gained a massive following from many different companies and contributors. CM is essentially a proprietary product limiting itself in innovation from community. It is known to have more features but Ambari is gaining in this area benefiting from the same reason I'd mentioned above. Hortonworks, IBM, Pivotal, Infosys, etc all use Ambari as their main Hadoop configuration interface and it benefits everyone that it works well. Ambari also has a feature called Ambari views, you can create your owns views, add custom services, feature that CM I believe does not have. One missing piece is Oozie workflow editor but with such a large community and many contributors, I am hoping we close the gap very soon! @jarhyeon cho
... View more
01-11-2016
05:45 PM
@Hefei Li
it has nothing to do with the proxyuser as you'd realized from your exercise, check the permissions in Oozie for the user you're executing the workflow with.
... View more
01-11-2016
05:34 PM
Client, ApplicationMaster and NodeManager on RM failover When there are multiple RMs, the configuration (yarn-site.xml) used by clients and nodes is expected to list all the RMs. Clients, ApplicationMasters (AMs) and NodeManagers (NMs) try connecting to the RMs in a round-robin fashion until they hit the Active RM. If the Active goes down, they resume the round-robin polling until they hit the “new” Active. This default retry logic is implemented as org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider. You can override the logic by implementing org.apache.hadoop.yarn.client.RMFailoverProxyProvider and setting the value of yarn.client.failover-proxy-provider to the class name. here's more info. @Benjamin Leonhardi
... View more
01-11-2016
05:31 PM
@Benjamin Leonhard RM works on the premise that even if you specify the standby RM URL, it will know to redirect to the active RM.
... View more
01-11-2016
05:19 PM
@vijaya inturi there are multiple articles available on this site for this topic. Start with tutorial, documentation, and a few questions from customers like you, here and here. It is worth the effort to look around and find information you're looking for.
... View more
01-11-2016
02:58 AM
@wei jiang see if you have multiple python versions loaded, do you have any old ambari files? Run "rpm -qa | grep ambari". See if you have any ambari files in /usr/lib/python2.6/site-packages you may need to remove them first. Please paste the whole error in /var/log/ambari-server/
... View more
01-11-2016
02:48 AM
@Revlin Abbi via SSH, you first have to copy the files to the guest machine, (Sandbox) like so scp -P 2222 -r file root@127.0.0.1:/home/guest then when you ssh to the machine, the file will be in /home/guest directory switch to guest user su guest if you do ls on the home directory you will see your file now you need to upload the file to HDFS hdfs dfs -put file /user/guest now you can list the file in hdfs hdfs dfs -ls /user/guest/ alternatively, you can use the Ambari HDFS Files view to upload directly from your mac to HDFS in Sandbox. The one thing you need to remember is that when you copy data from host to guest you copy to the guest's local filesystem. Loading to HDFS will take another step.
... View more
01-11-2016
02:36 AM
@bsaini yes, go to the node in question and in the same add services section, click on add clients and choose the ones you need. in my screenshot HCat client is the only client that is not installed, in your case, you may have many more depending on services installed.
... View more