org.apache.mahout.cf.taste.hadoop.RecommenderJob.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.mahout.cf.taste.hadoop.RecommenderJob.java

Source

/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.mahout.cf.taste.hadoop;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.mapreduce.InputFormat;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.mapreduce.OutputFormat;
import org.apache.hadoop.mapreduce.Reducer;
import org.apache.hadoop.mapreduce.lib.input.TextInputFormat;
import org.apache.hadoop.mapreduce.lib.output.TextOutputFormat;
import org.apache.hadoop.util.StringUtils;
import org.apache.mahout.cf.taste.recommender.Recommender;

import java.io.IOException;

/**
 * <p>This class configures and runs a {@link RecommenderMapper} using Hadoop.</p>
 *
 * <p>Command line arguments are:</p> <ol> <li>Fully-qualified class name of {@link Recommender} to use to make
 * recommendations. Note that it must have a constructor which takes a {@link org.apache.mahout.cf.taste.model.DataModel}
 * argument.</li> <li>Number of recommendations to compute per user</li> <li>Location of a text file containing user IDs
 * for which recommendations should be computed, one per line</li> <li>Location of a data model file containing
 * preference data, suitable for use with {@link org.apache.mahout.cf.taste.impl.model.file.FileDataModel}</li>
 * <li>Output path where reducer output should go</li> </ol>
 *
 * <p>Example:</p>
 *
 * <p><code>org.apache.mahout.cf.taste.impl.recommender.slopeone.SlopeOneRecommender 10 path/to/users.txt
 * path/to/data.csv path/to/reducerOutputDir 5</code></p>
 */
public final class RecommenderJob extends Job {

    public RecommenderJob(Configuration jobConf) throws IOException {
        super(jobConf);
    }

    public static void main(String[] args) throws Exception {
        String recommendClassName = args[0];
        int recommendationsPerUser = Integer.parseInt(args[1]);
        String userIDFile = args[2];
        String dataModelFile = args[3];
        String outputPath = args[4];
        Configuration jobConf = buildJobConf(recommendClassName, recommendationsPerUser, userIDFile, dataModelFile,
                outputPath);
        Job job = new RecommenderJob(jobConf);
        job.waitForCompletion(true);
    }

    public static Configuration buildJobConf(String recommendClassName, int recommendationsPerUser,
            String userIDFile, String dataModelFile, String outputPath) throws IOException {

        Configuration jobConf = new Configuration();
        FileSystem fs = FileSystem.get(jobConf);

        Path userIDFilePath = new Path(userIDFile).makeQualified(fs);
        Path outputPathPath = new Path(outputPath).makeQualified(fs);

        if (fs.exists(outputPathPath)) {
            fs.delete(outputPathPath, true);
        }

        jobConf.set(RecommenderMapper.RECOMMENDER_CLASS_NAME, recommendClassName);
        jobConf.set(RecommenderMapper.RECOMMENDATIONS_PER_USER, String.valueOf(recommendationsPerUser));
        jobConf.set(RecommenderMapper.DATA_MODEL_FILE, dataModelFile);

        jobConf.setClass("mapred.input.format.class", TextInputFormat.class, InputFormat.class);
        jobConf.set("mapred.input.dir", StringUtils.escapeString(userIDFilePath.toString()));

        jobConf.setClass("mapred.mapper.class", RecommenderMapper.class, Mapper.class);
        jobConf.setClass("mapred.mapoutput.key.class", LongWritable.class, Object.class);
        jobConf.setClass("mapred.mapoutput.value.class", RecommendedItemsWritable.class, Object.class);

        jobConf.setClass("mapred.reducer.class", IdentityReducer.class, Reducer.class);
        jobConf.setClass("mapred.output.key.class", LongWritable.class, Object.class);
        jobConf.setClass("mapred.output.value.class", RecommendedItemsWritable.class, Object.class);

        jobConf.setClass("mapred.output.format.class", TextOutputFormat.class, OutputFormat.class);
        jobConf.set("mapred.output.dir", StringUtils.escapeString(outputPathPath.toString()));

        return jobConf;
    }

}