Member since
08-16-2017
188
Posts
5
Kudos Received
5
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
820 | 02-17-2022 01:17 AM | |
905 | 11-09-2021 11:03 PM | |
19941 | 11-05-2021 06:34 AM | |
1030 | 10-28-2021 01:14 AM | |
20237 | 10-18-2021 06:06 AM |
07-21-2023
03:14 AM
Hi, You can try to use CDP public cloud 7.2.17 which officially supports iceberg on Hive. https://docs.cloudera.com/runtime/7.2.17/iceberg-overview/topics/iceberg-overview.html
... View more
05-16-2022
11:59 PM
Hi Djentlguy, It is hard to say what is the actual issue we are hitting. We have to look into the Hive/App logs. Could you open a Cloudera support case to report this issue?
... View more
11-09-2021
11:03 PM
Hope the below document can answer your question. https://impala.apache.org/docs/build/html/topics/impala_struct.html It looks like we have to change the query as below: select abc, def, b1.c1 from xxx, xxx.a1 where so n so
... View more
11-05-2021
06:34 AM
@Sam7 please try : select concat(UPPER(SUBSTRING(fieldname,1,2)),LOWER(SUBSTRING(fieldname,3,LENGTH(fieldname)))) AS fieldname from ... You can check the below document for the usage of substring() https://cwiki.apache.org/confluence/display/hive/languagemanual+udf
... View more
10-28-2021
01:14 AM
Hive doesn't provide the rest API itself. The user has to connect Hive by using JDBC/ODBC to fetch the data. Alternatively, you may write the query result to the ADLS and fetch the data via ADLS rest API. https://docs.qubole.com/en/latest/user-guide/engines/presto/insert.html
... View more
10-18-2021
06:06 AM
1 Kudo
With hive query, please try select concat(UPPER(SUBSTRING(fieldname,1,1)),LOWER(SUBSTRING(fieldname,2,LENGTH(fieldname)))) AS fieldname from ...
... View more