Member since
01-07-2020
64
Posts
1
Kudos Received
0
Solutions
11-09-2021
03:23 AM
Hi, I am running a query and despite the fact that it reached the limit in (8 mins) and it seems FINISHED inside the query details in CM, it stops at (19 mins). Whys it this happening? I saw the below information in query details: First row fetched: 7.9m (75ms) Last row fetched: 8.0m (7.21s) Released admission control resources: 19.5m (11.6m) Unregister query: 19.5m (103ms)
... View more
Labels:
- Labels:
-
Apache Impala
11-08-2021
12:49 AM
Hi, What is the difference in impala executors and impala coordinators ? Which one shall I increase in order to run my query faster ? Thanks in advance
... View more
Labels:
- Labels:
-
Apache Impala
11-03-2021
03:43 AM
Hi @balajip I know how to create a UDF. My problem is that every time I restart impala the udf is gone. Is there any way to keep UDF after the restart or I have to create it every time ?
... View more
11-03-2021
12:56 AM
Hi, I have create a UDF in impala but every time I am restarting it the UDF is gone. Is there anyway to fix this issue ? create function my_udf(String,String,String) returns boolean location 'udfs-1.0-SNAPSHOT-jar-with-dependencies.jar' SYMBOL='MyUDF ;
... View more
Labels:
- Labels:
-
Apache Impala
10-19-2021
06:14 AM
Hi, I am new in Kafka and I have some questions. I want to create a pipeline which extract data from Mysql to kafka. Although after a lot of search I found something about CDH which is when something in the source table changes to send the updated record to Kafka. I do not want such a thing. I only want to extract data according to primary key. Is there any course to do in order to learn or can anybody provide any tips? Thanks in advance.
... View more
Labels:
- Labels:
-
Apache Kafka
09-30-2021
12:18 AM
I have some tables in hive and I want to find the size of each table through the metastore (MySQL). I am trying the below but it returns paratition_params, notification_log, sds etc. My tables are stored in TABLES.TBLS but when I am running the below query with from information_schema.TABLES.TBLS it returns this: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '.TBLS
ORDER BY
(DATA_LENGTH + INDEX_LENGTH)
DESC
LIMIT 0, 200' at line 5
SELECT
TABLE_NAME AS `Table`,
ROUND((DATA_LENGTH + INDEX_LENGTH) / 1024 / 1024) AS `Size (MB)`
FROM
information_schema.TABLES
ORDER BY
(DATA_LENGTH + INDEX_LENGTH)
DESC;
... View more
Labels:
- Labels:
-
Apache Hive
09-29-2021
01:01 AM
Hi, I am trying to create a dashboard in CM with impala charts in order to see the maximum memory of impala and the one that my queries are using. I running tsquery for total_impala_admission_controller_local_backend_mem_reserved_across_impala_daemon_pools and total_impala_admission_controller_local_backend_mem_usage_across_impala_daemon_pools But it seems that the charts are representing exactly the same thing. Why is this happens?
... View more
Labels:
- Labels:
-
Apache Impala
09-28-2021
06:12 AM
But it is not sorted 2019-09-18 08:44:10 2020-08-05 13:15:48 2020-08-05 13:24:00 2020-10-15 18:29:34 2020-09-09 09:35:04 Supposed to be asc but its not
... View more
09-27-2021
11:20 PM
The table properties include sort by in a timestamp column. So I am running after select * from db.table1 and it returns me the data like above.
... View more
09-27-2021
07:16 AM
I have some tables in impala and in the create tables statement they have sort by( timestamp column) but when I query them they are returning the data not sorted. Why is this happening? For example 2019-09-18 08:44:10 2020-08-05 13:15:48 2020-08-05 13:24:00 2020-10-15 18:29:34 2020-09-09 09:35:04
... View more
Labels:
- Labels:
-
Apache Impala