This project has retired. For details please refer to its
Attic page.
From (Apache Crunch 0.3.0-incubating API)
org.apache.crunch.io
Class From
java.lang.Object
org.apache.crunch.io.From
public class From
- extends Object
Static factory methods for creating various Source
types.
Constructor Summary |
From()
|
Method Summary |
static
|
avroFile(org.apache.hadoop.fs.Path path,
AvroType<T> avroType)
|
static
|
avroFile(String pathName,
AvroType<T> avroType)
|
static
|
formattedFile(org.apache.hadoop.fs.Path path,
Class<? extends org.apache.hadoop.mapreduce.lib.input.FileInputFormat> formatClass,
PType<K> keyType,
PType<V> valueType)
|
static
|
formattedFile(String path,
Class<? extends org.apache.hadoop.mapreduce.lib.input.FileInputFormat> formatClass,
PType<K> keyType,
PType<V> valueType)
|
static
|
sequenceFile(org.apache.hadoop.fs.Path path,
PType<K> keyType,
PType<V> valueType)
|
static
|
sequenceFile(org.apache.hadoop.fs.Path path,
PType<T> ptype)
|
static
|
sequenceFile(String pathName,
PType<K> keyType,
PType<V> valueType)
|
static
|
sequenceFile(String pathName,
PType<T> ptype)
|
static Source<String> |
textFile(org.apache.hadoop.fs.Path path)
|
static
|
textFile(org.apache.hadoop.fs.Path path,
PType<T> ptype)
|
static Source<String> |
textFile(String pathName)
|
static
|
textFile(String pathName,
PType<T> ptype)
|
From
public From()
formattedFile
public static <K,V> TableSource<K,V> formattedFile(String path,
Class<? extends org.apache.hadoop.mapreduce.lib.input.FileInputFormat> formatClass,
PType<K> keyType,
PType<V> valueType)
formattedFile
public static <K,V> TableSource<K,V> formattedFile(org.apache.hadoop.fs.Path path,
Class<? extends org.apache.hadoop.mapreduce.lib.input.FileInputFormat> formatClass,
PType<K> keyType,
PType<V> valueType)
avroFile
public static <T> Source<T> avroFile(String pathName,
AvroType<T> avroType)
avroFile
public static <T> Source<T> avroFile(org.apache.hadoop.fs.Path path,
AvroType<T> avroType)
sequenceFile
public static <T> Source<T> sequenceFile(String pathName,
PType<T> ptype)
sequenceFile
public static <T> Source<T> sequenceFile(org.apache.hadoop.fs.Path path,
PType<T> ptype)
sequenceFile
public static <K,V> TableSource<K,V> sequenceFile(String pathName,
PType<K> keyType,
PType<V> valueType)
sequenceFile
public static <K,V> TableSource<K,V> sequenceFile(org.apache.hadoop.fs.Path path,
PType<K> keyType,
PType<V> valueType)
textFile
public static Source<String> textFile(String pathName)
textFile
public static Source<String> textFile(org.apache.hadoop.fs.Path path)
textFile
public static <T> Source<T> textFile(String pathName,
PType<T> ptype)
textFile
public static <T> Source<T> textFile(org.apache.hadoop.fs.Path path,
PType<T> ptype)
Copyright © 2012 The Apache Software Foundation. All Rights Reserved.