Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Nifi:Schedule service Invokation

avatar

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