Package org.apache.hadoop.io.erasurecode.rawcoder
@Private
@Unstable
package org.apache.hadoop.io.erasurecode.rawcoder
Raw erasure coders.
Raw erasure coder is part of erasure codec framework, where erasure coder is
used to encode/decode a group of blocks (BlockGroup) according to the codec
specific BlockGroup layout and logic. An erasure coder extracts chunks of
data from the blocks and can employ various low level raw erasure coders to
perform encoding/decoding against the chunks.
To distinguish from erasure coder, here raw erasure coder is used to mean the
low level constructs, since it only takes care of the math calculation with
a group of byte buffers.
-
ClassDescriptionHelpful utilities for implementing some raw erasure coders.A utility class to validate decoding.A dummy raw decoder that does no real computation.A dummy raw encoder that does no real computation.A raw erasure coder factory for dummy raw coders.Thrown for invalid decoding.A Reed-Solomon raw decoder using Intel ISA-L library.A Reed-Solomon raw encoder using Intel ISA-L library.A raw coder factory for raw Reed-Solomon coder in native using Intel ISA-L.A XOR raw decoder using Intel ISA-L library.A XOR raw encoder using Intel ISA-L library.A raw coder factory for xor coder in native using Intel ISA-L library.Raw erasure coder factory that can be used to create raw encoder and decoder.An abstract raw erasure decoder that's to be inherited by new decoders.An abstract raw erasure encoder that's to be inherited by new encoders.A raw erasure decoder in RS code scheme in pure Java in case native one isn't available in some environment.A raw erasure encoder in RS code scheme in pure Java in case native one isn't available in some environment.A raw coder factory for the legacy raw Reed-Solomon coder in Java.A raw erasure decoder in RS code scheme in pure Java in case native one isn't available in some environment.A raw erasure encoder in RS code scheme in pure Java in case native one isn't available in some environment.A raw coder factory for the new raw Reed-Solomon coder in Java.A raw decoder in XOR code scheme in pure Java, adapted from HDFS-RAID.A raw encoder in XOR code scheme in pure Java, adapted from HDFS-RAID.A raw coder factory for raw XOR coder.