We have the below setup to achieve maximum throughput in case of Agents
No of Nodes having a particular Node Classification that is defined on Standard agent : 34
No of Agents of same type : 10
By the no of agents we mean that since we want multiple copies of the same agent like ABC0 , ABC1 and so on till ABC9. Therefore 10 copies of the agent from 0 to 9
Current throughput that we can achieve is 10*34 = 340 threads at a time
Now we are moving to QP , how can we achieve the same kind of throughput ?
You need to create multiple Queue processors to process those many items where you need to check the queue items(based on count of SCHEDULED AND READY TO PROCESS/Delayed ) before queuing item to particular queue processor. So you can achieve load balance and high throughput of items processing.
Anyhow Queue processors are recommended for high throughput over agents
Please make sure your system resources before creating multiple que processors.