Member since
07-30-2019
944
Posts
197
Kudos Received
91
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 1504 | 10-05-2021 01:53 PM | |
| 16323 | 09-23-2019 06:03 AM | |
| 6816 | 05-04-2019 08:42 PM | |
| 1502 | 06-11-2018 12:45 PM | |
| 12619 | 06-04-2018 01:11 PM |
09-15-2017
08:19 PM
1 Kudo
@sally sally The processor will only list the files which were not included in the first listing it created.
... View more
09-15-2017
07:52 PM
@Simon Jespersen
Run this command on your keytab file: klist -kt /etc/security/keytabs/kafka.service.keytab Whatever is displayed should be your principal in the jaas-client.config file.
... View more
09-14-2017
02:18 PM
1 Kudo
@Mitthu Wagh There is no way to change the 5 minute running average on the processors. What are you looking for? You can still see the stats from the processor by hovering the cursor over the processor and right=click, then a menu pops up and you can see the Status History of the processor: A new window opens with a choice of stats to view
... View more
09-14-2017
02:01 PM
@Simon Jespersen Create a jaas-client.config file with the principal and keytab for NiFi to use to connect to the broker. Here is one I use for my NiFi: KafkaClient {
com.sun.security.auth.module.Krb5LoginModule required
useKeyTab=true
storeKey=true
keyTab="/etc/nifi/2.1.1.0-2/0/kafka.service.keytab"
principal="kafka/hdp-24-03.openstacklocal@SMENIFI.COM";
}; Make sure to put it in a directory that the nifi user can access, mine is located in the /etc/nifi/2.1.1.0-2/0/ directory. Then add the highlighted property to the Advanced nifi-bootstrap-env section in Ambari This file must be on all of the nodes in your cluster.
... View more
09-14-2017
01:22 PM
@Simon Jespersen What version of NiFi are you using?
... View more
09-13-2017
11:11 PM
@Simon Jespersen You need to configure two additional properties in the processor: Change the Kerberos Service name to just kafka
... View more
09-11-2017
08:33 PM
@haM@ In the GetFTP processor, you can change that property to use a different port. Try using 139 or 445 to see if it works?
... View more
09-09-2017
07:22 PM
@Wesley Bohannon Check these properties, the default values are 3 seconds, change them to 30 seconds and see if it helps nifi.zookeeper.connect.timeout
nifi.zookeeper.session.timeout I would also check these properties, the default values are 5 seconds, change them to 30 seconds also nifi.cluster.node.connection.timeout
nifi.cluster.node.read.timeout Finally, check this property, change it from the default of 10 to 40 or 50 nifi.cluster.node.protocol.threads
... View more