Created 09-18-2017 06:43 PM
I have one GenerateFlowfile which should generate flowfiles with parameters like : startDate,endDate and param, then i want to invoke three online webservice, but i want to invoke services one after another i mean i don't wnat to start second service if nifi hasn't ended data processing from previous one.How can i manage this in nifi?
Created on 09-18-2017 07:57 PM - edited 08-18-2019 12:42 AM
Hi @sally sally,
You can do that by using invokeHTTP processor, once you make first service call then keep Response relationship to trigger next service.
This way we can only triggers next service once we get response from previous service.
Example:-
In my below flow service 1 is triggered by GenerateFlowFile processor then i connected response relationship to trigger service2 InvokeHTTP processor. This service2 processor only triggers when it got response from service1 processor and keep in mind the response from service1 will be overwritten by response of service2.
Created on 09-18-2017 07:57 PM - edited 08-18-2019 12:42 AM
Hi @sally sally,
You can do that by using invokeHTTP processor, once you make first service call then keep Response relationship to trigger next service.
This way we can only triggers next service once we get response from previous service.
Example:-
In my below flow service 1 is triggered by GenerateFlowFile processor then i connected response relationship to trigger service2 InvokeHTTP processor. This service2 processor only triggers when it got response from service1 processor and keep in mind the response from service1 will be overwritten by response of service2.