public class PigStreaming extends PigStreamingBase
PigStreamingBase
.
It converts tuples into fieldDel
separated lines
and fieldDel
separated lines into tuples.Constructor and Description |
---|
PigStreaming()
The constructor that uses the default field delimiter.
|
PigStreaming(java.lang.String delimiter)
The constructor that accepts a user-specified field
delimiter.
|
Modifier and Type | Method and Description |
---|---|
Tuple |
deserialize(byte[] bytes,
int offset,
int length)
Given a byte array from a streaming executable, produce a tuple.
|
LoadCaster |
getLoadCaster()
This will be called on the front end during planning and not on the back
end during execution.
|
WritableByteArray |
serializeToBytes(Tuple t)
Given a tuple, produce an array of bytes to be passed to the streaming
executable.
|
deserialize, serialize
public PigStreaming()
public PigStreaming(java.lang.String delimiter)
delimiter
- a String
specifying the field
delimiter.public WritableByteArray serializeToBytes(Tuple t) throws java.io.IOException
PigStreamingBase
serializeToBytes
in class PigStreamingBase
t
- Tuple to serializejava.io.IOException
public Tuple deserialize(byte[] bytes, int offset, int length) throws java.io.IOException
PigStreamingBase
deserialize
in class PigStreamingBase
bytes
- bytes to deserialize.offset
- the offset in the byte array from which to deserialize.length
- the number of bytes from the offset of the byte array to deserialize.java.io.IOException
public LoadCaster getLoadCaster() throws java.io.IOException
PigStreamingBase
getLoadCaster
in interface StreamToPig
getLoadCaster
in class PigStreamingBase
LoadCaster
associated with this object, or null if
there is no such LoadCaster.java.io.IOException
- if there is an exception during LoadCasterCopyright © 2007-2012 The Apache Software Foundation