当使用MapReduce处理压缩文件时,需要考虑压缩文件的可分割性。如果文件是一个bzip2格式的压缩文件,那么,MapReduce作业可以通过bzip2格式压缩文件中的块,将输入划分为若干输入分片,并从块开始处开始解压缩数据。Bzip2格式压缩文件中,块与块间提供了一个48位的同步标记,因此,bzip2支持数据分割。下表列出了一些可以用于Hadoop的常见压缩格式以及特性。
压缩格式 |
UNIX工具 |
算法 |
文件扩展名 |
支持多文件 |
可分割 |
DEFLATE |
无 |
DEFLATE |
.deflate |
否 |
否 |
gzip |
gzip |
DEFLATE |
.gz |
否 |
否 |
zip |
zip |
DEFLATE |
.zip |
是 |
是 |
bzip |
bzip2 |
bzip2 |
.bz2 |
否 |
是 |
LZO |
lzop |
LZO |
.lzo |
否 |
否 |
目前,Hadoop支持的编码/解码器如下表:
压缩格式 |
对应的编码/解码器 |
DEFLATE |
org.apache.hadoop.io.compress.DefaultCodec |
gzip |
org.apache.hadoop.io.compress.GzipCodec |
bzip |
org.apache.hadoop.io.compress.BZip2Codec |
Snappy |
|
1 Hadoop压缩API应用实例
compress()方法接受一个字符串参数,用于指定编码/解码器,并用对应的压缩算法对文本文件README.txt进行压缩。
public static void compress(String method) throws Exception {
File fileIn = new File("README.txt");
InputStream in = new FileInputStream(fileIn);
Class<?> codecClass = Class.forName(method);
Configuration conf = new Configuration();
// 通过名称找对应的编码/解码器
CompressionCodec codec = (CompressionCodec) ReflectionUtils.newInstance(codecClass, conf);
File fileOut = new File("README.txt" + codec.getDefaultExtension());
fileOut.delete();
OutputStream out = new FileOutputStream(fileOut);
// 通过编码/解码器创建对应的输出流
CompressionOutputStream cout = codec.createOutputStream(out);
// 压缩
IOUtils.copyBytes(in, cout, 4096, false);
in.close();
cout.close();
}
需要解压缩文件时,通常通过其扩展名来推断它对应的编码/解码器,进而用相应的解码流对数据进行解码。
public static void decompress(File file) throws IOException {
Configuration conf = new Configuration();
CompressionCodecFactory factory = new CompressionCodecFactory(conf) ;
// 通过文件扩展名获得相应的编码/解码器
CompressionCodec codec = factory.getCodec(new Path(file.getName()));
if (codec == null) {
System.out.println("找不到文件。");
return ;
}
File fileOut = new File(file.getName()+".txt");
InputStream in = codec.createInputStream(new FileInputStream(file));
... ...
}
2 Hadoop压缩框架
2.1 编码/解码器
前面已经提过,CompressionCodec接口实现了编码/解码器,使用的是抽象工厂的设计模式,用于创建一系列相关或互相依赖的对象。CompressionCodec可以获得和某一个压缩算法相关的对象,包括压缩流和解压缩流等。
public interface CompressionCodec {
/**
* Create a {@link CompressionOutputStream} that will write to the given
* {@link OutputStream}.
* @param out the location for the final output stream
* @return a stream the user can write uncompressed data to have it compressed
* @throws IOException
*/
CompressionOutputStream createOutputStream(OutputStream out)
throws IOException;
/**
* Create a {@link CompressionOutputStream} that will write to the given
* {@link OutputStream} with the given {@link Compressor}.
* @param out the location for the final output stream
* @param compressor compressor to use
* @return a stream the user can write uncompressed data to have it compressed
* @throws IOException
*/
CompressionOutputStream createOutputStream(OutputStream out,
Compressor compressor)
throws IOException;
/**
* Get the type of {@link Compressor} needed by this {@link CompressionCodec}.
* @return the type of compressor needed by this codec.
*/
Class<? extends Compressor> getCompressorType();
/**
* Create a new {@link Compressor} for use by this {@link CompressionCodec}.
* @return a new compressor for use by this codec
*/
Compressor createCompressor();
/**
* Create a stream decompressor that will read from the given input stream.
* @param in the stream to read compressed bytes from
* @return a stream to read uncompressed bytes from
* @throws IOException
*/
CompressionInputStream createInputStream(InputStream in) throws IOException;
/**
* Create a {@link CompressionInputStream} that will read from the given
* {@link InputStream} with the given {@link Decompressor}.
* @param in the stream to read compressed bytes from
* @param decompressor decompressor to use
* @return a stream to read uncompressed bytes from
* @throws IOException
*/
CompressionInputStream createInputStream(InputStream in,
Decompressor decompressor)
throws IOException; /**
* Get the type of {@link Decompressor} needed by this {@link CompressionCodec}.
* @return the type of decompressor needed by this codec.
*/
Class<? extends Decompressor> getDecompressorType();
/**
* Create a new {@link Decompressor} for use by this {@link CompressionCodec}.
* @return a new decompressor for use by this codec
*/
Decompressor createDecompressor();
/**
* Get the default filename extension for this kind of compression.
* @return the extension including the '.'
*/
String getDefaultExtension();
}
compressionCodecFactory是Hadoop压缩框架中的另一个类,它应用了工厂方法(参数化工厂方法),用于创建多种产品,如CompressionCodec,GzipCodec,BZip2Codec对象。实现代码如下:
public class CompressionCodecFactory {
/**
* A map from the reversed filename suffixes to the codecs.
* This is probably overkill, because the maps should be small, but it
* automatically supports finding the longest matching suffix.
*/
private SortedMap<String, CompressionCodec> codecs = null;
private void addCodec(CompressionCodec codec) {
String suffix = codec.getDefaultExtension();
codecs.put(new StringBuffer(suffix).reverse().toString(), codec);
}
/**
* Find the codecs specified in the config value io.compression.codecs
* and register them. Defaults to gzip and zip.
*/
public CompressionCodecFactory(Configuration conf) {
codecs = new TreeMap<String, CompressionCodec>();
List<Class<? extends CompressionCodec>> codecClasses = getCodecClasses(conf);
if (codecClasses == null) {
addCodec(new GzipCodec());
addCodec(new DefaultCodec());
} else {
Iterator<Class<? extends CompressionCodec>> itr = codecClasses.iterator();
while (itr.hasNext()) {
CompressionCodec codec = ReflectionUtils.newInstance(itr.next(), conf);
addCodec(codec);
}
}
}
/**
* Find the relevant compression codec for the given file based on its
* filename suffix.
* @param file the filename to check
* @return the codec object
*/
public CompressionCodec getCodec(Path file) {
CompressionCodec result = null;
if (codecs != null) {
String filename = file.getName();
String reversedFilename = new StringBuffer(filename).reverse().toString();
SortedMap<String, CompressionCodec> subMap =
codecs.headMap(reversedFilename);
if (!subMap.isEmpty()) {
String potentialSuffix = subMap.lastKey();
if (reversedFilename.startsWith(potentialSuffix)) {
result = codecs.get(potentialSuffix);
}
}
}
return result;
}
}
getCodec()方法的代码看似复杂,但通过灵活使用有序映射SortedMap,实现其实还是非常简单的。
2.2 压缩器和解压器
压缩器(Compressor)和解压缩器(Decompressor)中Hadoop压缩框架中的一对重要概念。Compressor可以插入压缩输出流的实现中,提供具体的压缩功能;相反,Decompressor提供具体的解压缩功能并插入CompressionInputStream中。
在eclipse开发工具中Compressor和Decompressor的大纲视图如下所示:
使用Compressor的一个典型实例如下:
public static void compressor() throws ClassNotFoundException, IOException {
// 读入被压缩的内容
File fileIn = new File("README.txt");
InputStream in = new FileInputStream(fileIn);
int datalength = in.available();
byte[] inbuf = new byte[datalength];
in.read(inbuf, 0, datalength);
in.close();
// 长度受限制的输出缓冲区,用于说明finished()方法
int compressorOutputBufferSize = 100;
byte[] outbuf = new byte[compressorOutputBufferSize];
Compressor compressor = new BuiltInZlibDeflater(); // 构造压缩器
int step = 100; // 一些计数器
int inputPos = 0;
int putcount = 0;
int getcount = 0;
int compressedlen = 0;
while (inputPos < datalength) {
// 进行多次setInput
int len = (datalength-inputPos>=step)?step:datalength-inputPos;
compressor.setInput(inbuf, inputPos, len);
putcount++;
while (!compressor.needsInput()) {
compressedlen = compressor.compress(outbuf, 0 , 100);
if (compressedlen>0) {
getcount++
}
}
inputPos+=step;
}
compressor.finish();
while (!compressor.finished()) {
getcount++;
compressor.compress(outbuf, 0, compressorOutputBufferSize);
}
System.out.println(compressor.getBytesRead());
System.out.println(compressor.getBytesWritten());
System.out.println(putcount);
compressor.end();
}
以上代码实现了setInput()、needsInput()、finish()、compress()和finished()的配合过程。
2.3 压缩流和解压缩流
压缩流(CompressionOutputStream)和解压缩流(CompressionInputStream)是Hadoop压缩框架中另一对重要概念,它提供了基于流的压缩解压能力。相关代码如下:
public abstract class CompressionOutputStream extends OutputStream {
/**
* The output stream to be compressed.
*/
protected final OutputStream out;
/**
* Create a compression output stream that writes
* the compressed bytes to the given stream.
* @param out
*/
protected CompressionOutputStream(OutputStream out) {
this.out = out;
}
public void close() throws IOException {
finish();
out.close();
}
public void flush() throws IOException {
out.flush();
}
/**
* Write compressed bytes to the stream.
* Made abstract to prevent leakage to underlying stream.
*/
public abstract void write(byte[] b, int off, int len) throws IOException;
/**
* Finishes writing compressed data to the output stream
* without closing the underlying stream.
*/
public abstract void finish() throws IOException;
/**
* Reset the compression to the initial state.
* Does not reset the underlying stream.
*/
public abstract void resetState() throws IOException;
}
CompressorStream使用压缩器实现了一个通用的压缩流,主要代码如下:
public class CompressorStream extends CompressionOutputStream {
protected Compressor compressor;
protected byte[] buffer;
protected boolean closed = false;
public CompressorStream(OutputStream out, Compressor compressor, int bufferSize) {
super(out);
if (out == null || compressor == null) {
throw new NullPointerException();
} else if (bufferSize <= 0) {
throw new IllegalArgumentException("Illegal bufferSize");
}
this.compressor = compressor;
buffer = new byte[bufferSize];
}
public void write(byte[] b, int off, int len) throws IOException {
// Sanity checks
if (compressor.finished()) {
throw new IOException("write beyond end of stream");
}
if ((off | len | (off + len) | (b.length - (off + len))) < 0) {
throw new IndexOutOfBoundsException();
} else if (len == 0) {
return;
}
compressor.setInput(b, off, len);
while (!compressor.needsInput()) {
compress();
}
}
protected void compress() throws IOException {
int len = compressor.compress(buffer, 0, buffer.length);
if (len > 0) {
out.write(buffer, 0, len);
}
}
public void finish() throws IOException {
if (!compressor.finished()) {
compressor.finish();
while (!compressor.finished()) {
compress();
}
}
}
public void resetState() throws IOException {
compressor.reset();
}
public void close() throws IOException {
if (!closed) {
finish();
out.close();
closed = true;
}
}
private byte[] oneByte = new byte[1];
public void write(int b) throws IOException {
oneByte[0] = (byte)(b & 0xff);
write(oneByte, 0, oneByte.length);
}
}
CompressorStream利用压缩器Compressor实现了一个通用的压缩流,在Hadoop中引入一个新的压缩算法,如果没有特殊的考虑,一般只需要实现相关的压缩器和解压缩器,然后通过CompressorStream和DecompressorStream,就实现相关压缩算法的输入/输出流了。
相关推荐
使用`tar -zxvf`命令解压缩文件,并使用`mv`命令重命名解压后的目录为`hadoop`,这样可以简化后续操作。通过`ls`命令检查文件是否已正确解压和重命名。 Hadoop的主要目录结构包括: - `bin`: 包含可执行脚本,如...
同样的过程也适用于Hadoop,下载并解压缩Hadoop二进制文件到`/apps`目录,然后重命名文件夹为`hadoop`。再次编辑`~/.bashrc`,添加`HADOOP_HOME`和对应的`PATH`变量。 至此,Hadoop的安装基础已完成,但还需要进行...
4. **下载Hadoop**:从Apache网站下载Hadoop的tar.gz文件,解压缩并移动到 `/usr/local/hadoop` 目录下。 5. **配置Hadoop环境变量**:编辑`~/.bashrc`文件,添加Hadoop的路径到PATH变量中,并使更改生效。 6. **...
通过`wget`命令获取Hadoop的tarball文件,例如Hadoop 2.7.5,然后解压缩到指定目录,并创建软链接以简化后续操作。在Hadoop的安装目录下,通过运行`./bin/hadoop version`来验证安装是否成功,如果显示Hadoop的版本...
答:解压缩 Hadoop 软件包,创建必要的目录,如 TMP DIR、NameNode DIR 和 DataNode DIR,然后配置 core-site.xml 文件。 5. Hadoop 的组件有哪些? 答:Hadoop 由多个组件组成,包括 HDFS、MapReduce、YARN 等。 ...
这通常包括了Hadoop的bin、sbin、conf等目录,你需要下载并解压缩到本地的一个位置,然后将这个位置设为`HADOOP_HOME`。 配置环境变量的过程如下: 1. 在Windows中,你可以通过编辑`系统属性` > `高级系统设置` > `...
解压缩后的文件夹可能包含Hadoop的源代码、配置文件、可执行二进制文件等。然后,你需要将这些文件上传到Linux服务器,这可以借助FTP、SCP或SFTP等工具完成。 在Linux下安装配置Hadoop涉及以下关键步骤: 1. **...
这个tarball文件通常在Linux环境下使用,通过解压缩可以得到Hadoop的源代码和二进制文件。用户需要配置环境变量、核心配置文件(如`core-site.xml`,`hdfs-site.xml`)以及集群设置,然后启动Hadoop服务,包括...
此外,Hadoop的HDFS客户端也可以选择在上传文件时进行Snappy压缩,或者在下载时解压缩。这通常通过命令行选项或编程API实现。例如,使用HDFS shell命令,你可以这样上传一个Snappy压缩的文件: ``` hadoop fs -put -...
【大数据与云计算培训学习资料 hadoop + eclipse源码环境搭建】是关于如何在Eclipse环境中配置和搭建Hadoop源码的教程。Hadoop是一个开源的分布式计算框架,它使用Apache Ant进行构建管理,并通过Ivy依赖管理系统来...
1. **解压文件**: 首先,将"hadop-3.1.0-windows.7z"解压缩到一个合适的目录。 2. **配置环境变量**: 设置HADOOP_HOME环境变量指向Hadoop的安装目录,并将%HADOOP_HOME%\bin添加到PATH环境变量。 3. **编辑配置...
2. **解压安装包**:使用`unrar`命令解压缩下载的rar文件,得到Hadoop的安装目录。 3. **配置环境变量**:在`~/.bashrc`或`~/.bash_profile`文件中添加Hadoop的环境变量,包括`HADOOP_HOME`和`PATH`。 4. **配置...
- **解压缩 test.tar.gz 到/tmp目录**:`tar -xzvf /test.tar.gz -C /tmp` **16. `grep` 命令**:用于在文件中搜索指定的模式。 - **从“~/.bashrc”文件中查找字符串'examples'**:`grep examples ~/.bashrc` *...
Snappy以其低开销和快速的压缩与解压缩速度而闻名,尤其适合大数据流处理系统,如Hadoop MapReduce。 Hadoop 3.0是Hadoop的重要升级版,引入了许多新特性和改进,包括但不限于: 1. **多NameNode支持**:Hadoop ...
3. Hadoop的下载与安装,包括解压缩文件、配置Hadoop环境变量、修改配置文件(如core-site.xml, hdfs-site.xml, yarn-site.xml, mapred-site.xml)。 4. 启动Hadoop集群,验证各个服务(NameNode, DataNode, ...
在大数据领域,Hadoop是一个关键的开源框架,用于存储和处理海量数据。Hadoop 2.7.2是Hadoop发展中的一个重要版本,它提供了稳定性和性能上的改进。本话题将详细探讨在Windows环境下编译Hadoop 2.7.2的过程以及相关...
在IT行业中,大数据技术是当前的关键领域之一,而Hadoop作为开源的大数据处理框架,扮演着核心角色。本文将详细讲解如何在虚拟机环境中安装Hadoop的基础步骤,涉及虚拟机软件的选择、安装、配置,以及Java环境的设置...
然后,下载并解压缩Hadoop,配置环境变量,修改配置文件如core-site.xml、hdfs-site.xml等。完成配置后,需将配置好的Hadoop复制到其他节点,并启动或停止Hadoop服务。通过运行简单的WordCount程序,可以验证Hadoop...