Does anyone have a List of hive error codes?

2020-07-18 06:08发布

问题:

Does anyone have the list of hive error codes?

For example, if we get a table not found error in hive, the value of "echo $?" will be 17.

回答1:

If you look at https://github.com/apache/hive/blob/master/common/src/java/org/apache/hadoop/hive/ql/ErrorMsg.java you'll see most of the error codes.

Although in order to map these to an exit code, you'd probably have to walk through the CLI code to trace that.