I have to fetch online service with user Id-s(for example from 1 to 100)
I have put 3 parameters start =1, end=100, parameter= 1, in GenerateFlowFile after that i wrote groovy code in exeucutescript processor in a way that it generates 100 flowfile with certain user id-s i want to schedule my processor in a way that it can process only one flowfile in a day and retrieve only one user id in a day,i have
Workflow look like this:
GenerateFlowFile->ExecuteScript->InvokeHttp->putFile
I tried to change Back Pressure Object Threshold from 10000 to 1 but it doesn't work properly**. What should i change to make this task?

