CBZip2InputStream in = new CBZip2InputStream(fileIn,9, end);
this.xmlLoaderBPIS = new XMLLoaderBufferedPositionedInputStream(in,start,end);
}
else if (file.toString().endsWith(".gz"))
{
CompressionCodecFactory compressionCodecs = new CompressionCodecFactory(job);
final CompressionCodec codec = compressionCodecs.getCodec(file);
if (codec != null) {
end = Long.MAX_VALUE;
CompressionInputStream stream = codec.createInputStream(fileIn);
this.xmlLoaderBPIS = new XMLLoaderBufferedPositionedInputStream(stream,start,end);
}