These aren't specific to Mahout. To run a Hadoop job, you have to give it all dependencies together. This is the error you're getting. To help with this, the distro has 'job' files with all dependencies packaged together for you. Your next error is just another symptom of this. No Hadoop job can run without its dependencies available on workers.
Here as in most projects, the bin and src files are built from the same source. The difference is that bin contains the compiled artifacts and not the source code, and is "ready to run". In bin I believe the configuration is built into the compiled jar, yes. On Thu, Jun 9, 2011 at 2:18 AM, Mark <[email protected]> wrote: > I explained in an earlier post that I was having problems running some > examples on a cluster when using the binary distribution. My cluster was > complaining about missing classes.. ie lucene analyzer and google > preconditions. However when I tried the same thing on a src distribution > (and after mvn package) I didn't receive those errors. > > How do the bin and src distributions differ? > > I also noticed that I was able to directly modify the driver.classes.props > file using the src distribution and those changes were available > immediately. When I tried the same on the binary distribution my changes > never appeared??? Is this to be expected? > > Thanks for any clarifications. >
