|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.pig.StoreFuncWrapper
public class StoreFuncWrapper
Convenience class to extend when decorating a StoreFunc. It's not abstract so that it will fail to compile if new methods get added to StoreFuncInterface. Subclasses must call the setStoreFunc with an instance of StoreFuncInterface before other methods can be called. Not doing so will result in an IllegalArgumentException when the method is called.
| Constructor Summary | |
|---|---|
protected |
StoreFuncWrapper()
|
| Method Summary | |
|---|---|
void |
checkSchema(ResourceSchema resourceSchema)
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. |
void |
cleanupOnSuccess(String location,
org.apache.hadoop.mapreduce.Job job)
This method will be called by Pig if the job which contains this store is successful, and some cleanup of intermediate resources is required. |
protected String |
getMethodName(int depth)
Returns a method in the call stack at the given depth. |
org.apache.hadoop.mapreduce.OutputFormat |
getOutputFormat()
Return the OutputFormat associated with StoreFuncInterface. |
void |
prepareToWrite(org.apache.hadoop.mapreduce.RecordWriter recordWriter)
Initialize StoreFuncInterface to write data. |
void |
putNext(Tuple tuple)
Write a tuple to the data store. |
String |
relToAbsPathForStoreLocation(String location,
org.apache.hadoop.fs.Path path)
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. |
protected void |
setStoreFunc(StoreFuncInterface storeFunc)
The wrapped StoreFuncInterface object must be set before method calls are made on this object. |
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. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
protected StoreFuncWrapper()
| Method Detail |
|---|
protected void setStoreFunc(StoreFuncInterface storeFunc)
storeFunc -
public String relToAbsPathForStoreLocation(String location,
org.apache.hadoop.fs.Path path)
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 scriptpath - 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 possible
public org.apache.hadoop.mapreduce.OutputFormat getOutputFormat()
throws IOException
StoreFuncInterface
getOutputFormat in interface StoreFuncInterfaceOutputFormat associated with StoreFuncInterface
IOException - if an exception occurs while constructing the
OutputFormat
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 resourceSchema)
throws IOException
StoreFuncInterface
checkSchema in interface StoreFuncInterfaceresourceSchema - 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 void prepareToWrite(org.apache.hadoop.mapreduce.RecordWriter recordWriter)
throws IOException
StoreFuncInterface
prepareToWrite in interface StoreFuncInterfacerecordWriter - RecordWriter to use.
IOException - if an exception occurs during initialization
public void putNext(Tuple tuple)
throws IOException
StoreFuncInterface
putNext in interface StoreFuncInterfacetuple - the tuple to store.
IOException - if an exception occurs during the writepublic 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
public void cleanupOnSuccess(String location,
org.apache.hadoop.mapreduce.Job job)
throws IOException
StoreFuncInterface
cleanupOnSuccess 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.
IOExceptionprotected String getMethodName(int depth)
depth -
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||