Author |
Message
|
sw_conslnt |
Posted: Fri Jun 18, 2010 11:40 pm Post subject: WMB V6 Messag processing scheduler |
|
|
Newbie
Joined: 18 Jun 2010 Posts: 3
|
Hi,
I have a requirement that a message flow will be activated after 10 mins interval and will process all data stored in some particular queue (in batch process) and then wait for 10 mins again.
I have used
TimerNotification MQGet,
And set 10 min at notification node, and see that only 1 by 1 message is being processed after 10 mins interval.
I tried with the scenario also:
Set start time in timer tag in the message what indicates the message would be process after 10 mins and put it to the queue.
The message flow likes:
MQInput TimerControl
and TimerNotification Compute node (for parsing the message).
Bur here the message flow is polling the queue all time what dislike my requirement.
Can anyone will help on it.
Thanks,
Suman. |
|
Back to top |
|
 |
fatherjack |
Posted: Sat Jun 19, 2010 1:37 am Post subject: Re: WMB V6 Messag processing scheduler |
|
|
 Knight
Joined: 14 Apr 2010 Posts: 522 Location: Craggy Island
|
sw_conslnt wrote: |
I have used
TimerNotification MQGet,
And set 10 min at notification node, and see that only 1 by 1 message is being processed after 10 mins interval. |
If you're only doing one MQGET you'll only get one message.
sw_conslnt wrote: |
The message flow likes:
MQInput TimerControl
and TimerNotification Compute node (for parsing the message).
Bur here the message flow is polling the queue all time |
That's how the MQInput node works. _________________ Never let the facts get in the way of a good theory. |
|
Back to top |
|
 |
eai_guy |
Posted: Sat Jun 19, 2010 5:49 pm Post subject: |
|
|
Voyager
Joined: 18 Oct 2007 Posts: 90
|
If you need to get messages in a particular time then loop the MQGET node in your flow. Looks like this topic is discussed on this forum so Use search  |
|
Back to top |
|
 |
mqjeff |
Posted: Sun Jun 20, 2010 1:46 pm Post subject: |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
eai_guy wrote: |
If you need to get messages in a particular time then loop the MQGET node in your flow. Looks like this topic is discussed on this forum so Use search  |
LOOP CAREFULLY.
DO NOT USE NODE WIRING TO CREATE A LOOP. |
|
Back to top |
|
 |
Vitor |
Posted: Sun Jun 20, 2010 2:24 pm Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
mqjeff wrote: |
eai_guy wrote: |
If you need to get messages in a particular time then loop the MQGET node in your flow. Looks like this topic is discussed on this forum so Use search  |
LOOP CAREFULLY.
DO NOT USE NODE WIRING TO CREATE A LOOP. |
Read the previous discussions on this subject before attempting this. _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
|