HIVE SQL执行时候报return code 2错误解决方案

18/07/29 00:53:04 ERROR operation.Operation: Error running hive query: 
org.apache.hive.service.cli.HiveSQLException: Error while processing statement: FAILED: Execution Error, return code 2 from org.apache.hadoop.hive.ql.exec.mr.MapRedTask
	at org.apache.hive.service.cli.operation.Operation.toSQLException(Operation.java:374)
	at org.apache.hive.service.cli.operation.SQLOperation.runQuery(SQLOperation.java:180)
	at org.apache.hive.service.cli.operation.SQLOperation.access$100(SQLOperation.java:72)
	at org.apache.hive.service.cli.operation.SQLOperation$2$1.run(SQLOperation.java:232)
	at java.security.AccessController.doPrivileged(Native Method)
	at javax.security.auth.Subject.doAs(Subject.java:415)
	at org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1693)
	at org.apache.hive.service.cli.operation.SQLOperation$2.run(SQLOperation.java:245)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
	at java.util.concurrent.FutureTask.run(FutureTask.java:262)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
	at java.lang.Thread.run(Thread.java:745)

目前具体报错原因未知,可在执行sql语句前加上这句解决上面问题:

set hive.support.concurrency=false;

你可能感兴趣的:(HIVE)