Member since
10-01-2018
802
Posts
143
Kudos Received
130
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3065 | 04-15-2022 09:39 AM | |
| 2472 | 03-16-2022 06:22 AM | |
| 6540 | 03-02-2022 09:44 PM | |
| 2904 | 03-02-2022 08:40 PM | |
| 1912 | 01-05-2022 07:01 AM |
01-25-2021
02:52 AM
@avengers This is Resident memory used you can check the doc here: https://docs.cloudera.com/documentation/enterprise/5-8-x/topics/cm_metrics_monitor.html
... View more
01-25-2021
02:33 AM
@analytics-shek I guess you have the packages available already hence you can add service but if you want to build cluster from scratch then you will not be able to do that.
... View more
01-20-2021
04:44 AM
@AD100 The best bet is to contact Cloudera Sales team if you have valid subscription. However I would suggest you to keep an eye on release notes to track this.
... View more
01-20-2021
04:26 AM
@prasanna06 You have to see the full agent logs to investigate this issue. There should be another error messages apart from this.
... View more
01-12-2021
02:07 PM
@ebeb What you are describing would be a scenario for cross realm trust. In such a scenario you might have all of the cluster principals in realm A and all of the users in Realm B. With Trust established between A and B. Here is the doc for reference: https://docs.cloudera.com/documentation/enterprise/latest/topics/cm_sg_kdc_def_domain_s2.html
... View more
01-12-2021
05:10 AM
@Mamun_Shaheed CDP doesn’t support Python 3 and higher for CDH services. Here is the Software Dependency Note for reference: Python - CDP Private Cloud Base, with the exceptions of Hue and Spark, is supported on the Python version that is included in the operating system by default, as well as higher versions, but is not compatible with Python 3.0 or higher. For example, CDP Private Cloud Base requires Python 2.7 or higher on RHEL 7 compatible operating systems. Spark 2 requires Python 2.7 or higher, and supports Python 3. If the right level of Python is not picked up by default, set the PYSPARK_PYTHON and PYSPARK_DRIVER_PYTHON environment variables to point to the correct Python executable before running the pyspark command. I am assuming you want to use Python 3 for CDSW etc. For that you can use custom engine with required Python version which is independent with CDH services. Some reference docs are below. https://docs.cloudera.com/documentation/data-science-workbench/1-8-x/topics/cdsw_extensible_engines.html In short you can use the distinct Python in hosts but just make sure Cloudera services are using only the supported Python version.
... View more
01-09-2021
08:14 PM
@mig_aguir Yes, I agree with you.
... View more
01-09-2021
07:58 AM
@Anks2411 This could be a bug since it's an older CM version but looking at the logs this seems issue with alternatives. Can you try these steps and let me know if this improves the behaviour. 1. Stop all roles on the host. 2. Stop the agent. 3. Ensure that the agent and supervisord are fully stopped. 4. Verify the output of the follow command and ensure that it only captures information related to cloudera. \ls -l /etc/alternatives/ | grep "\/opt\/cloudera" 5. Run the following shell script to cleanup and remove all alternatives related to cloudera parcels. $ \ls -l /etc/alternatives/ | grep "\/opt\/cloudera" | awk {'print $9'} | \ while read m; do if [[ -e /var/lib/alternatives/${m} ]] ;then echo "Removing ${m}"; \ rm -fv /var/lib/alternatives/${m} ; fi; rm -fv /etc/alternatives/${m}; done 6. Start the agent and review the log data in /var/log/cloudera-scm-agent/cloudera-scm-agent.log. You should see the agent attempt to create new alternatives for your parcels. 7. Verify where the alternative point and restart the roles on the host. Feel free to keep us updated here.
... View more
01-09-2021
06:11 AM
1 Kudo
@raghu9raghavend This error is coming due the the Kerberos Authentication is configured for your RM UI. You have 2 options: 1. Configure Browsers for Kerberos Authentication (Recommended) 2. Disable the Kerberos Authentication for Web UI from service configuration. CM > Yarn > Configuration > Enable Kerberos Authentication for HTTP Web-Consoles > Disable/uncheck this option and restart Yarn.
... View more
01-08-2021
07:46 AM
CM uses BitTorrent to distrubte parcels so it's already very efficient. My recommendation would be to let CM do the work and not bother with trying to save yourself a few minutes.
... View more