use of org.apache.hadoop.typedbytes.TypedBytesWritableOutput in project hadoop by apache.
the class TypedBytesInputWriter method initialize.
@Override
public void initialize(PipeMapRed pipeMapRed) throws IOException {
super.initialize(pipeMapRed);
DataOutput clientOut = pipeMapRed.getClientOutput();
tbOut = new TypedBytesOutput(clientOut);
tbwOut = new TypedBytesWritableOutput(clientOut);
}
Aggregations