Member since
11-26-2015
69
Posts
14
Kudos Received
7
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
6606 | 11-05-2018 01:01 AM | |
4801 | 11-22-2016 07:05 AM | |
5077 | 11-22-2016 02:38 AM | |
4135 | 11-21-2016 09:12 AM | |
3249 | 11-05-2016 03:12 PM |
09-27-2023
05:01 AM
Maybe you can combine these two for a failed job alert:
“Configuring Custom Alert Scripts”
“Configuring Log Alerts”
My thought process is, that in the RM log, there is a very reliable pattern when a job fails (e.g. finalStatus=FAILED), so you could set up a Log Alert for that.
... View more
11-05-2018
01:01 AM
1 Kudo
Hi zain52, Please review this example: https://github.com/cloudera/cdh-twitter-example
... View more
11-23-2016
04:46 PM
The certificate_unknown message is received as an alert from the caller initiating the TLS session. Generally, that means that the client making a connection to the server did not trust the certificate. To find out who is really not trusting the NameNode certificate, check anything that connects to the NameNode. Mostly, it is the DataNodes who need to hearbeat in I think. Check your DataNode logs to find out if you get exceptions regarding trust when they attempt to make a connection. For Resource Manager, check the NodeMangers' logs too. Once you have reviewed the logs, you will likely have a better idea of what is going on. You mentioned that "/var/lib/hadoop-hdfs/certs" is your truststore. If it is, it should contain the certificate for every host in your cluster. Also, make sure you have configured a path to it in the Service Configuration in HDFS: "Cluster-Wide Default TLS/SSL Client Truststore Location"
... 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-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-08-2016
10:03 AM
Yes, that works. "CSD file" sounds like a text config file. Adding a simple description that it's a JAR in the instruction page would have clarified. Thanks again. Miles
... View more
09-29-2016
06:07 AM
Hi, it works applying above configuration. But now i have a NullPointerException in my spark code (rdd.foreach): ... kafkaStream.foreachRDD(new VoidFunction<JavaPairRDD<String, byte[]>>() {
public void call(JavaPairRDD<String, byte[]> rdd) throws Exception {
rdd.foreach(new VoidFunction<Tuple2<String, byte[]>>() {
public void call(Tuple2<String, byte[]> avroRecord) throws Exception { In local mode it works but not in yarn-cluster. Do you have any ideas in order to get it running? Best Regards, Butkiz
... View more
07-09-2016
12:31 AM
2 Kudos
Dear Stewart, Here you can read about Spark notebooks: http://www.cloudera.com/documentation/enterprise/latest/topics/spark_ipython.html Best regards, Gabor
... View more