Member since
07-29-2015
535
Posts
141
Kudos Received
103
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 7907 | 12-18-2020 01:46 PM | |
| 5151 | 12-16-2020 12:11 PM | |
| 3913 | 12-07-2020 01:47 PM | |
| 2554 | 12-07-2020 09:21 AM | |
| 1657 | 10-14-2020 11:15 AM |
03-07-2019
09:02 AM
Oh, the best reference for building Impala is the apache wiki. https://cwiki.apache.org/confluence/display/IMPALA/Building+native-toolchain+from+scratch+and+using+with+Impala is a bit more hidden and talks about how to build the third party dependencies
... View more
03-05-2019
09:50 AM
Impala is not designed for traditional OLTP and doesn't have transaction support that would line up with what TPC-C expects.
... View more
02-13-2019
11:54 AM
Thanks so much for help , I will try out sorting and validate query performance.
... View more
02-09-2019
04:47 AM
Hi @Tim Armstrong While IMPALA-1618 steel open and unresolved, I confirmed that this "workaround" is safe and efficient (I'm using it on a large scope and during more than 9 months) so that this is the only solution I find to solve or -get around- this big problem. Hope that the main problem will be fixed ASAP. Thanks for the remark.
... View more
02-08-2019
03:59 PM
I unfortunately don't know too many of the details of LDAP. Impala doesn't do anything sophisticated to create the directories - it just mkdir() with S_IRWXU|S_IRWXG|S_IRWXO to create the impala-scratch subdirectory and any missing parent directories.
... View more
02-07-2019
09:41 AM
1 Kudo
If you want to do the implicit join between the table and the nested collection, you need to reference the nested collection using the alias that you used for the table. Otherwise the top-level table and the nested collection are treated as independent table references and the query means "return the cartesian product of the tables". I.e. you want to rewrite as follows: select rta.transaction_purchase_id, rta.cigarette_transaction_flag, rta.non_cig_merch_transaction_flag, bow.item
from wdl_atomic.retail_transaction_attribute rta,
rta.retail_offering_material_group_distinct_list bow
where rta.fiscal_period_id = 2019001; That will solve your issue.
... View more
01-02-2019
10:57 AM
UDFs can do a lot of things because they run with the same privileges as the Impala process. However, doing things other than the usual computations in the UDF, like accessing filesystems or external services, can compromise the performance and stability of your system. So you do this at your own risk. In the future we may lock down UDFs more and prevent them from doing things like accessing HDFS.
... View more
12-17-2018
01:04 PM
I don't know too much about that unfortunately.
... View more
12-17-2018
11:35 AM
Hi @Big I checked on our latest build and it works for me - see below. Are you sure that you're not trying to query a table with a DATE type column? [localhost:21000] default> create table foo2 (`date` int);
Query: create table foo2 (`date` int)
+-------------------------+
| summary |
+-------------------------+
| Table has been created. |
+-------------------------+
Fetched 1 row(s) in 1.19s
[localhost:21000] default> select distinct `date` from foo2;
Query: select distinct `date` from foo2
Fetched 0 row(s) in 0.12s
... View more