single threaded queue on two server

J_J

Active Member
If we have a single threaded queue defined on two app server , and if we sumitt two jobs in each server for the same queue will it process one by one ( like a single threaded spanped accors the network) or will two single threaed job run at he same time . Has any one envountered this issue.

any thought will be helpful
 
What OS and version are you operating on?

Darrell Allison
Systems Programmer
AS/400 V4R5 9406-730 8-Way / OneWorld B7332 SP11.3
 
The queue is single-threaded for a particular server. So, two servers = 2 single-threaded queues. They will not talk to each other or cooperate with each other. In fact, if you wanted them to prevent the other from running, you will be sorely dissappointed, as they will each process their job load seperately - the jobs in the queue are processed on a combination of server name and port number. So, Qbatch on svr1 port 6005 and QBATCH on svr2 port 6005 are not in anyways connected.
 
Back
Top