Member since
04-11-2016
471
Posts
325
Kudos Received
118
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2075 | 03-09-2018 05:31 PM | |
2640 | 03-07-2018 09:45 AM | |
2535 | 03-07-2018 09:31 AM | |
4398 | 03-03-2018 01:37 PM | |
2468 | 10-17-2017 02:15 PM |
03-07-2017
07:03 PM
Hi @Eric Lloyd, Is your Kafka broker listening on port 2181? It looks like a zookeeper port. As indicated in the properties description, ConsumeKafka processors are not using ZooKeeper to connect to the brokers as GetKafka is doing. If you provide a comma separated list of your brokers (with corresponding port), it should be OK. Hope this helps.
... View more
03-07-2017
05:54 PM
Hi @Adnan Alvee, Are you using spark-shell? if yes the spark context is already generated for you (as 'sc') and you don't need to create a new one, you should be able to directly go with: val ssc = new StreamingContext(sc, Seconds(1))
... View more
03-07-2017
04:18 PM
No if you have a Zookeeper quorum available, you just need to the set the following property: nifi.zookeeper.connect.string=node-1:2181,node-2:2181,node-3:2181 in nifi.properties file. You don't need to modify the zookeeper.properties file in your case. Hope this helps.
... View more
03-07-2017
04:08 PM
Hi @Anishkumar Valsalam, This is not required when using external ZooKeeper instances. Only the quorum property should be required in nifi.properties file. Hope this helps.
... View more
03-04-2017
10:18 AM
1 Kudo
Hi @yeah thatguy, You would have more details about the error by looking at the log file ./logs/nifi-app.log The most common cause is that the port you defined in the processor is already used and cannot be used by the listener started by the processor. Hope this helps.
... View more
02-23-2017
08:11 PM
2 Kudos
Hi @Oliver Meyn, You are absolutely right on all points. Regarding HDFS, at the moment there is no option to keep the identities secure, but there are discussions going on to find a way to secure the keytabs. Regarding Kafka, this is due to a limitation on Kafka's side (https://issues.apache.org/jira/browse/KAFKA-4259). This has been recently fixed and I'm sure the Kafka processors in NiFi will be updated in the future to allow a similar option as in other processors. Hope this helps.
... View more
02-23-2017
04:53 PM
1 Kudo
Could you set the relationship "retry" back to the SQL processor just to check if it gives more info in the logs? And the same for other relationship you are auto terminating at the moment.
... View more
02-23-2017
01:39 PM
Hi @Joshua Adeleke. Could you have a look at ./logs/nifi-app.log file and share the stack trace? Thanks!
... View more
02-22-2017
11:41 AM
2 Kudos
Hi @Nigel Jones, Ranger is available only once the cluster is installed. You start with the services you want. Then, once the installation is completed, you can add Ranger (add service, select Ranger) from Ambari. It is not available during a fresh install. Hope this helps.
... View more
02-22-2017
10:03 AM
1 Kudo
Hi @adrian white, Yes you can, just draw the same relationship from the first processor to the two other processors. Example:
... View more