Member since
10-16-2013
307
Posts
77
Kudos Received
59
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
11248 | 04-17-2018 04:59 PM | |
6191 | 04-11-2018 10:07 PM | |
3559 | 03-02-2018 09:13 AM | |
22288 | 03-01-2018 09:22 AM | |
2653 | 02-27-2018 08:06 AM |
08-23-2017
08:59 PM
2 Kudos
https://issues.apache.org/jira/browse/IMPALA-1570 That feature is available since Impala 2.8 (CDH 5.11)
... View more
07-05-2017
06:32 AM
1 Kudo
iam using the cdh 5.11 and my catalog server is not starting even i keeping the Impala Catalog Server Environment Advanced Configuration Snippet (Safety Valve) as JAVA_TOOL_OPTIONS=-Xmx8g or JAVA_TOOL_OPTIONS=-Xss2m
... View more
06-14-2017
06:01 PM
Hi Shannon, Impala does not yet support array or map subscripts. What you can do is something like this: select a.value from mytable t, t.myarray a where a.pos in (0,1) But this will give you the "values" elements as rows and not in different columns.
... View more
05-02-2017
10:12 PM
That's an interesting scenario. Unfotunately, there is no elegant way to do what you ask in Impala's SQL. The query you really want to write is this one: select * from (select *, parts from example ex order by value desc limit 2) v, v.parts The issue is that Impala currently does not support returning complex types in the select-list of an inline view: https://issues.apache.org/jira/browse/IMPALA-2777 Note that '*' in Impala expands to all scalar-typed colmns, so you need to list 'parts' explicitly.
... View more
04-27-2017
06:23 PM
1 Kudo
I believe you can append query options applied to that JDBC to the connection string like this: jdbc:impala://your_impalad.com:21050/default;UseNativeQuery=1;SET RUNTIME_FILTER_MODE=OFF; Alternatively, you should be able to run "SET RUNTIME_FILTER_MODE=OFF" as a query from JDBC to alter the defauly query options of that session.
... View more
04-19-2017
09:44 PM
1 Kudo
You are correct, this is a limitation: https://issues.cloudera.org/browse/IMPALA-2108 Impala would basically need to do infer the IN predicate that you are using in your workaround. You are welcome to take a stab at contributing a patch!
... View more
04-13-2017
12:40 PM
1 Kudo
Since CDH 5.8 you can use set PARQUET_FALLBACK_SCHEMA_RESOLUTION=1; to look up columns within Parquet files by column name. For more, see: https://www.cloudera.com/documentation/enterprise/latest/topics/impala_parquet_fallback_schema_resolution.html
... View more