List of usage examples for org.apache.hadoop.conf Configured subclass-usage
From source file RunPageRankSchimmy.java
/**
* <p>
* Main driver program for running the Schimmy implementation of PageRank.
* </p>
*
* <p>
From source file PartitionGraph.java
/**
* <p>Driver program for partitioning the graph.</p>
*
* @author Jimmy Lin
* @author Michael Schatz
*/
From source file BuildPersonalizedPageRankRecords.java
/**
* <p>
* Driver program that takes a plain-text encoding of a directed graph and builds corresponding
* Hadoop structures for representing the graph.
* </p>
*
From source file LookupPostingsCompressed.java
public class LookupPostingsCompressed extends Configured implements Tool { private static final String INDEX = "index"; private static final String COLLECTION = "collection"; private LookupPostingsCompressed() { }
From source file HdfsCacheReader.java
public class HdfsCacheReader extends Configured implements Tool { public static final String FS_PARAM_NAME = "fs.defaultFS"; public int run(String[] args) throws Exception { if (args.length < 1) { System.err.println("HdfsReader [FileSize i.e. 1g/10g/100g/200g]");
From source file RunPersonalizedPageRankBasic.java
/**
* <p>
* Main driver program for running the basic (non-Schimmy) implementation of
* PageRank.
* </p>
*
From source file inMapperStripes.java
/**
* <p>
* Implementation of the "pairs" algorithm for computing co-occurrence matrices
* from a large text collection. This algorithm is described in Chapter 3 of
* "Data-Intensive Text Processing with MapReduce" by Lin & Dyer, as well as
* the following paper:
From source file RecordExtracting.java
/**
* <p>
* Driver program that takes a plain-text encoding of a directed graph and builds corresponding
* Hadoop structures for representing the graph.
* </p>
*
From source file BooleanRetrieval.java
public class BooleanRetrieval extends Configured implements Tool { private MapFile.Reader index; private FSDataInputStream collection; private Stack<Set<Integer>> stack; private BooleanRetrieval() {
From source file RunPageRankBasic.java
/**
* <p>
* Main driver program for running the basic (non-Schimmy) implementation of
* PageRank.
* </p>
*