首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Hive 本地执行模式

Hive 本地执行模式

作者头像
smartsi
发布2019-08-07 14:07:46
2.7K0
发布2019-08-07 14:07:46
举报
文章被收录于专栏:SmartSiSmartSi

1. 简介

假设你正在运行一些复杂的 Hive 查询,我们都知道这会在后台触发 MapReduce 作业并为你提供输出。如果 Hive 中的数据比较大,这种方法比较有效,但如果 Hive 表中的数据比较少,这样会有一些问题。出现此问题的主要原因是 MapReduce 作业被触发,它是在服务器/集群上触发,因此每次运行查询时,它都会上传到服务器并在那里启动 MapReduce,然后输出。因此,为查询触发执行任务的时间消耗可能会比实际作业的执行时间要多的多。

Hive 可以通过本地模式在单台机器上处理所有的任务。对于本地模式,如果你的查询启动的 MapReduce 作业少于4个 Mapper,那么 MapReduce 作业将在本地运行,这样可以在更短的时间内输出查询结果。

Hive 0.7.0 版本开始引入

2. 配置

需要满足如下三个配置条件,才能在本地模式下运行 Hive 查询:

参数

默认值

描述

hive.exec.mode.local.auto

false

让Hive确定是否自动启动本地模式运行

hive.exec.mode.local.auto.inputbytes.max

134217728(128MB)

当第一个参数为true时,输入字节小于此值时才能启动本地模式

hive.exec.mode.local.auto.input.files.max

4

当一个参数为true时,任务个数小于此值时才能启动本地模式

3. Example

本地模式执行如下所示:

hive> SET hive.exec.mode.local.auto=true;
hive> SET hive.exec.mode.local.auto.inputbytes.max=50000000;
hive> SET hive.exec.mode.local.auto.input.files.max=5;
hive> select count(1) from test;
Automatically selecting local only mode for query
...
Total jobs = 1
Launching Job 1 out of 1
Number of reduce tasks determined at compile time: 1
...
Job running in-process (local Hadoop)
2018-07-25 19:04:23,559 Stage-1 map = 100%,  reduce = 100%
Ended Job = job_local3079326_0001
MapReduce Jobs Launched:
Stage-Stage-1:  HDFS Read: 18214 HDFS Write: 102 SUCCESS
Total MapReduce CPU Time Spent: 0 msec
OK
55
Time taken: 7.542 seconds, Fetched: 1 row(s)

远程模式执行如下所示:

hive> SET hive.exec.mode.local.auto=false;
hive> select count(1) from test;
...
Total jobs = 1
Launching Job 1 out of 1
Number of reduce tasks determined at compile time: 1
...
Hadoop job information for Stage-1: number of mappers: 1; number of reducers: 1
2018-07-25 19:06:51,819 Stage-1 map = 0%,  reduce = 0%
2018-07-25 19:06:58,006 Stage-1 map = 100%,  reduce = 0%, Cumulative CPU 2.24 sec
2018-07-25 19:07:18,447 Stage-1 map = 100%,  reduce = 67%, Cumulative CPU 3.14 sec
2018-07-25 19:07:22,527 Stage-1 map = 100%,  reduce = 100%, Cumulative CPU 4.2 sec
MapReduce Total cumulative CPU time: 4 seconds 200 msec
Ended Job = job_1504162679223_31594449
MapReduce Jobs Launched:
Stage-Stage-1: Map: 1  Reduce: 1   Cumulative CPU: 4.2 sec   HDFS Read: 18103 HDFS Write: 102 SUCCESS
Total MapReduce CPU Time Spent: 4 seconds 200 msec
OK
55
Time taken: 89.256 seconds, Fetched: 1 row(s)

我们可以看到在本地模式下只需执行7.542s,而在远程模式下执行却需要执行89.256s。

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018-06-10,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 1. 简介
  • 2. 配置
  • 3. Example
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档