Member since
07-16-2018
9
Posts
0
Kudos Received
1
Solution
07-29-2021
08:00 AM
That's what I was afraid of. I'm going through Cloudera Manager and looking at queries where missing_stats=true and going through one by one more or less. Thanks for the response!
... View more
07-28-2021
08:10 AM
I've read query plans in SQL Server forever using a GUI, but text plans are like Greek to me (I don't speak Greek). I'm trying to figure out if statements like this calculate the date "constant" for each row and cause performance lag, or if Impala knows to calculate it once and apply to all rows. select *
from myTable
-- the "months_add" is basically a constant, but I can see
-- why a function might be calculated for each row
where tran_timestamp > months_add(now(), -1)
limit 1;
select *
from myTable
-- but what about this? this is definitely a constant
-- so is this different than the query above and is
-- the "constant" calculated for each row?
where tran_timestamp > months_add('2021-01-01', -1)
limit 1
... View more
Labels:
- Labels:
-
Apache Hadoop
-
Apache Impala
07-28-2021
08:03 AM
I'd like to update stats (compute stats) for every table I have. I have a ton of queries that are running without them. I personally have access only to Hue for Impala, no console kind of access to server or anything. I'm able to see status of stats for a table with describe formatted <table>, but it's a major pain to look through, and I have a ton of tables.
Is there any way to get a list of all tables and the status of their stats from Hue?
Thanks!
... View more
Labels: