Member since
04-02-2017
1
Post
0
Kudos Received
0
Solutions
04-02-2017
01:53 PM
I too hit the same issue, while running the query64.sql in the sample-queries-tpcds from hive-testbench tool. Setting the HADOOP_HEAPSIZE="2048" to either in the hadoop-env.sh or in the hive-env.sh didn't resolved the issue. Even after setting the HADOOP_HEAPSIZE environment variable the maximum memory of the hive local task didn't increased from 532742144.
But adding/appending "-Xmx1536m" in the HADOOP_CLIENT_OPTS in hadoop-env.sh, increased the hive's local task and the query also completed successfully. For example: export HADOOP_CLIENT_OPTS="-Xmx1536m $HADOOP_CLIENT_OPTS"
... View more