Member since
10-16-2013
307
Posts
77
Kudos Received
59
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
11138 | 04-17-2018 04:59 PM | |
6109 | 04-11-2018 10:07 PM | |
3519 | 03-02-2018 09:13 AM | |
22097 | 03-01-2018 09:22 AM | |
2615 | 02-27-2018 08:06 AM |
07-16-2015
12:05 AM
My apologies, but I am losing track of the steps you followed to produce a good/bad outcome with compute stats and compute incremental stats. Would you be able to list a series of steps that can reproduce the problem (on a non-empty partition)?
... View more
07-14-2015
10:56 AM
Impala is able to handle snappy compressed Avro files, so I don't think that's the problem. You may be hitting https://issues.apache.org/jira/browse/HIVE-6308 since you created the tables through Hive without column defiitions. You could try to create the tables through Impala, or create them with Hive but with column definitions.
... View more
07-13-2015
07:03 PM
1 Kudo
1) The Knuth variance is an Impala built-in. Internally, Impala can handle aggregate functions with different intermediate and output types. Basically, the only reason you are not allowed to create UDAs with different intermediate/output types is because we have not enabled the feature in sermantic analysis. For us, enabling the feature is the easy part. Adding extensive testing is the hard part. If you are curious, the check for preventing you from creating such UDAs is in: ./fe/src/main/java/com/cloudera/impala/analysis/CreateUdaStmt.java lines 137 following 2) Like I said, enabling the feature is not hard, but does involve a non-trivial QA effort, so I cannot promise a concrete release at this point. I'd recommend keeping an eye on that JIRA for updates to the target version.
... View more
07-13-2015
06:53 PM
I cannot say for sure what is going wrong here, but I suspect that you are hitting an edge case for an empty table/partition. Have you tried the same thing with a non-empty table/partition?
... View more
07-08-2015
09:54 AM
Hi fil, I'm afraid there is no way to force the encoding for a particular column. It is questionable whether you'd get any significant benefits from a manual choice. Alex
... View more
07-08-2015
08:30 AM
1 Kudo
I agree completely that this is a critical issue, and I appreciate your patience in this matter. The fix will be shipped as part of CDH 5.4.4 tentatively scheduled for the beginning of August.
... View more
07-08-2015
08:21 AM
Hi fil, I'm afraid Impala currently does not take advantage of index pages when reading/writing data. Index pages are part of the Parquet spec, so in theory, you shoud be able to write Parquet files with index pages (via some other tool) and have them be readable by Impala - but Impala will ignore the index pages. We do plan on taking advantage of index pages and min/max/etc values, but we do not have a concrete target date for that feature yet. Alex
... View more
07-07-2015
01:13 AM
1 Kudo
I'm afraid you may have to wait until we resolve: https://issues.cloudera.org/browse/IMPALA-1829 For the impala builtins you can have a look at: IMPALA_HOME/be/src/exprs/aggregate-functions.h IMPALA_HOME/be/src/exprs/aggregate-functions.cc
... View more
06-30-2015
10:42 PM
Looks like you are running into this issue: https://issues.cloudera.org/browse/IMPALA-2048 I'd suggest you give the workaround a try. We've identified the issue and fixed it.
... View more
06-29-2015
12:12 PM
I believe you may be hitting https://issues.cloudera.org/browse/IMPALA-2048 or a variant thereof. Please have a look at that JIRA, it includes a workaround that may be acceptable to you.
... View more