Member since
03-23-2015
1288
Posts
114
Kudos Received
98
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3341 | 06-11-2020 02:45 PM | |
5043 | 05-01-2020 12:23 AM | |
2845 | 04-21-2020 03:38 PM | |
3556 | 04-14-2020 12:26 AM | |
2340 | 02-27-2020 05:51 PM |
01-17-2018
02:14 PM
@spurusothamanusually we go through a couple of steps to troubleshoot issues like this. The two most likely solutions are: 1. Give the query more memory by increasing mem_limit or reducing # of concurrent queries 2. Adjust the SQL by rewriting the query or adding hints to get a different query plan to that avoids having so many duplicate values on the right side of the join. Depending on the exact scenario, the solution might be 1, 2, or both. straight_join is only useful if you use it to force a plan with a different join order. If you want input on whether you have a bad plan and what a better join order might be, please provide a query profile.
... View more
01-07-2018
05:23 AM
Hi Eric, We followed Cloudera's link to how to set up a LB using F5 and still had to increase the session timeout to 12 hours to stop long processes from failing, are we missing anything? Do you know of other companies that implemented the LB using F5 and had similar issues? Best, Eyal
... View more
01-01-2018
06:21 PM
1 Kudo
thanks , i solved this problem by updating /etc/hosts file. thanks
... View more
12-16-2017
03:34 AM
Can you please enable JDBC driver TRACE log by adding: ;LogLevel=6;LogPath=/tmp/jdbc-log to the end of JDBC connection string and collect trace log, there might be clues there. Also, have you checked the impala daemon log on host beta01.opr.test.XYZ.COM to see if there is any error messages related?
... View more
12-08-2017
09:40 AM
the first thing you have to do in your script set hive.variable.substitute=true; set current_date=${hiveconf:current_date}; command should be hive -v --hiveconf current_date='01-01-2015' -f argument.hql it will execute successfully -V willp rint the sql command in console appliocation read hiveconf and hivevar concepts
... View more
12-01-2017
06:46 AM
Where do I go to check the HS2 log? Where do I go to check if HMS is up and running?
... View more
11-23-2017
01:08 AM
<property> <name>oozie.poller.timeout.millis</name> <value>20000</value> </property> should i add above configuration property in cmon.conf ? Cloudera mentioned issue was fixed in CDH 5.4.5 and we are using CDH 5.8.3. Please suggest
... View more
11-20-2017
03:35 AM
Yes. Just in the hql file. Not anything in XML file
... View more
11-14-2017
02:46 PM
It will not work, you should remove all special characters in column names. There is no workarounds as far as I know.
... View more