Hive tez execution error

后端 未结 3 2072
无人共我
无人共我 2021-01-07 08:29

I am running a hive query and I got the following error when setting the hive.execution.engine=tez, while the query is working under engine=MR.

FAILED: Exec         


        
3条回答
  •  不知归路
    2021-01-07 08:37

    Once check your yarn-site.xml with following properties.

    
       yarn.nodemanager.vmem-check-enabled
        false
        Whether virtual memory limits will be enforced for containers
      
     
       yarn.nodemanager.vmem-pmem-ratio
        4
        Ratio between virtual memory to physical memory when setting memory limits for containers
      
     
        yarn.scheduler.minimum-allocation-mb
        1024
      
      
        yarn.scheduler.maximum-allocation-mb
        2048
      
      
        yarn.nodemanager.resource.memory-mb
        2048
      
    
    

提交回复
热议问题