Can we Implement the solution like a queue in Talend( first in, first out) !
Hi Team,
can we implement the solution like a queue -
* first in, first out
* enqueue function: put the input to the end of queue
* dequeue function: pop the top of the queue
I have a channel_id coming from the oracle table, i have to put those channel_id's into a queue and then fetch those from that queue and used that id's as the dynamic API link to call the RestApi data. Some sort of queue, that is store id's one by one into the queue and retrieve those id's simultaneously, and use then into the link( enqueue and dequeue sort of think)
I am earlier using context variable to store channel_id's, but the problem with context is, it hole the latest channel_id and iterate one by one and used that in the API link, which reduces the performance significantly.
Did anyone implement this sort of approach or help me in this. Any help would be appreciated.