Hive Runtime Error while processing row in Hive
To solve this issue set below parameters from hive shell.
hive>set hive.vectorized.execution.enabled=false;
hive>set hive.vectorized.execution.reduce.enabled=false;
Then run insert overwrite commands.
I had a similar problem. It turned out this is because I don't have enough space. After I deleted some old tables in Hive and release some memory space, it works OK.