Created 03-14-2018 11:31 AM
I am going to be using RAW for my NiFi RPG. I have set up 'nifi.remote.input.socket.port' to be port 8022. Now when I am adding the RPG to the canvas, in the URL field do I still put in my NiFI UI port (https://example.com:9091/nifi/) or do I put in the new RAW port (https://example.com:8022)? I tried testing it and it's only working with https://example.com:9091/nifi/ and I wasn't sure if that is how it is meant to work or if I have some configuration wrong.
Thanks,
Chad
Created 03-14-2018 12:19 PM
Whether you use HTTP or RAW, the URL used when creating the RPG will always point at the same URL for the NIFi target instance or instances.
http(s)://<hostname>:<nifi.web.http(s).port>/nifi (for example: https://hostname:9091/nifi)
When it comes to the actual transfer of FlowFiles over the S2S protocol, Those FlowFiles will either be transferred over the same nifi.web.http(s).port or via a dedicated RAW nifi.remote.input.socket.port.
Thank you,
Matt
Created 03-14-2018 12:19 PM
Whether you use HTTP or RAW, the URL used when creating the RPG will always point at the same URL for the NIFi target instance or instances.
http(s)://<hostname>:<nifi.web.http(s).port>/nifi (for example: https://hostname:9091/nifi)
When it comes to the actual transfer of FlowFiles over the S2S protocol, Those FlowFiles will either be transferred over the same nifi.web.http(s).port or via a dedicated RAW nifi.remote.input.socket.port.
Thank you,
Matt
Created 03-14-2018 01:07 PM
Got it, thanks!