public class AvroStorage extends FileInputLoadFunc implements StoreFuncInterface, LoadMetadata
| Constructor and Description |
|---|
AvroStorage()
Empty constructor.
|
AvroStorage(java.lang.String[] parts)
Constructor of quoted string list
|
| Modifier and Type | Method and Description |
|---|---|
void |
checkSchema(ResourceSchema s)
Append newly specified schema
|
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.
|
protected org.apache.avro.Schema |
getAvroSchema(org.apache.hadoop.fs.Path path,
org.apache.hadoop.fs.FileSystem fs)
Get avro schema of input path.
|
protected org.apache.avro.Schema |
getAvroSchema(java.util.Set<org.apache.hadoop.fs.Path> paths,
org.apache.hadoop.conf.Configuration conf)
Get avro schema of first input file that matches the location pattern.
|
org.apache.hadoop.mapreduce.InputFormat |
getInputFormat()
This will be called during planning on the front end.
|
protected org.apache.avro.Schema |
getMergedSchema(java.util.Set<org.apache.hadoop.fs.Path> basePaths,
org.apache.hadoop.conf.Configuration conf)
Merge multiple input avro schemas into one.
|
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.
|
protected org.apache.avro.Schema |
getSchema(org.apache.hadoop.fs.Path path,
org.apache.hadoop.fs.FileSystem fs)
This method is called by
getAvroSchema(java.util.Set<org.apache.hadoop.fs.Path>, org.apache.hadoop.conf.Configuration). |
ResourceSchema |
getSchema(java.lang.String location,
org.apache.hadoop.mapreduce.Job job)
Get avro schema from "location" and return the converted
PigSchema.
|
protected org.apache.avro.Schema |
getSchemaFromFile(org.apache.hadoop.fs.Path path,
org.apache.hadoop.fs.FileSystem fs)
This method is called to return the schema of an avro schema file.
|
ResourceStatistics |
getStatistics(java.lang.String location,
org.apache.hadoop.mapreduce.Job job)
Get statistics about the data to be loaded.
|
protected void |
init(java.util.Map<java.lang.String,java.lang.Object> inputs)
Initialize output avro schema using input property map
|
protected java.util.Map<java.lang.String,java.lang.Object> |
parseJsonString(java.lang.String jsonString)
build a property map from a json object
|
protected java.util.Map<java.lang.String,java.lang.Object> |
parseStringList(java.lang.String[] parts)
build a property map from a string list
|
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.
|
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.
|
protected void |
setInputAvroSchema(java.util.Set<org.apache.hadoop.fs.Path> paths,
org.apache.hadoop.conf.Configuration conf)
Set input avro schema.
|
void |
setLocation(java.lang.String location,
org.apache.hadoop.mapreduce.Job job)
Set input location and obtain input schema.
|
void |
setPartitionFilter(Expression partitionFilter)
Set the filter for partitioning.
|
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. |
getSplitComparablegetAbsolutePath, getCacheFiles, getLoadCaster, getPathStrings, getShipFiles, join, relativeToAbsolutePath, warnpublic AvroStorage()
public AvroStorage(java.lang.String[] parts)
throws java.io.IOException,
org.json.simple.parser.ParseException
parts - quoted string listjava.io.IOExceptionorg.json.simple.parser.ParseExceptionpublic void setLocation(java.lang.String location,
org.apache.hadoop.mapreduce.Job job)
throws java.io.IOException
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 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 LoadFuncprotected void setInputAvroSchema(java.util.Set<org.apache.hadoop.fs.Path> paths,
org.apache.hadoop.conf.Configuration conf)
throws java.io.IOException
paths - set of input filesconf - configurationjava.io.IOExceptionprotected org.apache.avro.Schema getAvroSchema(java.util.Set<org.apache.hadoop.fs.Path> paths,
org.apache.hadoop.conf.Configuration conf)
throws java.io.IOException
paths - set of input filesconf - configurationjava.io.IOExceptionprotected org.apache.avro.Schema getAvroSchema(org.apache.hadoop.fs.Path path,
org.apache.hadoop.fs.FileSystem fs)
throws java.io.IOException
path - input pathfs - file systemjava.io.IOException - if underlying sub-directories do not share the same schema; or if input path is empty or does not existprotected org.apache.avro.Schema getMergedSchema(java.util.Set<org.apache.hadoop.fs.Path> basePaths,
org.apache.hadoop.conf.Configuration conf)
throws java.io.IOException
basePaths - set of input dir or filesconf - configurationjava.io.IOExceptionprotected org.apache.avro.Schema getSchema(org.apache.hadoop.fs.Path path,
org.apache.hadoop.fs.FileSystem fs)
throws java.io.IOException
getAvroSchema(java.util.Set<org.apache.hadoop.fs.Path>, org.apache.hadoop.conf.Configuration). The default implementation
returns the schema of an avro file; or the schema of the last file in a first-level
directory (it does not contain sub-directories).path - path of a file or first level directoryfs - file systemjava.io.IOExceptionprotected org.apache.avro.Schema getSchemaFromFile(org.apache.hadoop.fs.Path path,
org.apache.hadoop.fs.FileSystem fs)
throws java.io.IOException
getSchema(org.apache.hadoop.fs.Path, org.apache.hadoop.fs.FileSystem), which returns the schema
from a data file.path - path of a file or first level directoryfs - file systemjava.io.IOExceptionpublic 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 ResourceSchema getSchema(java.lang.String location, org.apache.hadoop.mapreduce.Job job) throws java.io.IOException
getSchema 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.protected java.util.Map<java.lang.String,java.lang.Object> parseJsonString(java.lang.String jsonString)
throws org.json.simple.parser.ParseException
jsonString - json object in string formatorg.json.simple.parser.ParseExceptionprotected java.util.Map<java.lang.String,java.lang.Object> parseStringList(java.lang.String[] parts)
throws java.io.IOException
parts - input string listjava.io.IOExceptionorg.json.simple.parser.ParseExceptionprotected void init(java.util.Map<java.lang.String,java.lang.Object> inputs)
throws java.io.IOException
java.io.IOExceptionpublic 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 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 s) throws java.io.IOException
checkSchema in interface StoreFuncInterfaces - 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 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 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 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 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 putNext(Tuple t) throws java.io.IOException
StoreFuncInterfaceputNext in interface StoreFuncInterfacet - the tuple to store.java.io.IOException - if an exception occurs during the writeCopyright © 2007-2012 The Apache Software Foundation