译:ORCFILE IN HDP 2:更好的压缩,更高的性能

原文地址:

https://hortonworks.com/blog/orcfile-in-hdp-2-better-compression-better-performance/ios

ORCFILE IN HDP 2: BETTER COMPRESSION, BETTER PERFORMANCE

by
Carter Shanklin

 ORCFILE IN HDP 2:更好的压缩,更高的性能

The upcoming Hive 0.12 is set to bring some great new advancements in the storage layer in the forms of higher compression and better query performance.数据库

即将推出的Hive 0.12,将在存储层面带来一些大的进步,包括提供更高的压缩、以及更好的查询性能。

HIGHER COMPRESSION

更高的压缩

ORCFile was introduced in Hive 0.11 and offered excellent compression, delivered through a number of techniques including run-length encoding, dictionary encoding for strings and bitmap encoding.app

ORCFile格式在Hive 0.11中就已经被引入了,而且提供了出色的压缩性能。主要是基于如下几种技术: run-length 编码、字符串dictionary编码、bitmap编码。

This focus on efficiency leads to some impressive compression ratios. This picture shows the sizes of the TPC-DS dataset at Scale 500 in various encodings. This dataset contains randomly generated data including strings, floating point and integer data.less

对效率的追求,产生了出色的压缩比。下图展现 了在各类编码格式中,TPC-DS Scale 500数据集的大小。该数据集包含了随机生成的字符串、浮点、整型数据。

【Columnar format arranges columns adjacent within the file for compression & fast access 为了压缩和快速访问,纵列柱状格式将文件内相邻的列整理在一块儿】

We’ve already seen customers whose clusters are maxed out from a storage perspective moving to ORCFile as a way to free up space while being 100% compatible with existing jobs.dom

咱们看到,那些集群存储爆满的客户们,在保证100%兼容现有做业的前提下,已经采用ORCFile格式来释放存储空间。

Data stored in ORCFile can be read or written through HCatalog, so any Pig or Map/Reduce process can play along seamlessly. Hive 12 builds on these impressive compression ratios and delivers deep integration at the Hive and execution layers to accelerate queries, both from the point of view of dealing with larger datasets and lower latencies.ide

以ORCFile格式存储的数据,能够经过HCatalog读取或写入。所以,任何Pig程序或Map/Reduce程序,都能无缝衔接运行。从数据集处理和低延迟的角度来看,Hive 12基于其出色的压缩比,并在Hive和执行层面提供了深度集成,从而加速了查询。

PREDICATE PUSHDOWN

谓词下推

SQL queries will generally have some number of WHERE conditions which can be used to easily eliminate rows from consideration. In older versions of Hive, rows are read out of the storage layer before being later eliminated by SQL processing. There’s a lot of wasteful overhead and Hive 12 optimizes this by allowing predicates to be pushed down and evaluated in the storage layer itself. It’s controlled by the setting hive.optimize.ppd=true.工具

SQL查询一般会有一些where条件,用于简单排除一些数据行。在老版本Hive中,数据行先从存储层中读出,而后才进行过滤排除(执行where条件),所以形成了不少开销的浪费。在Hive 12中进行了优化,容许将谓词下推到存储层,并在存储层中进行计算。该优化能够经过参数进行设置:hive.optimize.ppd=true

This requires a reader that is smart enough to understand the predicates. Fortunately ORC has had the corresponding improvements to allow predicates to be pushed into it, and takes advantages of its inline indexes to deliver performance benefits.性能

这须要一个足够聪明的读者才能理解谓词。不过幸运的是,ORC已经进行了相应的改进,以便将谓词推入其中,并利用其内联索引的长处来提供性能优点。

For example if you have a SQL query like:优化

SELECT COUNT(*) FROM CUSTOMER WHERE CUSTOMER.state = CA’;
ui

The ORCFile reader will now only return rows that actually match the WHERE predicates and skip customers residing in any other state. The more columns you read from the table, the more data marshaling you avoid and the greater the speedup.

例如,假设你有这么一个查询SQL:
SELECT COUNT(*) FROM CUSTOMER WHERE CUSTOMER.state = ‘CA’;
如今,ORCFile reader将只返回实际匹配where条件的行数,而忽略那些where条件以外的数据。
所以,你从Table中读出的列越多,则避免传输的数据量就越大,速度提高越明显。

A WORD ON ORCFILE INLINE INDEXES

ORC文件内联索引中的单词

Before we move to the next section we need to spend a moment talking about how ORCFile breaks rows into row groups and applies columnar compression and indexing within these row groups.

在开始讨论下一节以前,咱们须要花一点时间来讨论ORCFile如何将行rows划分红行组row groups,并在这些行组内进行柱状压缩和索引。

TURNING PREDICATE PUSHDOWN TO 11

转向谓词下推到11

ORC’s Predicate Pushdown will consult the Inline Indexes to try to identify when entire blocks can be skipped all at once. Some times your dataset will naturally facilitate this. For instance if your data comes as a time series with a monotonically increasing timestamp, when you put a where condition on this timestamp, ORC will be able to skip a lot of row groups.

ORC的谓词下推参照了内联索引,以肯定什么时候能够一次性地忽略整个块。有时,你的数据集刚好天然地促成这一点。好比,若是你的数据以单调增加的时间戳做为时间序列,那么,当你以此时间戳做为过滤条件时,ORC将会跨过不少行组。
 

In other instances you may need to give things a kick by sorting data. If a column is sorted, relevant records will get confined to one area on disk and the other pieces will be skipped very quickly.

在其它状况下,你可能 须要经过对数据进行排序,从而给出一个依据。若是对列进行了排序,那么 ,相应的记录将被限定在磁盘的一个区域内,而其他部分将会被快速跳过。

Skipping works for number types and for string types. In both instances it’s done by recording a min and max value inside the inline index and determining if the lookup value falls outside that range.

跳过忽略适用于数值类型和字符串类型。在这两种类型的场景下,都会在内联索引中记录最小值/最大值,从而肯定要查询的值是否超出该范围。

Sorting can lead to very nice speedups. There is a trade-off in that you need to decide what columns to sort on in advance. The decision making process is somewhat similar to deciding what columns to index in traditional SQL systems. The best payback is when you have a column that is frequently used and accessed with very specific conditions and is used in a lot of queries. Remember that you can force Hive to sort on a column by using the SORT BY keyword when creating the table and setting hive.enforce.sorting to true before inserting into the table.

排序能带来至关好的速度提高。此处有一个权衡,须要你提早肯定参与排序的列。决策的过程有些相似于在传统SQL数据库中给哪些列创建索引。最佳实践是:那个被频繁使用、会以明确条件访问、且用于大量查询的列。请记住:你能够在建立表时使用SORT BY keyword强制Hive按某一个列进行排序,而后在向表中插入数据以前将hive.enforce.sorting设置为true。

ORCFile is an important piece of our Stinger Initiative to improve Hive performance 100x. To show the impact we ran a modified TPC-DS Query 27 query with a modified data schema. Query 27 does a star schema join on a large fact table, accessing 4 separate dimension tables. In the modified schema, the state in which the sale is made is denormalized into the fact table and the resulting table is sorted by state. In this way, when the query scans the fact table, it can skip entire blocks of rows because the query filters based on the state. This results in some incremental speedup as you can see from the chart below.

ORCFile是Stinger Initiative (一个完全提高Hive效率的工具)的重要组成部分,旨在将Hive性能提升100倍。为了展现效果,咱们运行一个改造了数据模型的 TPC-DS Query 27查询。Query 27在一个大的fact table上作了星形链接,来访问4个单独的维度表。在修改后的模型中的,销售状态被非规范化到fact table中,而且结束以状态排序。以这种方式,当查询扫描fact table时,它能够跳过整个的行块,由于查询基于状态列进行过滤,这会产生一些增量加速,以下图所示。

This feature gives you the best bang for the buck when:

  1. You frequently filter a large fact table in a precise way on a column with moderate to large cardinality.
  2. You select a large number of columns, or wide columns. The more data marshaling you save, the greater your speedup will be.
该功能为你提供了最佳选择:
一、在一个大型事实表中,你常常在某个中等到大基数列上,以精确方式进行过滤。
二、你在查询大量的列、或宽列时,传输的数据量越大,速度提高越明显。
 
【关于Fact table:
Fact table和dimension table这是数据仓库的两个概念,是数据仓库的两种类型表。从保存数据的角度来讲,本质上没区别,都是表。区别在于,Fact表用来存fact 数据,就是一些能够计量的数据和可加性数据,数据数量,金额等。dimension table用来存描述性的数据,用来描述fact的数据,如区域,销售表明,产品等。star schema 就是一个fact表有多个维表(dimension table)关联。
星形模式的基本特色是由多个维表(Dimension Table)和事实表(Fact Table)组成。维表表明了相关的分析维度,事实表则是这些不一样维度上的计算结果。星形模式存储了系统在不一样维度上的预处理结果,所以进行多维分析时速度很快,但若是分析范围超出了预约义的维度,那么增长维度将是很困难的事情。】
 

USING ORCFILE

使用ORCFILE

Using ORCFile or converting existing data to ORCFile is simple. To use it just add STORED AS orc to the end of your create table statements like this:

使用ORCFile或将现有数据转换成ORCFile很简单。要使用它,仅须要将 STORED AS orc添加到 create table 语句的后面,以下所示:

CREATE TABLE mytable (
...
) STORED AS orc;

To convert existing data to ORCFile create a table with the same schema as the source table plus stored as orc, then you can use issue a query like:

要将现有数据转换成ORCFile,须要建立与源表相同schema的一个表并加上stored as orc,而后就能够以下查询 :

INSERT INTO TABLE orctable SELECT * FROM oldtable;

Hive will handle all the details of conversion to ORCFile and you are free to delete the old table to free up loads of space.

Hive将处理转换成ORCFile的所有细节,而后你能够自由删除旧表来释放 空间。

When you create an ORC table there are a number of table properties you can use to further tune the way ORC works.

建立ORC表时,可使用多个表属性来进一步调整ORC的工做方式。
Key Default Notes
orc.compress ZLIB Compression to use in addition to columnar compression (one of NONE, ZLIB, SNAPPY)
orc.compress.size 262,144 (= 256KiB) Number of bytes in each compression chunk
orc.stripe.size 268,435,456 (=256 MiB) Number of bytes in each stripe
orc.row.index.stride 10,000 Number of rows between index entries (must be >= 1,000)
orc.create.index true Whether to create inline indexes

For example let’s say you wanted to use snappy compression instead of zlib compression. Here’s how:

例如,若是你想使用snappy压缩 来代替zlib压缩,能够这样作:

CREATE TABLE mytable (
...
) STORED AS orc tblproperties ("orc.compress"="SNAPPY");

TRY IT OUT

All these features are available in our HDP 2 Beta and we encourage you to download, try them out and give us your feedback.

以上全部功能均可以在HDP2 Beta版中使用。