Member since
03-23-2015
1288
Posts
114
Kudos Received
98
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3295 | 06-11-2020 02:45 PM | |
5014 | 05-01-2020 12:23 AM | |
2815 | 04-21-2020 03:38 PM | |
2619 | 04-14-2020 12:26 AM | |
2320 | 02-27-2020 05:51 PM |
09-17-2017
11:47 PM
2 Kudos
Impala does not support DATE data type, please refer to Cloudera doc: https://www.cloudera.com/documentation/enterprise/latest/topics/impala_langref_unsupported.html You mentioned you changed to timestamp, it also failed, can you please let me know how you made the change?
... View more
09-17-2017
11:46 PM
Please enable trace logging on ODBC and examine the log for hints. See user manual: http://www.cloudera.com/documentation/other/connectors/hive-odbc/latest/Cloudera-ODBC-Driver-for-Apache-Hive-Install-Guide.pdf on how to enable trace logging for ODBC driver.
... View more
09-09-2017
10:36 PM
I am able to solve the issue. I simply uninstall and re-install hive and with that it works. Select query is now able to show an output without any issue.
... View more
08-20-2017
10:41 PM
Hi Francesco, Why do you need to read from an empty parquet file? Can you simply remove them? Have you also tried to use parquet-tools command line utility to confirm if the parquet file is valid?
... View more
08-20-2017
10:33 PM
Hi, I believe that you are hitting https://issues.apache.org/jira/browse/HIVE-14037. HIVE-14037 has been fixed from CDH5.9.0 onwards. Did you create function with "USING JAR" keywords? If not, please give it a try to see if it will help. Otherwise, upgrade to latest CDH should help.
... View more
08-16-2017
05:30 PM
Excellent, I think this is it. I'm testing it out right now so I might be a little premature in celebrating but it seems to be working out right now. Thanks again for the tip!
... View more
08-02-2017
04:19 AM
Hi, As the error message indicated, UNION ALL is not supported at top level, you need to put it in a sub query, similar to below: SELECT loc, cnt FROM ( select a.loc as loc, a.cnt13 cnt from crimeloc13 a UNION ALL select b.loc as loc, b.cnt14 as cnt from crimeloc14 b ) a;
... View more
07-12-2017
01:20 PM
The query executes with map reduce engine and I get the desired result. The error happens when I switch to spark engine.
... View more
07-12-2017
08:24 AM
My issue here ended up being brought by Amazon elastic load balancer timing out after 60 seconds.
... View more
07-11-2017
11:58 PM
Hi yueyang, Can you please share your impyla source code and the error you are getting? That will help me understand why it failed. Thanks
... View more