I have two process and two run time resource, each executes a process.
Process 1 scheduled to run every hour and allocated to one runtime resource- one which loads the item into the queue
Process 2 scheduled to run every hour and allocated to another runtime resource - it just get the next item and work
Let's say it starts at 8 and supposed to be finished before 8.30am. And at 8.30am Process 2 is scheduled to get and process the item from queue.So what if the load process takes longer than usual?
What if process 1 didn't get completed and Process 2 already started executing, but there are no items in the queue, since there is some issue in the Process 1 and it couldn't add the items in the queue? How to handle such scenarios?
------------------------------
Keerthana J
------------------------------