Member since
11-17-2021
1157
Posts
260
Kudos Received
30
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 268 | 04-23-2026 02:02 PM | |
| 751 | 03-17-2026 05:26 PM | |
| 5710 | 11-05-2025 10:13 AM | |
| 984 | 10-16-2025 02:45 PM | |
| 1689 | 10-06-2025 01:01 PM |
11-29-2024
06:25 AM
@pedrosouza Welcome to the Cloudera Community! To help you get the best possible solution, I have tagged our NiFi experts @joseomjr @SAMSAL @mburgess who may be able to assist you further. Please keep us updated on your post, and we hope you find a satisfactory solution to your query.
... View more
11-29-2024
06:23 AM
1 Kudo
Hi! @MattWho @ggangadharan do you have any insights here? Thanks!
... View more
11-28-2024
08:07 AM
1 Kudo
Hi Ryan, thank you for your quick reply. I'll try the proposed solution, at least because it seems to be the only one to solve the situation. Thanks again
... View more
11-22-2024
03:22 PM
2 Kudos
@cvonschrott Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. If you are still experiencing the issue, can you provide the information @ezerihun has requested? Thanks.
... View more
11-22-2024
10:27 AM
1 Kudo
Hi @LucasM , could you describe more of your use case? Your server in GCP have access to Cloudera CML? It's in the same network? Best Regards
... View more
11-22-2024
10:25 AM
1 Kudo
@weixin As a test, try using curl and make sure you have a kerberos ticket: curl -u : --negotiate http://YOURHOST:PORT/jmx You may need to open a support case for this. I also highly recommend upgrading to CDP 7.1.9.
... View more
11-22-2024
05:44 AM
1 Kudo
@SAMSAL Jeez... I should not have prepared that flow at the end of 12 hour work... Of course, it works now, sorry for troubles and thanks for quick support
... View more
11-22-2024
05:29 AM
1 Kudo
The job failed with an OutOfMemoryError (OOME) at the child task attempt level, as indicated by the stacktrace. It was observed that certain mapreduce properties have been set, which may potentially overwrite the hive.tez.container.size property. SET mapreduce.map.java.opts=-Xmx3686m;
SET mapreduce.reduce.java.opts=-Xmx3686m;
SET mapred.child.java.opts=-Xmx10g; It is recommended to validate the yarn appLogs to confirm if the child task attempts were launched with 80% of the hive.tez.container.size. If not, it is advised to remove the mapreduce configurations and try re-running the job. Before re-running the query, it is suggested to collect statistics for all the source tables. This will assist the optimizer in creating a better execution plan.
... View more
11-19-2024
09:31 AM
1 Kudo
Hi, Can you provide sample of this data highlighting what the problem and how do you expect to solve? Also what kind of processor\service are you trying to use to parse this data?
... View more
11-19-2024
05:39 AM
@michalwojtowicz Mentioned error seem to be complaining about expired session which either gets terminated by client or server. Now, to answer your question driver config has SocketTimeout which controls TCP connection: "The number of seconds that the TCP socket waits for a response from the server before raising an error on the request." and default value of the same is 0(i.e the connection does not time out.) Refer: https://docs.cloudera.com/documentation/other/connectors/impala-jdbc/2-6-34/Cloudera-JDBC-Connector-for-Apache-Impala-Install-Guide.pdf However, could you confirm whether you have loadbalancer in place for impala through which you are connecting using JDBC driver? If yes, consider reviewing LB settings which should have timeout configurations allowing server to close the connection for long running queries, for instance: === timeout connect timeout client timeout server ===
... View more