I am specifically wondering if MapR has Kmeans clustering just like Mahout?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

As far as I know, MapR is only a "faster" Hadoop. There are no algorithms included.

So your jobs should be compatible.

But what is the deal in implementing your own? K-means is ultra simple. See my blog post: http://codingwiththomas.blogspot.com/2011/05/k-means-clustering-with-mapreduce.html

However I have implemented a k-means clustering with BSP (Bulk Synchronous Parallel) and Apache Hama which is almost ten times faster if you compare it with the Mahout benchmark results in this book: http://www.manning.com/ingersoll/ (linked jira: https://issues.apache.org/jira/browse/MAHOUT-588) Here is the benchmark of k-means with Apache Hama: http://wiki.apache.org/hama/Benchmarks

You can find it here: https://github.com/thomasjungblut/thomasjungblut-common/blob/master/src/de/jungblut/clustering/KMeansBSP.java

link|improve this answer
Ooo! I will look at these links! Thanks.... – Wajih Jan 16 at 13:00
MapR is not just a faster Hadoop. It includes all of the standard ecosystem components as well. This includes Mahout. – Ted Dunning Jan 17 at 21:11
You are definitely correct that Hadoop's map-reduce implementation is not suitable for iterative algorithms like traditional k-means using Lloyd's algorithm. There is a JIRA open that will allow single-pass k-means analysis. Being single-pass, this algorithm would not require multiple passes through the data, nor would it require multiple invocations of map-reduce in order to work. The speedups should be comparable to what Thomas describes. – Ted Dunning Jan 17 at 21:14
Ah, thank you for the clarification Ted. – Thomas Jungblut Jan 18 at 8:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.