gpt4 book ai didi

hadoop - Hive 交叉连接在本地 map 连接上失败

转载 作者:可可西里 更新时间:2023-11-01 14:53:06 24 4
gpt4 key购买 nike

是否有直接的方法来解决以下错误,或者总体上有更好的方法来使用 Hive 来获得我需要的连接?输出到存储表不是必需的,因为我可以满足于将 INSERT OVERWRITE LOCAL DIRECTORY 到 csv。

我正在尝试执行以下交叉连接。 ipint 是一个 9GB 的表,geoiplite 是 270MB。

CREATE TABLE iplatlong_sample AS
SELECT ipintegers.networkinteger, geoiplite.latitude, geoiplite.longitude
FROM geoiplite
CROSS JOIN ipintegers
WHERE ipintegers.networkinteger >= geoiplite.network_start_integer AND ipintegers.networkinteger <= geoiplite.network_last_integer;

我在 ipintegers 上使用 CROSS JOIN 而不是 geoiplite,因为我读到规则是小表在左边,大表在右边。

根据 HIVE,Map 和 Reduce 阶段已完成 100%,但随后

2015-08-01 04:45:36,947 Stage-1 map = 100%, reduce = 100%, Cumulative CPU 8767.09 sec

MapReduce Total cumulative CPU time: 0 days 2 hours 26 minutes 7 seconds 90 msec

Ended Job = job_201508010407_0001

Stage-8 is selected by condition resolver.

Execution log at: /tmp/myuser/.log

2015-08-01 04:45:38 Starting to launch local task to process map join; maximum memory = 12221153280

Execution failed with exit status: 3

Obtaining error information

Task failed!

Task ID: Stage-8

Logs:

/tmp/myuser/hive.log

FAILED: Execution Error, return code 3 from org.apache.hadoop.hive.ql.exec.mr.MapredLocalTask

MapReduce Jobs Launched: Job 0: Map: 38 Reduce: 1 Cumulative CPU: 8767.09 sec
HDFS Read: 9438495086 HDFS Write: 8575548486 SUCCESS

我的 hive 配置:

SET hive.mapred.local.mem=40960;
SET hive.exec.parallel=true;
SET hive.exec.compress.output=true;
SET hive.exec.compress.intermediate = true;
SET hive.optimize.skewjoin = true;
SET mapred.compress.map.output=true;
SET hive.stats.autogather=false;

我在 truefalse 之间改变了 SET hive.auto.convert.join 但结果相同。

这是/tmp/myuser/hive.log 的输出日志中的错误

$ tail -12 -f tmp/mysyer/hive.log

2015-08-01 07:30:46,086 ERROR exec.Task (SessionState.java:printError(419)) - Execution failed with exit status: 3
2015-08-01 07:30:46,086 ERROR exec.Task (SessionState.java:printError(419)) - Obtaining error information
2015-08-01 07:30:46,087 ERROR exec.Task (SessionState.java:printError(419)) -
Task failed!
Task ID:
Stage-8

Logs:

2015-08-01 07:30:46,087 ERROR exec.Task (SessionState.java:printError(419)) - /tmp/myuser/hive.log
2015-08-01 07:30:46,087 ERROR mr.MapredLocalTask (MapredLocalTask.java:execute(268)) - Execution failed with exit status: 3
2015-08-01 07:30:46,094 ERROR ql.Driver (SessionState.java:printError(419)) - FAILED: Execution Error, return code 3 from org.apache.hadoop.hive.ql.exec.mr.MapredLocalTask

我在 Master 上运行 hive 客户端,这是一个 n1-highmem-8 类型的 Google Cloud Platform 实例(8 CPU,52GB),worker 是 n1-highmem-4(4CPU 26GB),但我怀疑在 MAP 之后减少本地连接(隐含的)发生在主节点上。无论如何,在 bdutils 中,我将工作节点 (n1-highmem-4) 的 JAVAOPTS 配置为:n1-highmem-4

解决方案编辑:解决方案是将范围数据组织到范围树中。

最佳答案

我不认为可以执行这种交叉连接蛮力 - 只需乘以行号,这有点失控。您需要一些优化,我认为 Hive 还不能做到这一点。

但是这个问题实际上可以在 O(N1+N2) 时间内解决,前提是您对数据进行了排序(hive 可以为您做)——您只需同时浏览两个列表,在每个步骤中获取一个 ip 整数,查看是否有任何间隔从该整数开始,添加它们,删除结束的间隔,发出匹配的元组,等等。伪代码:

intervals=[]
ipintegers = iterator(ipintegers_sorted_file)
intervals = iterator(intervals_sorted_on_start_file)
for x in ipintegers:
intervals = [i for i in intervals if i.end >= x]

while(intervals.current.start<=x):
intervals.append(intervals.current)
intervals.next()
for i in intervals:
output_match(i, x)

现在,如果你有一个外部脚本/UDF 函数知道如何读取较小的表并获取 ip 整数作为输入并吐出匹配的元组作为输出,你可以使用 hive 和 SELECT TRANSFORM 来将输入流式传输给它。

或者您可以只在具有两个输入文件的本地计算机上运行此算法,因为这只是 O(N),甚至 9 gb 的数据也是可行的。

关于hadoop - Hive 交叉连接在本地 map 连接上失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31764417/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com