|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.hadoop.io.CompressedWritable
public abstract class CompressedWritable
A base-class for Writables which store themselves compressed and lazily inflate on field access. This is useful for large objects whose fields are not be altered during a map or reduce operation: leaving the field data compressed makes copying the instance from one file to another much faster.
Constructor Summary | |
---|---|
CompressedWritable()
|
Method Summary | |
---|---|
protected void |
ensureInflated()
Must be called by all methods which access fields to ensure that the data has been uncompressed. |
void |
readFields(java.io.DataInput in)
Deserialize the fields of this object from in . |
protected abstract void |
readFieldsCompressed(java.io.DataInput in)
Subclasses implement this instead of readFields(DataInput) . |
void |
write(java.io.DataOutput out)
Serialize the fields of this object to out . |
protected abstract void |
writeCompressed(java.io.DataOutput out)
Subclasses implement this instead of write(DataOutput) . |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public CompressedWritable()
Method Detail |
---|
public final void readFields(java.io.DataInput in) throws java.io.IOException
Writable
in
.
For efficiency, implementations should attempt to re-use storage in the existing object where possible.
readFields
in interface Writable
in
- DataInput
to deseriablize this object from.
java.io.IOException
protected void ensureInflated()
protected abstract void readFieldsCompressed(java.io.DataInput in) throws java.io.IOException
readFields(DataInput)
.
java.io.IOException
public final void write(java.io.DataOutput out) throws java.io.IOException
Writable
out
.
write
in interface Writable
out
- DataOuput
to serialize this object into.
java.io.IOException
protected abstract void writeCompressed(java.io.DataOutput out) throws java.io.IOException
write(DataOutput)
.
java.io.IOException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |