1

以下の入力、出力、マッパー、およびリデューサー クラスは貼り付けません。以下は私の主な機能です。Hadoop 1.0.4 を使用して以下のコードを実行しています。レデューサーからの出力を圧縮しようとするまでは正常に動作します。コードとともにコンパイルエラーを貼り付けています:

public static void main(String[] args) throws Exception
{
    Configuration conf = new Configuration();

    conf.set("xmlinput.start", "<page>");
    conf.set("xmlinput.end", "</page>");
    Job job = new Job(conf);  //configure the job, submit it, control its execution, and query the state
    job.setJarByClass(XmlParser11.class); //set jar by finding where the class came from
    job.setOutputKeyClass(Text.class); //Set the key class for the job output data
    job.setOutputValueClass(Text.class);

    //job.setCompressMapOutput(true);
    //job.setMapOutputCompressorClass(GzipCodec.class);

    //job.setCompressOutput(job, true);
    //job.setClass("mapred.output.compression.codec", GzipCodec.class,CompressionCodec.class);
    job.setMapperClass(XmlParser11.Map.class);
    job.setReducerClass(XmlParser11.Reduce.class);

    job.setInputFormatClass(XmlInputFormat1.class);  //Set the InputFormat for the job                job.setOutputFormatClass(TextOutputFormat.class); //Set the OutputFormat for the job
    FileOutputFormat.setCompressOutput(job,true);
    FileOutputFormat.setOutputCompressorClass(job,GzipCodec.class);
    FileInputFormat.addInputPath(job, new Path(args[0])); //the job for which the input path should be modified                FileOutputFormat.setOutputPath(job, new Path(args[1]));
    job.waitForCompletion(true);       
}

[ravisg@topsail-sn ~]$ javac -classpath /var/hadoop/hadoop-core-1.0.4.jar -d stopWords/ XmlParser11.java
 XmlParser11.java:306: error: cannot find symbol
        FileOutputFormat.setOutputCompressorClass(job,GzipCodec.class);
                                                      ^
 symbol:   class GzipCodec
 location: class XmlParser11

レデューサーからの出力を圧縮する方法を教えてもらえますか、それとも私が間違っていることを指摘してもらえますか? Stackoverflow で提案されているさまざまなスタイルの圧縮を使用してみましたが、常に同様のエラーが発生します。

4

2 に答える 2

0

コードをコンパイルするときに、Hadoop ディストリビューションからクラスパスに hadoop-common*jar を追加する必要があります。問題の jar には GZipCodec クラスが含まれています。

于 2013-10-07T03:07:46.497 に答える