|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.pig.LoadFunc
org.apache.pig.FileInputLoadFunc
org.apache.pig.builtin.PigStorage
public class PigStorage
A load function that parses a line of input into fields using a delimiter to
set the fields. The delimiter is given as a regular expression. See
String.split(String) and Pattern
for more information.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from interface org.apache.pig.LoadPushDown |
|---|
LoadPushDown.OperatorSet, LoadPushDown.RequiredField, LoadPushDown.RequiredFieldList, LoadPushDown.RequiredFieldResponse |
| Field Summary | |
|---|---|
protected org.apache.hadoop.mapreduce.RecordReader |
in
|
protected org.apache.commons.logging.Log |
mLog
|
protected boolean[] |
mRequiredColumns
|
protected String |
signature
|
protected org.apache.hadoop.mapreduce.RecordWriter |
writer
|
| Constructor Summary | |
|---|---|
PigStorage()
|
|
PigStorage(String delimiter)
Constructs a Pig loader that uses specified regex as a field delimiter. |
|
| Method Summary | |
|---|---|
void |
checkSchema(ResourceSchema s)
Set the schema for data to be stored. |
void |
cleanupOnFailure(String location,
org.apache.hadoop.mapreduce.Job job)
This method will be called by Pig if the job which contains this store fails. |
boolean |
equals(Object obj)
|
boolean |
equals(PigStorage other)
|
List<LoadPushDown.OperatorSet> |
getFeatures()
Determine the operators that can be pushed to the loader. |
org.apache.hadoop.mapreduce.InputFormat |
getInputFormat()
This will be called during planning on the front end. |
Tuple |
getNext()
Retrieves the next tuple to be processed. |
org.apache.hadoop.mapreduce.OutputFormat |
getOutputFormat()
Return the OutputFormat associated with StoreFuncInterface. |
int |
hashCode()
|
void |
prepareToRead(org.apache.hadoop.mapreduce.RecordReader reader,
PigSplit split)
Initializes LoadFunc for reading data. |
void |
prepareToWrite(org.apache.hadoop.mapreduce.RecordWriter writer)
Initialize StoreFuncInterface to write data. |
LoadPushDown.RequiredFieldResponse |
pushProjection(LoadPushDown.RequiredFieldList requiredFieldList)
Indicate to the loader fields that will be needed. |
void |
putNext(Tuple f)
Write a tuple to the data store. |
String |
relToAbsPathForStoreLocation(String location,
org.apache.hadoop.fs.Path curDir)
This method is called by the Pig runtime in the front end to convert the output location to an absolute path if the location is relative. |
void |
setLocation(String location,
org.apache.hadoop.mapreduce.Job job)
Communicate to the loader the location of the object(s) being loaded. |
void |
setStoreFuncUDFContextSignature(String signature)
This method will be called by Pig both in the front end and back end to pass a unique signature to the StoreFuncInterface which it can use to store
information in the UDFContext which it needs to store between
various method invocations in the front end and back end. |
void |
setStoreLocation(String location,
org.apache.hadoop.mapreduce.Job job)
Communicate to the storer the location where the data needs to be stored. |
void |
setUDFContextSignature(String signature)
This method will be called by Pig both in the front end and back end to pass a unique signature to the LoadFunc. |
| Methods inherited from class org.apache.pig.FileInputLoadFunc |
|---|
getSplitComparable |
| Methods inherited from class org.apache.pig.LoadFunc |
|---|
getAbsolutePath, getLoadCaster, getPathStrings, join, relativeToAbsolutePath |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected org.apache.hadoop.mapreduce.RecordReader in
protected org.apache.hadoop.mapreduce.RecordWriter writer
protected final org.apache.commons.logging.Log mLog
protected String signature
protected boolean[] mRequiredColumns
| Constructor Detail |
|---|
public PigStorage()
public PigStorage(String delimiter)
delimiter - the single byte character that is used to separate fields.
("\t" is the default.)| Method Detail |
|---|
public Tuple getNext()
throws IOException
LoadFunc
getNext in class LoadFuncIOException - if there is an exception while retrieving the next
tuple
public void putNext(Tuple f)
throws IOException
StoreFuncInterface
putNext in interface StoreFuncInterfacef - the tuple to store.
IOException - if an exception occurs during the write
public LoadPushDown.RequiredFieldResponse pushProjection(LoadPushDown.RequiredFieldList requiredFieldList)
throws FrontendException
LoadPushDown
pushProjection in interface LoadPushDownrequiredFieldList - RequiredFieldList indicating which columns will be needed.
This structure is read only. User cannot make change to it inside pushProjection.
FrontendExceptionpublic boolean equals(Object obj)
equals in class Objectpublic boolean equals(PigStorage other)
public org.apache.hadoop.mapreduce.InputFormat getInputFormat()
LoadFunc
getInputFormat in class LoadFunc
public void prepareToRead(org.apache.hadoop.mapreduce.RecordReader reader,
PigSplit split)
LoadFunc
prepareToRead in class LoadFuncreader - RecordReader to be used by this instance of the LoadFuncsplit - The input PigSplit to process
public void setLocation(String location,
org.apache.hadoop.mapreduce.Job job)
throws IOException
LoadFuncLoadFunc.relativeToAbsolutePath(String, Path). Implementations
should use this method to communicate the location (and any other information)
to its underlying InputFormat through the Job object.
This method will be called in the backend multiple times. Implementations
should bear in mind that this method is called multiple times and should
ensure there are no inconsistent side effects due to the multiple calls.
setLocation in class LoadFunclocation - Location as returned by
LoadFunc.relativeToAbsolutePath(String, Path)job - the Job object
store or retrieve earlier stored information from the UDFContext
IOException - if the location is not valid.public org.apache.hadoop.mapreduce.OutputFormat getOutputFormat()
StoreFuncInterface
getOutputFormat in interface StoreFuncInterfaceOutputFormat associated with StoreFuncInterfacepublic void prepareToWrite(org.apache.hadoop.mapreduce.RecordWriter writer)
StoreFuncInterface
prepareToWrite in interface StoreFuncInterfacewriter - RecordWriter to use.
public void setStoreLocation(String location,
org.apache.hadoop.mapreduce.Job job)
throws IOException
StoreFuncInterfaceStoreFuncInterface here is the
return value of StoreFuncInterface.relToAbsPathForStoreLocation(String, Path)
This method will be called in the frontend and backend multiple times. Implementations
should bear in mind that this method is called multiple times and should
ensure there are no inconsistent side effects due to the multiple calls.
StoreFuncInterface.checkSchema(ResourceSchema) will be called before any call to
StoreFuncInterface.setStoreLocation(String, Job).
setStoreLocation in interface StoreFuncInterfacelocation - Location returned by
StoreFuncInterface.relToAbsPathForStoreLocation(String, Path)job - The Job object
IOException - if the location is not valid.
public void checkSchema(ResourceSchema s)
throws IOException
StoreFuncInterface
checkSchema in interface StoreFuncInterfaces - to be checked
IOException - if this schema is not acceptable. It should include
a detailed error message indicating what is wrong with the schema.
public String relToAbsPathForStoreLocation(String location,
org.apache.hadoop.fs.Path curDir)
throws IOException
StoreFuncInterfaceLoadFunc.getAbsolutePath(java.lang.String, org.apache.hadoop.fs.Path) provides a default
implementation for hdfs and hadoop local file system and it can be used
to implement this method.
relToAbsPathForStoreLocation in interface StoreFuncInterfacelocation - location as provided in the "store" statement of the scriptcurDir - the current working direction based on any "cd" statements
in the script before the "store" statement. If there are no "cd" statements
in the script, this would be the home directory -
/user/
IOException - if the conversion is not possiblepublic int hashCode()
hashCode in class Objectpublic void setUDFContextSignature(String signature)
LoadFuncLoadFunc. The signature can be used
to store into the UDFContext any information which the
LoadFunc needs to store between various method invocations in the
front end and back end. A use case is to store LoadPushDown.RequiredFieldList
passed to it in LoadPushDown.pushProjection(RequiredFieldList) for
use in the back end before returning tuples in LoadFunc.getNext().
This method will be call before other methods in LoadFunc
setUDFContextSignature in class LoadFuncsignature - a unique signature to identify this LoadFuncpublic List<LoadPushDown.OperatorSet> getFeatures()
LoadPushDown
getFeatures in interface LoadPushDownpublic void setStoreFuncUDFContextSignature(String signature)
StoreFuncInterfaceStoreFuncInterface which it can use to store
information in the UDFContext which it needs to store between
various method invocations in the front end and back end. This is necessary
because in a Pig Latin script with multiple stores, the different
instances of store functions need to be able to find their (and only their)
data in the UDFContext object.
setStoreFuncUDFContextSignature in interface StoreFuncInterfacesignature - a unique signature to identify this StoreFuncInterface
public void cleanupOnFailure(String location,
org.apache.hadoop.mapreduce.Job job)
throws IOException
StoreFuncInterface
cleanupOnFailure in interface StoreFuncInterfacelocation - Location returned by
StoreFuncInterface.relToAbsPathForStoreLocation(String, Path)job - The Job object - this should be used only to obtain
cluster properties through JobContext.getConfiguration() and not to set/query
any runtime job information.
IOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||