Member since
07-30-2019
920
Posts
195
Kudos Received
91
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1036 | 10-05-2021 01:53 PM | |
14461 | 09-23-2019 06:03 AM | |
5601 | 05-04-2019 08:42 PM | |
1142 | 06-11-2018 12:45 PM | |
10445 | 06-04-2018 01:11 PM |
04-18-2017
12:24 PM
@Harish S If you run the klist command as the user running NiFi, what do you see?
... View more
04-18-2017
11:58 AM
2 Kudos
@Jatin Kheradiya Currently, when any changes are made to the nifi.properties file, NiFi does need to be restarted. There are new features coming in future releases that will not require a restart of NiFi.
... View more
04-17-2017
07:53 PM
@Raj B I would agree. Are you running the curl commands on the same system with the NiFi instance you are running the curl command against? Try running the curl commands from a remote system that can reach the NiFi instance. Also, make sure you are not logged into the NiFi instance, via the UI, while you are running the curl commands, I have found that can cause some issues.
... View more
04-17-2017
06:18 PM
@Raj B Try something like this: curl 'https://<nifi-server>:8077/nifi-api/system-diagnostics' -H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' -H 'Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJjbj1SUkJvbGxhLG91PURhdGEgTWFuYWdlbWVudCxvdT1QT0Usb3U9UGVvcGxlLGRjPW1kYW5kZXJzb24sZGM9ZWR1IiwiaXNzIjoiTGRhcFByb3ZpZGVyIiwiYXVkIjoiTGRhcFByb3ZpZGVyIiwicHJlZmVycmVkX3VzZXJuYW1lIjoiUlJCb2xsYSIsImtpZCI6MzMsImV4cCI6MTQ5MjA5OTcyNiwiaWF0IjoxNDkyMDkyNTI2fQ.xIViD0Ea_fok6qV5ghnf65FPbO9Reh_MQxVG2Q1krl4%' --compressed --insecure --tlsv1.2 In addition, make sure the user you are accessing the UI with has the correct policies to access to the system-diagnostics.
... View more
04-17-2017
05:33 PM
@Gu Gur No, you only have to configure the two new nodes to be part of the cluster that is already running. Make sure to configure to use the same root node in zookeeper, set this property nifi.zookeeper.root.node, to the same values that the other three nodes are using, and of course configure the cluster node properties.
... View more
04-17-2017
02:17 PM
1 Kudo
@Avish Saha If you right click on the incoming connection a pop-up menu will appear: Select List queue, then you can look at the data the ReplaceText is trying to process. It looks like the end of the file being split may have incomplete lines?
... View more
04-17-2017
01:37 PM
2 Kudos
@Gu Gur If you configure the two nodes the same way as the current three nodes in the cluster, they should "ask to join" automatically. Which version of NiFi are you using?
... View more
04-17-2017
01:31 PM
2 Kudos
@Prakhar Agrawal With the NiFi 1.x baseline, zookeeper is a fundamental part of the NiFi cluster. It is used to automatically determine the cluster coordinator as well as communication within the cluster. With the NiFi 0.x baseline, the cluster has an cluster manager which serves a similar role and did not use zookeeper at all. So, if you do not want to use zookeeper, you will have to use a 0.x baseline version of NiFi.
... View more
04-17-2017
01:07 PM
2 Kudos
@Eric Lloyd You don't have to uninstall NiFi to start clean. Just clean out all the directories under the content, flowfile, provenance repositories and you should be good to go. When you ran out of disk space it corrupted the flowfile repository, which is how NiFi knows the status of the flow files in the graph. If possible, I would recommend at a minimum of moving the flowfile repository to it's own disk partition.
... View more
04-17-2017
12:50 PM
1 Kudo
@Raj B
I have found, depending on some of the default system settings, that I need an additional flag on the subsequent curl commands after getting the token. Try adding --tlsv1.2 after the compressed and insecure flags. Also, you will still need the Content-type information on subsequent curl commands.
... View more