Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Nifi:Schedule service Invokation

avatar
Contributor

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?

1 ACCEPTED SOLUTION

avatar
Master Guru

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.

40397-invoke-http.png

View solution in original post

1 REPLY 1

avatar
Master Guru

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.

40397-invoke-http.png