Member since
11-26-2015
69
Posts
14
Kudos Received
7
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
6470 | 11-05-2018 01:01 AM | |
4752 | 11-22-2016 07:05 AM | |
5015 | 11-22-2016 02:38 AM | |
4069 | 11-21-2016 09:12 AM | |
3212 | 11-05-2016 03:12 PM |
11-05-2018
01:01 AM
1 Kudo
Hi zain52, Please review this example: https://github.com/cloudera/cdh-twitter-example
... View more
10-28-2018
04:25 AM
1 Kudo
Hi, Flume's HDFSEventSink writes to a SequenceFile by default. The name of your HDFS sink is wrong in your Flume configuration. Please change it to this: TwitterAgent.sinks.HDFS.hdfs.fileType = DataStream Here is the documentation: https://flume.apache.org/FlumeUserGuide.html#hdfs-sink Best regards, Gabor
... View more
11-22-2016
07:05 AM
Hello @obar1, Here is a similar forum topic: https://community.cloudera.com/t5/Hadoop-101-Training-Quickstart/Not-able-to-access-HDFS-getting-Connection-exception/td-p/28302 Gabor
... View more
11-22-2016
04:11 AM
Hello @vidhatajain, Please check that your self-signed CA certificate has been added to your java truststore on all hosts. Example: keytool -v -list -keystore /usr/java/jdk1.7.0_67-cloudera/jre/lib/security/jssecacerts Gabor
... View more
11-22-2016
02:38 AM
1 Kudo
Hello @npdell, Cloudera Manager trigger is what you need. You can create it at here: CM --> YARN --> Status --> Create trigger --> Edit manually Examples: 1) It will alert if there are more than 50 applications in pending state Expression: IF (select total_apps_pending_across_yarn_pools WHERE entityName=$SERVICENAME and LAST( total_apps_pending_across_yarn_pools) > 50) DO health:concerning Metric Evaluation Window: 10 minutes 2) It will alert if more than 5 applications are failing Expression: IF (select total_apps_failed_rate_across_yarn_pools WHERE entityName=$SERVICENAME and LAST( total_apps_failed_rate_across_yarn_pools) > 5) DO health:concerning Here is the documentation about CM triggers: http://www.cloudera.com/documentation/enterprise/latest/topics/cm_dg_triggers.html Gabor
... View more
11-21-2016
01:46 PM
Hello, You can do the following step: Kafka > Instances (Select Instance) > Configuration > Kafka Broker > Advanced > Kafka Broker Advanced Configuration Snippet (Safety Valve) for kafka.properties Please add (example): listeners=PLAINTEXT://192.10.0.1:9092,PLAINTEXT://10.0.3.3:9092 Gabor
... View more
11-21-2016
09:12 AM
1 Kudo
Hello, You can add as many gateways as you want. If you add a gateway outside of Cloudera Manager then the only disadvantage is that you need to do every step manually. For example these: installation of client configurations installation of client packages configuration of kerberos (/etc/krb5.conf) etc. Gabor
... View more
11-05-2016
03:12 PM
Hello, You have to move the SPARK2_ON_YARN-2.0.0.cloudera.beta1.jar to here: /opt/cloudera/csd and restart the Cloudera Manager with the following command: service cloudera-scm-server restart Here are the other steps: https://www.cloudera.com/documentation/betas/spark2/latest/topics/spark2_installing.html Best regards, Gabor
... View more
09-20-2016
02:54 AM
Dear butkiz, Please add the following property to the configuration block of the oozie spark action to give this more memory. <property> <name>oozie.launcher.mapreduce.map.memory.mb</name> <value>4096</value> </property> <property> <name>mapreduce.map.memory.mb</name> <value>4096</value> </property> <property> <name>oozie.launcher.mapred.child.java.opts</name> <value>-Xmx4096m</value> </property>
... View more