Member since
10-01-2018
802
Posts
143
Kudos Received
130
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2332 | 04-15-2022 09:39 AM | |
1798 | 03-16-2022 06:22 AM | |
5262 | 03-02-2022 09:44 PM | |
2128 | 03-02-2022 08:40 PM | |
1331 | 01-05-2022 07:01 AM |
07-26-2020
05:06 AM
@rok As far as I know there is no way to deploy client config on only one host because Client Configuration is proportional to the that role/service and while deploying the client config it will all host related to that. That's another scenario where you have a role only deployed on one host only and there you deploy the Configuration then It will touch only one host. If roles are distributed on more than one host than deploying client config on one host (If there could be a way) will fail because of out of sync. There is no hots specific API call which can do same for you as well. https://archive.cloudera.com/cm6/6.2.0/generic/jar/cm_api/apidocs/resources.html
... View more
07-23-2020
12:14 PM
2 Kudos
@Selene Please take a backup of database and then you can follow below steps: Find the Cloudera Manager server's database details from file /etc/cloudera-scm-server/db.properties. Log in to CM database server. Check if there is more than one user admin in the system. Take a back up of password_hash and password_salt of the Admin user and paste them into a text editor: SELECT password_hash, password_salt FROM users WHERE user_id = 1; Update password_hash and password_salt for user "admin" using the following command: update USERS set password_hash='2518db3278f704558ece63f469af87a7c12dbad8ff0971d3b677e291d61b44fc', password_salt=-5792243850706636683 WHERE user_id = 1; Log in to the CM interface using admin user and admin password.
... View more
07-20-2020
01:45 AM
@mike_bronson7 The similar discussion happened on one of other Community thread by @Shelton You can follow this here: https://community.cloudera.com/t5/Support-Questions/add-new-data-node-to-existing-cluster/td-p/213133 Also the decommissioning is more suitable approach you can see this doc more more details though: https://docs.cloudera.com/HDPDocuments/Ambari-2.7.3.0/managing-and-monitoring-ambari/content/amb_manage_components_on_a_host.html
... View more
07-20-2020
01:37 AM
@IZ_AMD This seems the issue with DB it could be either the permission issue on DB or schema issue. You have to check if scm_prepare script ran successfully as well. I would suggest to configure the DB again if this is new install. https://docs.cloudera.com/documentation/enterprise/latest/topics/cm_ig_installing_configuring_dbs.html
... View more
07-19-2020
01:40 AM
1 Kudo
@mike_bronson7 I meant to say there is not a bunch of people using package install because of following reason[1]: Cloudera does not support clusters that are not deployed and managed by Cloudera Manager. If you choose to install CDH manually using these instructions, you cannot use Cloudera Manager to install additional parcels. This can prevent you from using services that are only available via parcel. For testing purpose you are free to choose any method but it depends what you are looking i.e easy managing of cluster using CM web UI or just want to play with a demo installation. Regarding the end of life question, Yes that's the nature of software support that end of the day it will be end of life after some years. For Cloudera software support cycle you can here is a glance: https://www.cloudera.com/legal/policies/support-lifecycle-policy.html Cheers! [1] https://docs.cloudera.com/documentation/enterprise/5-16-x/topics/install_cloudera_packages.html
... View more
07-18-2020
06:34 AM
@prabhat The error seems misleading as per my experience but I would like to check the ownership and permission on the directory /var/run/cloudera-scm-agent/process/ this should be like below: ll /var/run/cloudera-scm-agent/process/ | grep -i hdfs drwxr-x--x. 3 hdfs hdfs 420 Jun 26 15:18 1805-hdfs-DATANODE drwxr-x--x. 4 httpfs httpfs 360 Jun 26 15:18 1806-hdfs-HTTPFS drwxr-x--x. 3 hdfs hdfs 420 Jun 26 15:30 1857-hdfs-DATANODE drwxr-x--x. 4 httpfs httpfs 360 Jun 26 15:30 1858-hdfs-HTTPFS drwxr-x--x. 3 hdfs hdfs 420 Jun 26 16:40 1902-hdfs-DATANODE drwxr-x--x. 4 httpfs httpfs 360 Jun 26 16:40 1903-hdfs-HTTPFS If the you there is permission issue then fix them else you can try to hard start agent once and see how this goes.
... View more
07-17-2020
04:33 AM
@owais21 The MLOps is released as a part of Cloudera Machine Learning and is available on CDP. You wouldn’t be able to use on HDP. You can get and idea of various offerings by these blog: https://www.cloudera.com/about/news-and-blogs/press-releases/2020-05-06-cloudera-delivers-open-standards-based-mlops-empowering-enterprises-to-industrialize-ai.html https://blog.cloudera.com/introducing-mlops-and-sdx-for-models-in-cloudera-machine-learning/ https://blog.cloudera.com/cloudera-machine-learning-for-cdp-purpose-built-for-the-ai-first-enterprise/
... View more
07-17-2020
04:07 AM
1 Kudo
@Amn_468 Your approach looks fine. You can always follow the recommendations while doing maintenance of cluster by referring below doc which is very informative. https://docs.cloudera.com/documentation/enterprise/5-14-x/topics/cm_mc_host_maint.html
... View more
07-17-2020
04:03 AM
2 Kudos
@mike_bronson7 For the installation purpose we have a very nice community article which you can follow where you will get all types of installation method with videos[1]. The package installation is almost deprecated since it's hard to manage a cluster in RPM. Though you can try for personal purposes, here is the doc. https://docs.cloudera.com/documentation/enterprise/6/6.3/topics/cm_ig_custom_installation.html#cmig_topic_21_2 Regarding some other some other knowledge and videos you can follow Cloudera Youtube[2] channel as well as Blog[3]. https://community.cloudera.com/t5/Community-Articles/How-To-Path-B-Installation-of-Cloudera-Manager/ta-p/44598 https://www.youtube.com/c/ClouderaInc/playlists https://blog.cloudera.com/
... View more
07-15-2020
12:00 PM
@nikolayburiak This may be due to encoding issue on HMS database. Can you try to change the format something like alter table COLUMNS_V2 modify column COMMENT varchar(256) character set utf8;
... View more