Member since
10-01-2018
802
Posts
143
Kudos Received
130
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3064 | 04-15-2022 09:39 AM | |
| 2471 | 03-16-2022 06:22 AM | |
| 6539 | 03-02-2022 09:44 PM | |
| 2904 | 03-02-2022 08:40 PM | |
| 1910 | 01-05-2022 07:01 AM |
09-30-2020
07:59 AM
thanks, i am already did that but I get
... View more
09-30-2020
03:47 AM
2 Kudos
@Cluster-CDP You can follow below Cloudera Recommendation about Role distribution as per number of nodes in the cluster. Though in your case this seems a best fit for me. https://docs.cloudera.com/cloudera-manager/7.0.3/installation/topics/cdpdc-runtime-cluster-hosts-role-assignments.html Master Hosts Utility Hosts Gateway Hosts Worker Hosts Master Host 1: NameNode YARN ResourceManager JobHistory Server ZooKeeper Kudu master Spark History Server One host for all Utility and Gateway roles: Secondary NameNode Cloudera Manager Cloudera Manager Management Service Hive Metastore HiveServer2 Impala Catalog Server Impala StateStore Hue Oozie Flume Gateway configuration HBase backup master Ranger Admin, Tagsync, Usersync servers Atlas server Solr server (CDP-INFRA-SOLR instance to support Atlas) Streams Messaging Manager Streams Replication Manager Service ZooKeeper 3 - 10 Worker Hosts: DataNode NodeManager Impalad Kudu tablet server
... View more
09-29-2020
03:21 AM
2 Kudos
@Pavel_kostyukov You have to install on the need basis, if you need them then you can install by following below document. https://docs.cloudera.com/documentation/enterprise/latest/topics/impala_udf.html#udf_demo_env
... View more
09-29-2020
01:18 AM
1 Kudo
@b1995assuncao I don't think it's possible. The range is dynamic and by default always will be in latest time range.
... View more
09-29-2020
01:16 AM
1 Kudo
@rjpsarath2 Please read carefully the section below on same page: What external websites will I have access to while taking the exam? The exam gateway has a firewall that restricts your access to external resources. You will have whitelisted access to the Apache and Cloudera websites. Other sites we determineto be necessary and appropriate for a given exam may also be made available. Websites like Google, StackOverflow etc. and other search functionality will not be accessible. Downloading external code or packages is not permitted. Where Apache and Cloudera websites means below Websites: Apache: https://hadoop.apache.org/docs/stable/ Cloudera: https://docs.cloudera.com/documentation/index.html Regarding the tools, as far as I know during the exams you have been given a environment where you have to perform the task so you can use any commands available in that OS or related with environment. If you are expecting using a tool out side of exam window then it's not. As the exam guide clearly saying: You may not launch any other application on your computer during the exam You may not take screenshots of the exam environment Hope this help. Let me know if you still have any question.
... View more
09-28-2020
09:54 PM
Alright. THanks man
... View more
09-28-2020
12:02 PM
@HanzalaShaikh You can see the audit hadoop-cmf-hdfs-NAMENODE-namenode1.us-east1-b.c.coherent-elf-271314.internal.log.out file. Try to clean start the HDFS again and see if that helps.
... View more
09-27-2020
10:55 PM
Thanks for your reply. I have already tried but still getting the same error.
... View more
09-24-2020
03:50 AM
Hi GangWar, Thank you for your detailed reply. I'll check them. Best regards,
... View more
09-24-2020
01:22 AM
@Yuriy_but You are likely hitting some known issue. If this is greater than CM 5.15.1 then please follow this step and see. From Cloudera Manager, stop Navigator Metadata Server On the host where Navigator Metadata Server is installed, navigate to the jars directory: $ cd /usr/share/cmf/cloudera-navigator-server/jars List the contents that start with c3p0: $ ls c3p0* The list may include two jar files: c3p0-0.9.1.2.jar
c3p0-0.9.5.2.jar If the file c3p0-0.9.5.2.jar is present, remove it: $ rm c3p0-0.9.5.2.jar Navigate tothe Navigator wars directory: $ cd /usr/share/cmf/cloudera-navigator-server/wars/ Delete the same file c3p0-0.9.5.2.jar from the nav-core-webapp* war file: $ zip -d nav-core-webapp-2.14.1.war WEB-INF/lib/c3p0-0.9.5.2.jar From Cloudera Manager, start Navigator Metadata Server If this is air-gapped environment (No internet access) then you might need these: 1. Identify IP address of the NMS. (can be gathered in Cloudera Management services->instances->Navigator Metadata Server) 2. Add the following line to the bottom of /etc/hosts on the NMS 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 <NMS_IP_ADDRESS> java.sun.com 3. On NMS, install httpd, depending on your Linux distribution. As this host does not have internet access, you will need to manually import and install rpms. https://httpd.apache.org/docs/2.4/platform/rpm.html 4. Make a directory for java dtd file, and adjust permissions. mkdir /var/www/html/dtd; chown 755 /var/www/html/dtd 5. Acquire Java DTD file from the following URL. http://java.sun.com/dtd/web-app_2_3.dtd 6. Copy the file to /var/www/html/dtd directory on the NMS. Ensure the file is readable by "other". 7. Enable httpd server sudo systemctl enable httpd; sudo systemctl start httpd 8. Start NMS. NOTE: httpd must run for each NMS restart, this is not a one-off workaround. Systemctl command should ensure that this is the case. If the above workaround is not possible, a patch is also available from Cloudera Support until this is resolved in an upcoming release of Cloudera Manager.
... View more