Member since
11-29-2018
8
Posts
0
Kudos Received
0
Solutions
01-24-2021
07:54 PM
I have experienced this situation as well. I am on NiFi 1.10.0. In my case when this happens, the only recourse is to terminate the processor, as stopped it does not work. Did you find a solution to this issue?
... View more
12-08-2020
01:39 PM
I ran into the same issue but with NiFi 1.10.0 I can build the project locally but not on Jenkins. Did you resolve the issue?
... View more
08-25-2020
04:41 AM
I have a multi-node cluster and I see this message as well. When this happens the node experiencing this becomes disconnected from the cluster. At that point, you can not make any changes to the flows. Upon some searches I came across these properties. nifi.cluster.node.connection.timeout=10 sec
nifi.cluster.node.read.timeout=10 sec I believe 10 sec is pretty generous. Is there something else that needs to be tweaked.
... View more
04-15-2020
02:14 PM
If you don't care about Avro format and want to go directly to JSON you can use the ExecuteSQLRecord processor where you can specify the output format.
... View more
12-10-2019
10:21 AM
I followed the suggestions #1 in this answer and it worked. If that doesn't work, to be sure that the files are identical on the servers, do md5sum of the files.
... View more
12-28-2018
01:36 PM
What helped me was, first copying the file to the $NIFI_HOME/lib folder then giving the full path of the jar file in the ExecuteStreamCommand processor. So the config looked like "-jar; /opt/nifi-1.7.1/lib/mycode.jar". Couple things to ensure is that the jar is owned by the same user that NiFi is running as and the jar could be located anywhere as long as you give full path you should be fine.
... View more