spring mvc - Quartz thread count and data source pool max size -


i have spring mvc 4.1.3 & hibernate 4 based web application deployed in jboss eap 6.3. use quartz schduler version 2.1.7

my quartz thread count set 50 , using jdbc based job store.

<prop key="org.quartz.threadpool.threadcount">50</prop> <prop key="org.quartz.jobstore.class">org.quartz.impl.jdbcjobstore.jobstoretx</prop> 

and data source connection pool max size set 30 in jboss standalone.xml

<pool>     <min-pool-size>5</min-pool-size>     <max-pool-size>30</max-pool-size> </pool> 

i want undetstand if there issue in db connectivity becasue have thread count higher connection pool max size?

thanks in adavce.


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -