@InterfaceAudience.Public @InterfaceStability.Stable public abstract class LoadFunc extends java.lang.Object
InputFormat
.
LoadFunc's sit atop an InputFormat and translate from the keys and values of Hadoop
to Pig's tuples.
LoadFunc contains the basic features needed by the majority of load functions. For
more advanced functionality there are separate interfaces that a load function
can implement. See LoadCaster
, LoadMetadata
, LoadPushDown
,
OrderedLoadFunc
, CollectableLoadFunc
, and IndexableLoadFunc
.
Constructor and Description |
---|
LoadFunc() |
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
getAbsolutePath(java.lang.String location,
org.apache.hadoop.fs.Path curDir)
Construct the absolute path from the file location and the current
directory.
|
java.util.List<java.lang.String> |
getCacheFiles()
Allow a LoadFunc to specify a list of files it would like placed in the distributed
cache.
|
abstract org.apache.hadoop.mapreduce.InputFormat |
getInputFormat()
This will be called during planning on the front end.
|
LoadCaster |
getLoadCaster()
This will be called on the front end during planning and not on the back
end during execution.
|
abstract Tuple |
getNext()
Retrieves the next tuple to be processed.
|
static java.lang.String[] |
getPathStrings(java.lang.String commaSeparatedPaths)
Parse comma separated path strings into a string array.
|
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).
|
static java.lang.String |
join(java.util.AbstractCollection<java.lang.String> s,
java.lang.String delimiter)
Join multiple strings into a string delimited by the given delimiter.
|
abstract void |
prepareToRead(org.apache.hadoop.mapreduce.RecordReader reader,
PigSplit split)
Initializes LoadFunc for reading data.
|
java.lang.String |
relativeToAbsolutePath(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
input location to an absolute path if the location is relative.
|
abstract 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 |
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 . |
void |
warn(java.lang.String msg,
java.lang.Enum warningEnum)
Issue a warning.
|
public java.lang.String relativeToAbsolutePath(java.lang.String location, org.apache.hadoop.fs.Path curDir) throws java.io.IOException
location
- location as provided in the "load" statement of the scriptcurDir
- the current working direction based on any "cd" statements
in the script before the "load" 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 abstract void setLocation(java.lang.String location, org.apache.hadoop.mapreduce.Job job) throws java.io.IOException
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.location
- Location as returned by
relativeToAbsolutePath(String, Path)
job
- the Job
object
store or retrieve earlier stored information from the UDFContext
java.io.IOException
- if the location is not valid.public abstract org.apache.hadoop.mapreduce.InputFormat getInputFormat() throws java.io.IOException
java.io.IOException
- if there is an exception during InputFormat
constructionpublic LoadCaster getLoadCaster() throws java.io.IOException
LoadCaster
associated with this loader. Returning null
indicates that casts from byte array are not supported for this loader.
constructionjava.io.IOException
- if there is an exception during LoadCasterpublic abstract void prepareToRead(org.apache.hadoop.mapreduce.RecordReader reader, PigSplit split) throws java.io.IOException
reader
- RecordReader
to be used by this instance of the LoadFuncsplit
- The input PigSplit
to processjava.io.IOException
- if there is an exception during initializationpublic abstract Tuple getNext() throws java.io.IOException
java.io.IOException
- if there is an exception while retrieving the next
tuplepublic static java.lang.String join(java.util.AbstractCollection<java.lang.String> s, java.lang.String delimiter)
s
- a collection of stringsdelimiter
- the delimiterpublic static java.lang.String[] getPathStrings(java.lang.String commaSeparatedPaths)
FileInputFormat
. A jira
(MAPREDUCE-1205) is opened to make the same name method there
accessible. We'll use that method directly when the jira is fixed.commaSeparatedPaths
- a comma separated stringpublic static java.lang.String getAbsolutePath(java.lang.String location, org.apache.hadoop.fs.Path curDir) throws FrontendException
location
- the location string specified in the load statementcurDir
- the current file system directoryFrontendException
- if the scheme of the location is incompatible
with the scheme of the file systempublic void setUDFContextSignature(java.lang.String signature)
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 getNext()
.
This method will be call before other methods in LoadFunc
signature
- a unique signature to identify this LoadFuncpublic final void warn(java.lang.String msg, java.lang.Enum warningEnum)
msg
- String message of the warningwarningEnum
- type of warningpublic java.util.List<java.lang.String> getCacheFiles()
public java.util.List<java.lang.String> getShipFiles()
FuncUtils
for utility function to facilitate it
The default implementation returns null.Copyright © 2007-2012 The Apache Software Foundation