Member since
03-06-2020
406
Posts
56
Kudos Received
37
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 393 | 08-29-2025 12:27 AM | |
| 1021 | 11-21-2024 10:40 PM | |
| 977 | 11-21-2024 10:12 PM | |
| 3048 | 07-23-2024 10:52 PM | |
| 2153 | 05-16-2024 12:27 AM |
03-20-2022
03:00 AM
Yes before I tried runing sqoop import manually, I restarted the oozie sqoop service multiple times until I can see the oozie workflow was initialized in the logs. The workflows started working as expected and the job completed.
... View more
02-28-2022
07:21 AM
Hello Chetan, It seems related to the missing hive-site.xml on /user/oozie/share/lib/lib../ path. After creation of oozie share libs, it maintein all jars but not the other files, like xml.. Can you confirm this behaviour? Thanks BR
... View more
02-28-2022
05:25 AM
Hi , Previous execution means previous workflow execution or previous action execution with in a workflow? I think as i know if you have multiple actions with in a wokflow next action will start only if previous action is succeeded otherwise it fails. If its not working like this can you give the info output for that workflow id? oozie job -oozie http://<oozie-server-host>:11000 -info <workflow-id> Regards, Chethan YM
... View more
02-16-2022
06:21 AM
Hi, As i seen till now there is no such way to rerun the job automatically when it is failed, I think you have to rerun it manually as you do always. If you want this type of behaviour you may need to create custom scripts as per your requirements. Regards, Chethan YM
... View more
02-16-2022
05:46 AM
Hi @mala_etl , It looks like a below known issue: https://issues.cloudera.org/browse/HUE-8717 Do work with Cloudera support to get a patch. Regards, Chethan YM
... View more
02-16-2022
05:32 AM
Hi, To look into the issue we need a complete error stack-trace can you please attach it? Also is this happens every-time after impala restart? Regards, Chethan YM
... View more
02-04-2022
05:00 AM
Hi, Yes, Impala daemons will use the memory during the execution. Your understanding is correct. In the attached screenshot i can see the corrupted stats for the tables involved in the query, We recommend to run "compute stats" on the tables which is having partial stats and rerun the queries otherwise it will generates bad execution plan and uses more memory than expected. Regards, Chethan YM
... View more
02-03-2022
04:07 AM
Hi Could you elaborate on how to write the queries with idle_session_timeout value? I am facing the same error? In the GitHub https://github.com/cloudera/impyla/issues/278, it says there is not way we can set it up in the connection and would need to put it in query. Thanks.
... View more
01-03-2022
04:37 AM
Hi, -> Have you tried the same query via Hive? Does it work? -> How this table got created via hive or impala? -> Try "invalidate metadata" in impala and retry Regards, Chethan YM
... View more
12-21-2021
09:51 AM
UPDATE: One possible workaround to suppress these quotes from displaying in select * is to create a view like below in Impala: CREATE VIEW db1.view1 AS SELECT replace(table1.quotedcol1, '"', '') quotedcol1, replace(table1.quotedcol2, '"', '') quotedcol2 FROM db1.table1;
... View more