Reputation: 6378
I have created a hadoop cluster using 3 slaves and 1 master using ambari server(hortonworks). I need to install mahout 0.9 in the master machine in order to run mahout jobs in the cluster. How do I do that?
I am using ambari 1.5.1 and HDP 2.1.
Upvotes: 5
Views: 1170
Reputation: 2033
As of today, Mahout 0.9.0.2.3 has been made available in the Ambari Install Wizard.
Upvotes: 0
Reputation: 1202
Hello fellow Hortonworker! Mahout is in the HDP repositories, but it's not available in the ambari install wizard (i.e. Services->Add Service). Therefore the only way to install it is via:
yum install mahout
As noted here, you should only install it on the master node. Also note that Mahout is a library not a service. There is nothing for ambari to monitor in terms of additional services to be run on nodes. If you are using maven to manage your build dependencies, you can just add the following to your pom.xml
<dependency>
<groupId>org.apache.mahout</groupId>
<artifactId>mahout-core</artifactId>
<version>0.9</version>
</dependency>
Upvotes: 3