Member since
07-29-2015
535
Posts
141
Kudos Received
103
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 7741 | 12-18-2020 01:46 PM | |
| 5050 | 12-16-2020 12:11 PM | |
| 3851 | 12-07-2020 01:47 PM | |
| 2504 | 12-07-2020 09:21 AM | |
| 1633 | 10-14-2020 11:15 AM |
04-24-2020
12:23 PM
2 Kudos
I believe that error should be fixed with the most recent releases of Impyla (0.16.1) and thrift_sasl (0.4.2)
... View more
04-21-2020
01:03 PM
We did a wholesale revamp of decimal behaviour going from CDH5 to CDH6. The default behaviour all changed in CDH6.0: https://docs.cloudera.com/documentation/enterprise/6/release-notes/topics/rg_cdh_600_new_features.html#decimal_v2 There's a whole epic JIRA capturing the changes: https://issues.apache.org/jira/browse/IMPALA-4072 . I think https://issues.apache.org/jira/browse/IMPALA-4370 might be the specific fix that you're seeing, based on your analysis. The fix version for that change is Impala 2.9.0, so the code change is in CDH5.15.2, but it was done behind the DECIMAL_V2 query option, which wasn't a supported option until CDH6. IN CDH6 you can toggle the behaviour with the DECIMAL_V2 query option (it will eventually be removed, but was kept for backward compatibility).
... View more
04-15-2020
10:03 AM
Can you provide more information about your version and how the table was created. Ideally "show create table <table>" output. The answer depends a lot on those things because the transactional table support has evolved a lot in recent versions and there are several variants of transactional tables.
... View more
04-09-2020
09:30 AM
To be clear, most production setups with dedicated coordinators that we see given the coordinator the same amount of memory as the executors.
... View more
04-09-2020
09:29 AM
In Impala in CDH6, queries reserve the same amount of memory on the coordinator as on the executors. I.e. coordinators need to be given enough memory so that queries can reserve the same amount on the coordinator as executors. So the config with 1 8mb coordinator and 2 128gb executors won't work well.
... View more
03-27-2020
09:39 AM
I'm not aware of any plans, we've only been doing maintenance releases on CDH5
... View more
03-26-2020
09:59 AM
We added Ubuntu 18.04 support in CDH6.2: https://docs.cloudera.com/documentation/enterprise/6/release-notes/topics/rg_os_requirements.html#c63_supported_os
... View more
02-19-2020
09:26 AM
We made this stricter because it was easy to create tables with the wrong primary key order, which has perf consequences. It was really a bug that we allowed creating tables with unclear primary key order.
... View more
02-13-2020
09:11 AM
1 Kudo
You need to either change the order of the columns in your table definition or the PRIMARY KEY definition so that they match. In your statement you have the order of MANAGEDOBJECTNAME and SPECIFICPROBLEMSID reversed in the two places. MANAGEDOBJECTNAME, SPECIFICPROBLEMSID, YEARMONTH SPECIFICPROBLEMSID BIGINT, MANAGEDOBJECTNAME STRING NOT NULL, YEARMONTH INT NOT NULL, We made this stricter because it previously silently ignored the order of columns in the PRIMARY KEY clause, which can have really bad performance implications - https://issues.apache.org/jira/browse/IMPALA-8283
... View more
01-21-2020
02:16 PM
For what it's worth, from an engineering/R&D point of view, more of us are going to be contributing to open source projects than before. All of the core development that was done in the context of open source projects (e.g. the many Apache projects we contribute to) will continue as before. Previously closed source projects are going to be open sourced under the AGPL. The binary distribution does require a subscription (beyond the trial period), similar to how Red Hat does things.
... View more