public class OrcStorage extends LoadFunc implements StoreFuncInterface, LoadMetadata, LoadPushDown, LoadPredicatePushdown, StoreResources
-s, --stripeSize Set the stripe size for the file
 -r, --rowIndexStride Set the distance between entries in the row index
 -b, --bufferSize The size of the memory buffers used for compressing and storing the
 stripe in memory
 -p, --blockPadding Sets whether the HDFS blocks are padded to prevent stripes
 from straddling blocks
 -c, --compress Sets the generic compression that is used to compress the data.
 Valid codecs are: NONE, ZLIB, SNAPPY, LZO
 -v, --version Sets the version of the file that will be written
 LoadPushDown.OperatorSet, LoadPushDown.RequiredField, LoadPushDown.RequiredFieldList, LoadPushDown.RequiredFieldResponse| Modifier and Type | Field and Description | 
|---|---|
protected org.apache.hadoop.mapreduce.RecordReader | 
in  | 
protected static org.apache.commons.logging.Log | 
log  | 
protected boolean[] | 
mRequiredColumns  | 
protected org.apache.hadoop.mapreduce.RecordWriter | 
writer  | 
| Constructor and Description | 
|---|
OrcStorage()  | 
OrcStorage(java.lang.String options)  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
checkSchema(ResourceSchema rs)
Set the schema for data to be stored. 
 | 
void | 
cleanupOnFailure(java.lang.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(java.lang.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. 
 | 
java.util.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. 
 | 
java.lang.String[] | 
getPartitionKeys(java.lang.String location,
                org.apache.hadoop.mapreduce.Job job)
Find what columns are partition keys for this input. 
 | 
java.util.List<java.lang.String> | 
getPredicateFields(java.lang.String location,
                  org.apache.hadoop.mapreduce.Job job)
Find what fields of the data can support predicate pushdown. 
 | 
ResourceSchema | 
getSchema(java.lang.String location,
         org.apache.hadoop.mapreduce.Job job)
Get a schema for the data to be loaded. 
 | 
java.util.List<java.lang.String> | 
getShipFiles()
Allow a LoadFunc to specify a list of files located locally and would like to ship to backend 
 (through distributed cache). 
 | 
ResourceStatistics | 
getStatistics(java.lang.String location,
             org.apache.hadoop.mapreduce.Job job)
Get statistics about the data to be loaded. 
 | 
java.util.List<Expression.OpType> | 
getSupportedExpressionTypes()
Indicate operations on fields supported by the loader for predicate pushdown 
 | 
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 t)
Write a tuple to the data store. 
 | 
java.lang.String | 
relToAbsPathForStoreLocation(java.lang.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(java.lang.String location,
           org.apache.hadoop.mapreduce.Job job)
Communicate to the loader the location of the object(s) being loaded. 
 | 
void | 
setPartitionFilter(Expression partitionFilter)
Set the filter for partitioning. 
 | 
void | 
setPushdownPredicate(Expression expr)
Push down expression to the loader 
 | 
void | 
setStoreFuncUDFContextSignature(java.lang.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(java.lang.String location,
                org.apache.hadoop.mapreduce.Job job)
Communicate to the storer the location where the data needs to be stored. 
 | 
void | 
setUDFContextSignature(java.lang.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. | 
getAbsolutePath, getCacheFiles, getLoadCaster, getPathStrings, join, relativeToAbsolutePath, warnclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetCacheFilesprotected org.apache.hadoop.mapreduce.RecordReader in
protected org.apache.hadoop.mapreduce.RecordWriter writer
protected static final org.apache.commons.logging.Log log
protected boolean[] mRequiredColumns
public OrcStorage()
public OrcStorage(java.lang.String options)
public java.lang.String relToAbsPathForStoreLocation(java.lang.String location,
                                            org.apache.hadoop.fs.Path curDir)
                                              throws java.io.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/
java.io.IOException - if the conversion is not possiblepublic org.apache.hadoop.mapreduce.OutputFormat getOutputFormat()
                                                         throws java.io.IOException
StoreFuncInterfacegetOutputFormat in interface StoreFuncInterfaceOutputFormat associated with StoreFuncInterfacejava.io.IOException - if an exception occurs while constructing the 
 OutputFormatpublic void setStoreLocation(java.lang.String location,
                    org.apache.hadoop.mapreduce.Job job)
                      throws java.io.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 objectjava.io.IOException - if the location is not valid.public void checkSchema(ResourceSchema rs) throws java.io.IOException
StoreFuncInterfacecheckSchema in interface StoreFuncInterfacers - to be checkedjava.io.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 writer)
                    throws java.io.IOException
StoreFuncInterfaceprepareToWrite in interface StoreFuncInterfacewriter - RecordWriter to use.java.io.IOException - if an exception occurs during initializationpublic void putNext(Tuple t) throws java.io.IOException
StoreFuncInterfaceputNext in interface StoreFuncInterfacet - the tuple to store.java.io.IOException - if an exception occurs during the writepublic void setStoreFuncUDFContextSignature(java.lang.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 StoreFuncInterfacepublic void setUDFContextSignature(java.lang.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 LoadFuncsetUDFContextSignature in class LoadFuncsignature - a unique signature to identify this LoadFuncpublic void cleanupOnFailure(java.lang.String location,
                    org.apache.hadoop.mapreduce.Job job)
                      throws java.io.IOException
StoreFuncInterfacecleanupOnFailure 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.java.io.IOExceptionpublic void cleanupOnSuccess(java.lang.String location,
                    org.apache.hadoop.mapreduce.Job job)
                      throws java.io.IOException
StoreFuncInterfacecleanupOnSuccess 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.java.io.IOExceptionpublic void setLocation(java.lang.String location,
               org.apache.hadoop.mapreduce.Job job)
                 throws java.io.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 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.setLocation in class LoadFunclocation - Location as returned by 
 LoadFunc.relativeToAbsolutePath(String, Path)job - the Job object
 store or retrieve earlier stored information from the UDFContextjava.io.IOException - if the location is not valid.public org.apache.hadoop.mapreduce.InputFormat getInputFormat()
                                                       throws java.io.IOException
LoadFuncgetInputFormat in class LoadFuncjava.io.IOException - if there is an exception during InputFormat 
 constructionpublic void prepareToRead(org.apache.hadoop.mapreduce.RecordReader reader,
                 PigSplit split)
                   throws java.io.IOException
LoadFuncprepareToRead in class LoadFuncreader - RecordReader to be used by this instance of the LoadFuncsplit - The input PigSplit to processjava.io.IOException - if there is an exception during initializationpublic Tuple getNext() throws java.io.IOException
LoadFuncpublic java.util.List<java.lang.String> getShipFiles()
LoadFuncFuncUtils for utility function to facilitate it
 The default implementation returns null.getShipFiles in interface StoreResourcesgetShipFiles in class LoadFuncpublic ResourceSchema getSchema(java.lang.String location, org.apache.hadoop.mapreduce.Job job) throws java.io.IOException
LoadMetadatagetSchema in interface LoadMetadatalocation - Location as returned by 
 LoadFunc.relativeToAbsolutePath(String, org.apache.hadoop.fs.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.java.io.IOException - if an exception occurs while determining the schemapublic ResourceStatistics getStatistics(java.lang.String location, org.apache.hadoop.mapreduce.Job job) throws java.io.IOException
LoadMetadataLoadFunc, then LoadFunc.setLocation(String, org.apache.hadoop.mapreduce.Job)
 is guaranteed to be called before this method.getStatistics in interface LoadMetadatalocation - Location as returned by 
 LoadFunc.relativeToAbsolutePath(String, org.apache.hadoop.fs.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.java.io.IOException - if an exception occurs while retrieving statisticspublic java.lang.String[] getPartitionKeys(java.lang.String location,
                                  org.apache.hadoop.mapreduce.Job job)
                                    throws java.io.IOException
LoadMetadatagetPartitionKeys in interface LoadMetadatalocation - Location as returned by 
 LoadFunc.relativeToAbsolutePath(String, org.apache.hadoop.fs.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.java.io.IOException - if an exception occurs while retrieving partition keyspublic void setPartitionFilter(Expression partitionFilter) throws java.io.IOException
LoadMetadataLoadMetadata.getPartitionKeys(String, Job), then this method is not
 called by Pig runtime. This method is also not called by the Pig runtime
 if there are no partition filter conditions.setPartitionFilter in interface LoadMetadatapartitionFilter - that describes filter for partitioningjava.io.IOException - if the filter is not compatible with the storage
 mechanism or contains non-partition fields.public java.util.List<LoadPushDown.OperatorSet> getFeatures()
LoadPushDowngetFeatures in interface LoadPushDownpublic LoadPushDown.RequiredFieldResponse pushProjection(LoadPushDown.RequiredFieldList requiredFieldList) throws FrontendException
LoadPushDownpushProjection in interface LoadPushDownrequiredFieldList - RequiredFieldList indicating which columns will be needed.
 This structure is read only. User cannot make change to it inside pushProjection.FrontendExceptionpublic java.util.List<java.lang.String> getPredicateFields(java.lang.String location,
                                                  org.apache.hadoop.mapreduce.Job job)
                                                    throws java.io.IOException
LoadPredicatePushdowngetPredicateFields in interface LoadPredicatePushdownlocation - Location as returned by
 LoadFunc.relativeToAbsolutePath(String, org.apache.hadoop.fs.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.java.io.IOException - if an exception occurs while retrieving predicate fieldspublic java.util.List<Expression.OpType> getSupportedExpressionTypes()
LoadPredicatePushdowngetSupportedExpressionTypes in interface LoadPredicatePushdownpublic void setPushdownPredicate(Expression expr) throws java.io.IOException
LoadPredicatePushdownsetPushdownPredicate in interface LoadPredicatePushdownexpr - expression to be filtered by the loader.java.io.IOExceptionCopyright © 2007-2012 The Apache Software Foundation