List of usage examples for org.apache.hadoop.conf Configured subclass-usage
From source file ca.uwaterloo.cs.bigdata2017w.assignment4.DumpPageRankRecordsToPlainText.java
public class DumpPageRankRecordsToPlainText extends Configured implements Tool { private static final Logger LOG = Logger.getLogger(DumpPageRankRecordsToPlainText.class); public DumpPageRankRecordsToPlainText() { }
From source file ca.uwaterloo.cs.bigdata2017w.assignment4.PartitionGraph.java
public class PartitionGraph extends Configured implements Tool { private static final Logger LOG = Logger.getLogger(PartitionGraph.class); public static void main(String[] args) throws Exception { ToolRunner.run(new PartitionGraph(), args); }
From source file ca.uwaterloo.iss4e.hadoop.meterperfile.ThreelMain.java
/**
* Copyright (c) 2014 Xiufeng Liu ( xiufeng.liu@uwaterloo.ca )
* <p/>
* This file is free software: you may copy, redistribute and/or modify it
* under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
From source file ca.uwaterloo.iss4e.hadoop.pointperrow.CosineMain.java
/**
* Copyright (c) 2014 Xiufeng Liu ( xiufeng.liu@uwaterloo.ca )
* <p/>
* This file is free software: you may copy, redistribute and/or modify it
* under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
From source file ca.uwaterloo.iss4e.hadoop.pointperrow.HistogramMain.java
/**
* Copyright (c) 2014 Xiufeng Liu ( xiufeng.liu@uwaterloo.ca )
* <p/>
* This file is free software: you may copy, redistribute and/or modify it
* under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
From source file ca.uwaterloo.iss4e.hadoop.pointperrow.PARMain.java
/**
* Copyright (c) 2014 Xiufeng Liu ( xiufeng.liu@uwaterloo.ca )
* <p/>
* This file is free software: you may copy, redistribute and/or modify it
* under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
From source file ca.uwaterloo.iss4e.hadoop.pointperrow.ThreelMain.java
/**
*
* Copyright (c) 2014 Xiufeng Liu ( xiufeng.liu@uwaterloo.ca )
*
* This file is free software: you may copy, redistribute and/or modify it
* under the terms of the GNU General Public License version 2
From source file cascading.avro.serialization.AvroSpecificRecordSerialization.java
/** * The {@link org.apache.hadoop.io.serializer.Serialization} used by jobs configured with {@link org.apache.avro.mapred.AvroJob}. */ public class AvroSpecificRecordSerialization<T> extends Configured implements Serialization<T> { public boolean accept(Class<?> c) {
From source file cascading.tuple.hadoop.BigDecimalSerialization.java
/**
* Class BigDecimalSerialization is an implementation of Hadoop's {@link org.apache.hadoop.io.serializer.Serialization} interface for use
* by {@link BigDecimal} instances.
* <p/>
* To use, call<br/>
* {@code TupleSerializationProps.addSerialization(properties, BigDecimalSerialization.class.getName());}
From source file cascading.tuple.hadoop.BytesSerialization.java
/**
* Class BytesSerialization is an implementation of Hadoop's {@link Serialization} interface for use
* by {@code byte} arrays ({@code byte[]}).
* <p/>
* To use, call<br/>
* {@code TupleSerialization.addSerialization(properties,BytesSerialization.class.getName() );}