Hi everyone, It seems MAHOUT_OPTS is not getting picked up when running mahout locally (MAHOUT_LOCAL=true). This can be fixed by switching the order in which MAHOUT_OPTS is passed in bin/mahout from:
exec "$JAVA" $JAVA_HEAP_MAX $MAHOUT_OPTS -classpath "$CLASSPATH" $CLASS "$@" to: exec "$JAVA" $JAVA_HEAP_MAX -classpath "$CLASSPATH" $CLASS "$@" $MAHOUT_OPTS I cant guarantee it wont break some other way of running it; it does not look like it will, but I have not tested it. Cheers, Mario
