use of org.apache.hadoop.io.erasurecode.rawcoder.DummyRawDecoder in project hadoop by apache.
the class DummyErasureDecoder method prepareDecodingStep.
@Override
protected ErasureCodingStep prepareDecodingStep(ECBlockGroup blockGroup) {
RawErasureDecoder rawDecoder = new DummyRawDecoder(getOptions());
ECBlock[] inputBlocks = getInputBlocks(blockGroup);
return new ErasureDecodingStep(inputBlocks, getErasedIndexes(inputBlocks), getOutputBlocks(blockGroup), rawDecoder);
}
Aggregations