On a simplified level, we have an application that listens for JMS messages, then inserts and/or updates a database for each message.
Should the number of connections in the JDBC pool be the same as the number of connections in the JMS connection pool, or can the number of JMS connections be higher to handle a JMS queue that has high traffic?
A performance test would be best to fine-tune the numbers, but I'm curious if there's a general rule of thumb about this.
Thank you.