Member since
03-23-2015
1288
Posts
114
Kudos Received
98
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3350 | 06-11-2020 02:45 PM | |
5067 | 05-01-2020 12:23 AM | |
2862 | 04-21-2020 03:38 PM | |
3564 | 04-14-2020 12:26 AM | |
2360 | 02-27-2020 05:51 PM |
03-21-2018
08:48 AM
when you say "not visible in web browser of cloudera", did you mean in Hue interface or NN web UI? If no new directory you created, what do you see? Screenshot would be helpful here.
... View more
12-31-2017
06:20 PM
I don't see what exact query was sent to HS2 to run that caused the issue. But from the error message, it looks like that there is some issue on the query string itself. This could happen when there is bugs in the HIve JDBC driver that you are using and does not tramsform query correctly. Couple of things you can check: 1. what version of JDBC driver are you using? If not latest, maybe try the latest version: https://www.cloudera.com/downloads/connectors/hive/jdbc/2-5-19.html 2. Check if UseNativeQuery is set or not, Default is 0, meaning it will transform query inside JDBC before sending to HS2. You can try to set it to 1 to disable transformation. Details can be found here: http://www.cloudera.com/documentation/other/connectors/hive-jdbc/latest/Cloudera-JDBC-Driver-for-Apache-Hive-Install-Guide.pdf
... View more
12-31-2017
06:15 PM
Hi, I am not sure if you have noticed Robert's response on the thread you mentioned. Run below command from the remote host to see if you can set response back to test if the GET command works: curl http://oozie_host:oozie_port/oozie/v2/admin/status
... View more
12-16-2017
07:23 PM
HiveServer2 will NOT count session as idle if query is still running, so, a query can run longer than the session timeout, so long as the query is running, but not waiting for client to fetch data. Please refer to https://issues.apache.org/jira/browse/HIVE-10146. This looks like it is F5's issue that it does not know query is still running, which makes sense. Having keep alive pings to HS2 will make Hive Session timeout setting useless, I am not sure if that is best practice either.
... 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
11-30-2017
10:36 PM
It looks like that HS2 did not start correctly. Have you checked HS2 log to see what might be going on? Please also check if HMS is up and running. If HMS failed to start, HS2 will not able to either.
... View more
11-15-2017
10:10 PM
How much heap does Oozie has? Have you noticed GC hangs in the Oozie server. That might hang the Oozie process and potentially causing the timeout on client connection from CM. Worth checking this to rule out.
... 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
11-14-2017
02:44 AM
Have you checked what error do you see in the Ooize server log? This looks like CM was not able to access Oozie for some reason, the Oozie server log might give you some clue.
... View more
11-14-2017
02:33 AM
Hi, Are you able to update the view while you updating the table with new columns? I don't see there is other better ways as VIEWs and TABLEs are different entities in Hive and they don't relate to each other. Let me research a bit more.
... View more