LineDocLocalAnalysis.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:3k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.contrib.index.example;
  19. import java.io.IOException;
  20. import org.apache.hadoop.contrib.index.mapred.DocumentAndOp;
  21. import org.apache.hadoop.contrib.index.mapred.DocumentID;
  22. import org.apache.hadoop.contrib.index.mapred.ILocalAnalysis;
  23. import org.apache.hadoop.mapred.JobConf;
  24. import org.apache.hadoop.mapred.OutputCollector;
  25. import org.apache.hadoop.mapred.Reporter;
  26. import org.apache.lucene.document.Document;
  27. import org.apache.lucene.document.Field;
  28. import org.apache.lucene.index.Term;
  29. /**
  30.  * Convert LineDocTextAndOp to DocumentAndOp as required by ILocalAnalysis.
  31.  */
  32. public class LineDocLocalAnalysis implements
  33.     ILocalAnalysis<DocumentID, LineDocTextAndOp> {
  34.   private static String docidFieldName = "id";
  35.   private static String contentFieldName = "content";
  36.   /* (non-Javadoc)
  37.    * @see org.apache.hadoop.mapred.Mapper#map(java.lang.Object, java.lang.Object, org.apache.hadoop.mapred.OutputCollector, org.apache.hadoop.mapred.Reporter)
  38.    */
  39.   public void map(DocumentID key, LineDocTextAndOp value,
  40.       OutputCollector<DocumentID, DocumentAndOp> output, Reporter reporter)
  41.       throws IOException {
  42.     DocumentAndOp.Op op = value.getOp();
  43.     Document doc = null;
  44.     Term term = null;
  45.     if (op == DocumentAndOp.Op.INSERT || op == DocumentAndOp.Op.UPDATE) {
  46.       doc = new Document();
  47.       doc.add(new Field(docidFieldName, key.getText().toString(),
  48.           Field.Store.YES, Field.Index.UN_TOKENIZED));
  49.       doc.add(new Field(contentFieldName, value.getText().toString(),
  50.           Field.Store.NO, Field.Index.TOKENIZED));
  51.     }
  52.     if (op == DocumentAndOp.Op.DELETE || op == DocumentAndOp.Op.UPDATE) {
  53.       term = new Term(docidFieldName, key.getText().toString());
  54.     }
  55.     output.collect(key, new DocumentAndOp(op, doc, term));
  56.   }
  57.   /* (non-Javadoc)
  58.    * @see org.apache.hadoop.mapred.JobConfigurable#configure(org.apache.hadoop.mapred.JobConf)
  59.    */
  60.   public void configure(JobConf job) {
  61.   }
  62.   /* (non-Javadoc)
  63.    * @see org.apache.hadoop.io.Closeable#close()
  64.    */
  65.   public void close() throws IOException {
  66.   }
  67. }