All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.dicodeproject.analysis.examples.UnquotedArchiveToSequenceFile Maven / Gradle / Ivy

Go to download

The examples module provides glue code implementation for extracting common phrases, key word distributions and more from tweets stored on HDFS/HBase. It builds on Mahout for more sophisticated analysis.

The newest version!
/**
 * Copyright (C) 2010, 2011 Neofonie GmbH
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of 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 eu.dicodeproject.analysis.examples;

import java.io.IOException;
import java.nio.charset.Charset;

import org.apache.hadoop.conf.Configuration;
import org.apache.mahout.text.ChunkedWriter;

/**
 * Implements converting mbox archives to sequence files ignoring all quoted
 * content to avoid text duplication.
 */
public class UnquotedArchiveToSequenceFile extends MailArchiveToSequenceFile {
  public UnquotedArchiveToSequenceFile(Configuration conf, String prefix, ChunkedWriter writer, Charset charset)
      throws IOException {
    super(conf, prefix, writer, charset, new UnquotedHandler(writer));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy