Member since
01-11-2019
105
Posts
11
Kudos Received
6
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2101 | 07-01-2021 03:43 AM | |
2038 | 03-15-2021 11:16 PM | |
1506 | 02-22-2021 02:22 AM | |
1764 | 11-20-2020 12:05 AM | |
3812 | 10-07-2020 01:00 AM |
07-01-2021
03:43 AM
Hello @Juandata You may get all the required information from the below links as @cjervis mentioned in his previous comment too. Please refer: https://docs.cloudera.com/documentation/enterprise/6/6.3/topics/hue.html https://docs.gethue.com/ Hope this helps! Cheers! Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
06-14-2021
08:08 AM
Hello @Exor , The issue seems to be that the agent is not able to connect to archive.cloudera.com. Could you check or share what the failure is via the log files present under /tmp/scm_prepare_node.*/*
... View more
06-01-2021
01:36 AM
Hello @khanarshadazmat , We do not have a direct method to get the CM Server and Agent version like we have in java -version. However, you can follow some of the below workarounds to get the required result: 1_). using below command # hdfs version # hadoop version 2_). version info available at "/opt/cloudera/parcels/<CDH>/lib/hadoop/cloudera/cdh_version.properties" Let me know if this helps! Cheers! Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
05-31-2021
12:42 AM
Hello @khanarshadazmat , You may get the role information using CM API for HDFS service. API: https://archive.cloudera.com/cm7/7.2.4/generic/jar/cm_api/apidocs/resource_RolesResource.html#resource_RolesResource_ClustersResourceV43_ServicesResourceV42_RolesResourceV41_readRoles_GET See the below example for a better understanding: • When I execute the above API, I would get the below details for HDFS service: "name" : "HDFS-1-NAMENODE-cb7144bc695976e34cfbaaf26c176d21",
"type" : "NAMENODE",
"serviceRef" : {
"clusterName" : "Cluster 1",
"serviceName" : "HDFS-1",
"serviceDisplayName" : "HDFS-1",
"serviceType" : "HDFS"
}, ...
"roleState" : "STARTED",
"healthSummary" : "GOOD",
"configStalenessStatus" : "FRESH",
"haStatus" : "STANDBY",
"maintenanceMode" : false,
"commissionState" : "COMMISSIONED",
"roleConfigGroupRef" : {
"roleConfigGroupName" : "HDFS-1-NAMENODE-BASE"
}, • and, for the second namenode, I'll get something as below: "name" : "HDFS-1-NAMENODE-b1d777dd6714507397225b07ea9057ce",
"type" : "NAMENODE",
"serviceRef" : {
"clusterName" : "Cluster 1",
"serviceName" : "HDFS-1",
"serviceDisplayName" : "HDFS-1",
"serviceType" : "HDFS"
}, ... "roleState" : "STARTED",
"healthSummary" : "GOOD",
"configStalenessStatus" : "FRESH",
"haStatus" : "ACTIVE",
"maintenanceMode" : false,
"commissionState" : "COMMISSIONED",
"roleConfigGroupRef" : {
"roleConfigGroupName" : "HDFS-1-NAMENODE-BASE"
},
"entityStatus" : "GOOD_HEALTH" • In both the above examples, check for the keyword "haStatus". The namenode with haStatus as Active would be your Active Namenode. Let me know if this helps. Cheers! Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
05-27-2021
10:07 PM
Hello @jmbohl , @zuoseven , @napoleon , Please note that this is a known bug, but not yet fixed. Please check if the below properties in CM > HDFS > Configuration is set to an asterisk (*): -------------------------------- HDFS Proxy User Hosts HDFS Proxy User Groups Hue Proxy User Hosts Hue Proxy User Groups -------------------------------- If the above is set to asterisk, please let me know if the below workaround works: 1_). Create the user and group of the HDFS directory in HUE, then log in to HUE with the user of HDFS and then go to HUE to create an ACL for the HDFS directory 2_). Because there is a BUG in HUE for HDFS ACL, it is not recommended to use it this way. It is recommended that you still use the acl command line to create on HDFS. Cheers! Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
05-19-2021
06:04 AM
2 Kudos
Hello @sweeny_here , You may skip the SSL check from the MySQL DB. To do so, below are the steps: 1. Stop the CM server 2. Set the property in MySQL config (my.cnf) file as below [mysql]
... ...
skip_ssl
...
... 3. Restart mysqld and CM Server. Also, please make sure to disable SSL in the CM db.properties file as below # you can set the &useSSL=false in the db.properties
com.cloudera.cmf.db.type=mysql
com.cloudera.cmf.orm.hibernate.connection.driver_class=com.mysql.jdbc.Driver
com.cloudera.cmf.orm.hibernate.connection.url=jdbc:mysql://<mysql-host>/<database>?useUnicode=true&characterEncoding=UTF-8&useSSL=false
com.cloudera.cmf.db.name=<database>
com.cloudera.cmf.db.user=<CM-Mysql-user>
com.cloudera.cmf.db.setupType=EXTERNAL
com.cloudera.cmf.db.password=<password> Let me know if this helps! Cheers! Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
05-17-2021
02:41 AM
Hello @AndrasV , You may get the details using the host API as below: https://archive.cloudera.com/cm6/6.2.0/generic/jar/cm_api/apidocs/resource_HostsResource.html#resource_HostsResource_HostsResourceV30_readHost_GET This would list down the roles that are installed/available on this particular host. To get the host Id, please use the below API: https://archive.cloudera.com/cm6/6.2.0/generic/jar/cm_api/apidocs/resource_HostsResource.html#resource_HostsResource_HostsResourceV30_readHosts_GET Let us know if this helps. Cheers! Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
03-29-2021
12:35 AM
Hello @pauljoshiva, Please review the below post and let us know if that helps https://community.cloudera.com/t5/Support-Questions/How-to-remove-risk-disks-from-Hadoop-cluster/td-p/151752 Cheers! Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
03-16-2021
03:19 AM
Hello @Amn_468, The property would include a double dash as "--backend_client_rpc_timeout_ms". You may also want to refer to the below official documentation: https://docs.cloudera.com/cdp-private-cloud-base/7.1.3/impala-manage/topics/impala-timeout-thrift.html Kindly let me know if this helps! Cheers! Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
03-15-2021
11:16 PM
1 Kudo
Hello @Amn_468 , You may update this value as below: • Cloudera Manager > Impala > Configuration > Update the value in "Impala Daemon Command Line Argument Advanced Configuration Snippet (Safety Valve)" • Click Save Changes and restart Impala. Let me know if this helps. Cheers! Was your question answered? Make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more