Member since
04-22-2014
1218
Posts
341
Kudos Received
157
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 26249 | 03-03-2020 08:12 AM | |
| 16400 | 02-28-2020 10:43 AM | |
| 4717 | 12-16-2019 12:59 PM | |
| 4473 | 11-12-2019 03:28 PM | |
| 6659 | 11-01-2019 09:01 AM |
01-25-2018
12:51 AM
Thank you for the answer The JAVA_HOME is not set, and I've installed the jdk version from the CDH repository. Then I guess the Cloudera Manager also installed the jdk 6 during the isntallation/configuration phase. So you recommend to uninstall jdk 6 and 7 and install the latest supported jdk on each host?
... View more
01-22-2018
07:58 AM
Hi bgooley, yhank you for the answer! I've set the Sqoop 1 Client Gateway and deployed the configuration. The Teradata Connector parcel was already activated during the cluster configuration phase. What puzzles me is that in the Cloudera documentation, for the manual installation, says that the following property must be added to the sqoop-site.xml file in order to use the Teradata connector with Oozie: <configuration>
<property>
<name>sqoop.connection.factories</name>
<value>com.cloudera.connector.teradata.TeradataManagerFactory</value>
</property>
<configuration> I've followed the teradata connector installation path trough Cloaudera Manager, thus I was expecting that the property had been injected automatically by the CM, but it seems missing in the sqoop-site.xml files: /run/cloudera-scm-agent/process/ccdeploy_sqoop-conf_etcsqoopconf.cloudera.sqoop_client_1328941158299821742/sqoop-conf/sqoop-site.xml <?xml version="1.0" encoding="UTF-8"?> <!--Autogenerated by Cloudera Manager--> <configuration> <property> <name>sqoop.connection.factories</name> <value></value> </property> <property> <name>sqoop.tool.plugins</name> <value></value> </property> </configuration> /etc/sqoop/conf.cloudera.sqoop_client/sqoop-site.xml <?xml version="1.0" encoding="UTF-8"?>
<!--Autogenerated by Cloudera Manager-->
<configuration>
<property>
<name>sqoop.connection.factories</name>
<value></value>
</property>
<property>
<name>sqoop.tool.plugins</name>
<value></value>
</property>
</configuration> In this case should I inject it manually from the configuration in Cloudera Manager web console as explained from @saranvisa? Thanks for the help
... View more
01-19-2018
09:13 AM
@DataCrunch, If you use Cloudera Manager to manage your cluster, you can use the charts for that host to monitor resources more closely. It is a great way of keeping an eye on who is taking up what IO, disk, memory, etc. https://www.cloudera.com/documentation/enterprise/latest/topics/cm_dg_view_charts.html
... View more
01-17-2018
10:01 AM
Awesome! Thank you for following up with the good news!
... View more
01-11-2018
02:01 PM
1 Kudo
@darouwan, You should not need to do any changes to your MySQL system tables. You may be doing damage to your MySQL installation! This Tables have unsupported engine type" message appears because the Cloudera Manager database has tables in it that are not InnoDB. To check your Cloudera Manager tables, you can connecdt to your MySQL server using the /etc/cloudera-scm-server/db.properties configuration as a guide. Then, run the following query: SELECT TABLE_NAME, ENGINE FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = DATABASE(); If you haven't used Cloudera Manager yet, you can drop the tables and then start Cloudera Manager. If your MySQL instance supports InnoDB, new tables will be created with InnoDB as the type. Let us know if you have any questions. Regards, Ben
... View more
01-11-2018
01:18 PM
So I have been doing some testing today and I noticed that once I disable impersonation I am able to run queries in hue via the impala editor (not sure if ldap is in action here) BUT I am unable to access impala via the command line. Maybe Hue may needs Sentry after all? Side note authorized_prozy_user_config flag is still blank in the impalad startup so if any has ldap working with hue and impala I would be insterested in seeing what yours looks like.
... View more
01-10-2018
10:55 AM
1 Kudo
that means you have many services running on your server so your server doesn't provide the memory request to Java. I don't know your clusters setup, but it is possible many services are running that specific server. Try to reduce the running services.
... View more
01-08-2018
11:36 AM
Thanks Ben. Also, do we have any updates that are announced by Cloudera in terms of CDH upgrade required for Meltdown or Spectre apart from OS patches. Thanks!!
... View more
01-07-2018
02:31 PM
@digitalrinaldo, When adding hosts via the wizard, a script is executed as root on the new host that will install the necessary packages. If you have chosen in the wizard to have Cloudera Manager mange Java, it will also install the java packages from Cloudera's repository. By default, Java is not installed for you, so perhaps that may have happened? A box needs to be checked to have CM manage Java. At this stage, though, I recommend you install your own JDK 1.8 as the Cloudera Repository has JDK 1.7_67.
... View more