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

What is happening when Matlab is starting a "parallel pool"? -

php - Cannot override Laravel Spark authentication with own implementation -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -