简体   繁体   English

如何在EMR任务/从节点上安装配置单元?

[英]How to install hive on EMR task/slave nodes?

I got hive running on EMR master node, but I need to run hive command line on EMR task/slave node. 我在EMR主节点上运行了Hive,但是我需要在EMR任务/从节点上运行Hive命令行。

Anyone got idea how to do it? 有人知道该怎么做吗? Thanks! 谢谢!

Hive is only traditionally run on the Master node. Hive通常仅在主节点上运行。

Hive creates a MapReduce task that is then executed by the cluster. Hive创建一个MapReduce任务,然后由集群执行。 Hive does not actually do distributed work. Hive实际上并没有做分布式工作。 It simply translates requests into jobs, submits the jobs, then handles the results. 它只是将请求转换为作业,提交作业,然后处理结果。

This is different to Apache Spark, which actually has executors on slave nodes too. 这与Apache Spark不同,后者实际上在从属节点上也具有执行程序。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM