It is very strange that when I input the Hive query:
SELECT * FROM tb LIMIT 1;
It returns a row from the table successfully.
However, when I select a column from the table, Hive will fail:
SELECT col FROM tb LIMIT 1;
Hive gives an error message:
FAILED: Execution Error, return code -101 from org.apache.hadoop.hive.ql.exec.mr.MapRedTask. GC overhead limit exceeded
What is wrong with Hive?