public class AvroStorage extends FileInputLoadFunc implements StoreFuncInterface, LoadMetadata, StoreResources
Constructor and Description |
---|
AvroStorage()
Empty constructor.
|
AvroStorage(String[] parts)
Constructor of quoted string list
|
Modifier and Type | Method and Description |
---|---|
void |
checkSchema(ResourceSchema s)
Append newly specified schema
|
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 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(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(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.
|
String[] |
getPartitionKeys(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(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.
|
List<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(String location,
org.apache.hadoop.mapreduce.Job job)
Get statistics about the data to be loaded.
|
protected void |
init(Map<String,Object> inputs)
Initialize output avro schema using input property map
|
protected Map<String,Object> |
parseJsonString(String jsonString)
build a property map from a json object
|
protected Map<String,Object> |
parseStringList(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.
|
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.
|
protected void |
setInputAvroSchema(Set<org.apache.hadoop.fs.Path> paths,
org.apache.hadoop.conf.Configuration conf)
Set input avro schema.
|
void |
setLocation(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(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 . |
getSplitComparable
getAbsolutePath, getCacheFiles, getLoadCaster, getPathStrings, join, relativeToAbsolutePath, warn
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getCacheFiles
public AvroStorage()
public AvroStorage(String[] parts) throws IOException, org.json.simple.parser.ParseException
parts
- quoted string listIOException
org.json.simple.parser.ParseException
public void setLocation(String location, org.apache.hadoop.mapreduce.Job job) throws IOException
setLocation
in class LoadFunc
location
- 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 void setUDFContextSignature(String signature)
LoadFunc
LoadFunc
. 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 LoadFunc
signature
- a unique signature to identify this LoadFuncprotected void setInputAvroSchema(Set<org.apache.hadoop.fs.Path> paths, org.apache.hadoop.conf.Configuration conf) throws IOException
paths
- set of input filesconf
- configurationIOException
protected org.apache.avro.Schema getAvroSchema(Set<org.apache.hadoop.fs.Path> paths, org.apache.hadoop.conf.Configuration conf) throws IOException
paths
- set of input filesconf
- configurationIOException
protected org.apache.avro.Schema getAvroSchema(org.apache.hadoop.fs.Path path, org.apache.hadoop.fs.FileSystem fs) throws IOException
path
- input pathfs
- file systemIOException
- 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(Set<org.apache.hadoop.fs.Path> basePaths, org.apache.hadoop.conf.Configuration conf) throws IOException
basePaths
- set of input dir or filesconf
- configurationIOException
protected org.apache.avro.Schema getSchema(org.apache.hadoop.fs.Path path, org.apache.hadoop.fs.FileSystem fs) throws 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 systemIOException
protected org.apache.avro.Schema getSchemaFromFile(org.apache.hadoop.fs.Path path, org.apache.hadoop.fs.FileSystem fs) throws 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 systemIOException
public org.apache.hadoop.mapreduce.InputFormat getInputFormat() throws IOException
LoadFunc
getInputFormat
in class LoadFunc
IOException
- if there is an exception during InputFormat
constructionpublic void prepareToRead(org.apache.hadoop.mapreduce.RecordReader reader, PigSplit split) throws IOException
LoadFunc
prepareToRead
in class LoadFunc
reader
- RecordReader
to be used by this instance of the LoadFuncsplit
- The input PigSplit
to processIOException
- if there is an exception during initializationpublic Tuple getNext() throws IOException
LoadFunc
getNext
in class LoadFunc
IOException
- if there is an exception while retrieving the next
tuplepublic ResourceSchema getSchema(String location, org.apache.hadoop.mapreduce.Job job) throws IOException
getSchema
in interface LoadMetadata
location
- 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 JobContextImpl.getConfiguration()
and not to set/query
any runtime job information.IOException
- if an exception occurs while determining the schemapublic ResourceStatistics getStatistics(String location, org.apache.hadoop.mapreduce.Job job) throws IOException
LoadMetadata
LoadFunc
, then LoadFunc.setLocation(String, org.apache.hadoop.mapreduce.Job)
is guaranteed to be called before this method.getStatistics
in interface LoadMetadata
location
- 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 JobContextImpl.getConfiguration()
and not to set/query
any runtime job information.IOException
- if an exception occurs while retrieving statisticspublic String[] getPartitionKeys(String location, org.apache.hadoop.mapreduce.Job job) throws IOException
LoadMetadata
getPartitionKeys
in interface LoadMetadata
location
- 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 JobContextImpl.getConfiguration()
and not to set/query
any runtime job information.IOException
- if an exception occurs while retrieving partition keyspublic void setPartitionFilter(Expression partitionFilter) throws IOException
LoadMetadata
LoadMetadata.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 LoadMetadata
partitionFilter
- that describes filter for partitioningIOException
- if the filter is not compatible with the storage
mechanism or contains non-partition fields.protected Map<String,Object> parseJsonString(String jsonString) throws org.json.simple.parser.ParseException
jsonString
- json object in string formatorg.json.simple.parser.ParseException
protected Map<String,Object> parseStringList(String[] parts) throws IOException
parts
- input string listIOException
org.json.simple.parser.ParseException
protected void init(Map<String,Object> inputs) throws IOException
IOException
public String relToAbsPathForStoreLocation(String location, org.apache.hadoop.fs.Path curDir) throws IOException
StoreFuncInterface
LoadFunc.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 StoreFuncInterface
location
- 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 void setStoreLocation(String location, org.apache.hadoop.mapreduce.Job job) throws IOException
StoreFuncInterface
StoreFuncInterface
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 StoreFuncInterface
location
- Location returned by
StoreFuncInterface.relToAbsPathForStoreLocation(String, Path)
job
- The Job
objectIOException
- if the location is not valid.public void checkSchema(ResourceSchema s) throws IOException
checkSchema
in interface StoreFuncInterface
s
- to be checkedIOException
- 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 IOException
StoreFuncInterface
getOutputFormat
in interface StoreFuncInterface
OutputFormat
associated with StoreFuncInterfaceIOException
- if an exception occurs while constructing the
OutputFormatpublic void prepareToWrite(org.apache.hadoop.mapreduce.RecordWriter writer) throws IOException
StoreFuncInterface
prepareToWrite
in interface StoreFuncInterface
writer
- RecordWriter to use.IOException
- if an exception occurs during initializationpublic void setStoreFuncUDFContextSignature(String signature)
StoreFuncInterface
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. 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 StoreFuncInterface
signature
- a unique signature to identify this StoreFuncInterfacepublic void cleanupOnFailure(String location, org.apache.hadoop.mapreduce.Job job) throws IOException
StoreFuncInterface
cleanupOnFailure
in interface StoreFuncInterface
location
- Location returned by
StoreFuncInterface.relToAbsPathForStoreLocation(String, Path)
job
- The Job
object - this should be used only to obtain
cluster properties through JobContextImpl.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 StoreFuncInterface
location
- Location returned by
StoreFuncInterface.relToAbsPathForStoreLocation(String, Path)
job
- The Job
object - this should be used only to obtain
cluster properties through JobContextImpl.getConfiguration()
and not to set/query
any runtime job information.IOException
public void putNext(Tuple t) throws IOException
StoreFuncInterface
putNext
in interface StoreFuncInterface
t
- the tuple to store.IOException
- if an exception occurs during the writepublic List<String> getShipFiles()
LoadFunc
FuncUtils
for utility function to facilitate it
The default implementation returns null.getShipFiles
in interface StoreResources
getShipFiles
in class LoadFunc
Copyright © 2007-2017 The Apache Software Foundation