On 8/21/06, osian <[EMAIL PROTECTED]> wrote:
Is the JDBC pool something that is set on the BasicDataSource?
Yes http://jakarta.apache.org/commons/dbcp/apidocs/org/apache/commons/dbcp/BasicDataSource.html#setMaxActive(int)
Also, I'm unsure about what you mean by the nr or connections required depends on the nr of connections I have.
The number of JDBC connections required when not using the journal is dependent on the number of connections to the broker - unless you cap the limit on the number of JDBC connections used which effectively causes contention in the broker waiting for available JDBC connections. i.e. it reduces the concurrency of the broker and its throughput. If you use the high performance journal then you'll use less JDBC connections, since JDBC is mostly only used by a background checkpoint thread. -- James ------- http://radio.weblogs.com/0112098/
