Member since
01-11-2019
105
Posts
11
Kudos Received
6
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3589 | 07-01-2021 03:43 AM | |
| 3319 | 03-15-2021 11:16 PM | |
| 2388 | 02-22-2021 02:22 AM | |
| 2763 | 11-20-2020 12:05 AM | |
| 5266 | 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-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
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
02-22-2021
02:22 AM
Hello @rajatsachan, Using the Delete Policy, you may set up any of the below options Delete Policy - Whether files that were deleted on the source should also be deleted from the destination directory. This policy also determines the handling of files in the destination location that are unrelated to the source. Options include: Keep Deleted Files - Retains the destination files even when they no longer exist at the source. (This is the default.). Delete to Trash - If the HDFS trash is enabled, files are moved to the trash folder. (Not supported when replicating to Amazon S3.) Delete Permanently - Uses the least amount of space; use with caution. Review the replication document for more details: https://docs.cloudera.com/documentation/enterprise/latest/topics/cm_bdr_hdfs_replication.html Cheers!
... View more
12-14-2020
12:00 AM
Hello @prasanna06 In CDH 6.3.3 you may use the below-documented way to add the "Add-on service" https://docs.cloudera.com/documentation/enterprise/latest/topics/cm_mc_addon_services.html#concept_kpt_spj_bn 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
11-20-2020
12:05 AM
Hello @HareeKrushnan I see that you are using a custom script to retrieve keytabs from the local filesystem. The script is failing as it is unable to find the required keytabs at the location cp: cannot stat ‘/etc/hadoop/conf/keytabs/spark_clouderadp02.ibm.cloud@IBM.CLOUD.keytab’: No such file or directory>> Please note that to use the custom script the KDC administrators should create the required principals and keytabs, and store them securely on the Cloudera Manager Server host. Please review the below document for more information on using a Custom Kerberos Keytab Retrieval Script https://docs.cloudera.com/documentation/enterprise/5-16-x/topics/sg_keytab_retrieval_script.html 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