Member since
10-01-2018
802
Posts
143
Kudos Received
130
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3058 | 04-15-2022 09:39 AM | |
| 2468 | 03-16-2022 06:22 AM | |
| 6536 | 03-02-2022 09:44 PM | |
| 2899 | 03-02-2022 08:40 PM | |
| 1909 | 01-05-2022 07:01 AM |
07-11-2021
05:33 AM
1 Kudo
@gfranco In CDSW almost every POD is serving it's own purpose. The only thing which is possible is scale/de-scale the Web PODs if needed. Regarding the monitoring this is running K8s in the heart so you can use K8s command to watch the usages. Here is a good discussion about such commands/utility: https://github.com/kubernetes/kubernetes/issues/17512 From CDSW public doc you can refer this: https://docs.cloudera.com/cdsw/1.9.1/monitoring/topics/cdsw-monitoring.html?
... View more
07-11-2021
05:27 AM
@kalaicool261 There is nothing like terminal memory. This seems a engine memory issue. You should launch the session (engine) with larger memory and CPU from the drop down menu on Session launch page and see if the helps.
... View more
07-11-2021
05:19 AM
@arosc The best way to get some hint is look at POD logs for this environment and see if there is any clue because those should be failing with some issue hence you CDE failing in the monitoring console.
... View more
07-11-2021
05:18 AM
@sur I believe you have to run the queries over Impala not Hive. I have tested below and it works several time in the past. # Install Libraries !pip3 install impyla==0.13.8 !pip3 install thrift_sasl==0.2.1 !pip3 install thrift==0.9.3 !pip3 install sasl==0.2.1 # Connect to Impala from impala.dbapi import connect conn = connect(host='host', port=21050, auth_mechanism='GSSAPI', use_ssl=True, kerberos_service_name='impala') # Execute Query sql = "select * from table" cursor = conn.cursor() cursor.execute(sql) results = cursor.fetchall() You can refer the below doc: https://docs.cloudera.com/cdsw/1.9.1/import-data/topics/cdsw-running-queries-on-impala-tables.html
... View more
07-02-2021
04:21 AM
@lovebo Does this folder exists? This seems coming from Webhdfs. You may have to look at permission as well for users.
... View more
06-29-2021
10:03 AM
@Eduardohahn I would suggest to check the and verify that "Authentication.provider.url" in configuration is accurate. Then see if you this is accessible via Knox or without it. Based on that you can paste the logs here and get some help.
... View more
06-29-2021
12:01 AM
@sanjaysubramani CDP Trial is available at : https://docs.cloudera.com/cdp-private-cloud/latest/release-guide/topics/cdpdc-trial-download-information.html But there is no older version which is available for trial due to Paywall Changes.
... View more
06-28-2021
11:54 PM
@exploer What you would like to customise? Parcels can be opened with tar utility and you can make some changes.
... View more
06-28-2021
11:52 PM
1 Kudo
@rok The Threshold value look less here. To avoid getting the reported health alerts we recommend to increase the corresponding configuration values: CM -> Cloudera Management Services -> Configuration -> Search for "Descriptor Fetch Max Tries" CM -> Cloudera Management Services -> Configuration -> Event Server -> Search for "Descriptor Fetch Tries Interval" and change this value for all the roles. We would recommend to increase the "Descriptor Fetch Max Tries" value from the default 5 to 10 in a first step. I after that you are facing the issue than you should look at the agent logs and start from there.
... View more
06-28-2021
01:36 AM
@ernesto I run apt remove scm-agent Means this removed the agent packages. Then and apt install scm-agent.... Means this is not trying to connect within Cloudera Repo which is behind paywall hence failing. The catch is that the running cluster will stay but whenever you try to change things like add host host or other operations it will fails since you need paywall subscription. In short you cannot add a new host (which is equivalent to installing an agent on some host again).
... View more