Guest User

Untitled

a guest
Mar 13th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. org.quartz.scheduler.instanceName: scheduler
  2. org.quartz.scheduler.instanceId: AUTO
  3. org.quartz.scheduler.skipUpdateCheck: true
  4. org.quartz.threadPool.class: org.quartz.simpl.SimpleThreadPool
  5. org.quartz.threadPool.threadCount: 10
  6. org.quartz.threadPool.threadPriority: 5
  7. org.quartz.jobStore.misfireThreshold: 60000
  8. org.quartz.jobStore.class: org.quartz.impl.jdbcjobstore.JobStoreTX
  9. org.quartz.jobStore.driverDelegateClass: org.quartz.impl.jdbcjobstore.PostgreSQLDelegate
  10. org.quartz.jobStore.useProperties: false
  11. org.quartz.jobStore.dataSource: myDS
  12. org.quartz.jobStore.tablePrefix: QRTZ_
  13. org.quartz.jobStore.isClustered: true
  14. org.quartz.dataSource.myDS.driver: org.postgresql.Driver
  15. org.quartz.dataSource.myDS.URL: ${APP_JDBC_URL:-jdbc:postgresql://localhost:5432/db}
  16. org.quartz.dataSource.myDS.user: ${APP_JDBC_USER:-user}
  17. org.quartz.dataSource.myDS.password: ${APP_JDBC_PASSWORD:-pass}
  18. org.quartz.dataSource.myDS.maxConnections: 5
  19. org.quartz.dataSource.myDS.validationQuery: select 1
  20.  
  21. ERROR [2018-03-13 21:11:13,958] org.quartz.impl.jdbcjobstore.JobStoreTX: ClusterManager: Error managing cluster: Failed to obtain DB connection from data source 'myDS': java.sql.SQLException: Connections could not be acquired from the underlying database!
  22. ! com.mchange.v2.resourcepool.CannotAcquireResourceException: A ResourcePool could not acquire a resource from its primary factory or source.
  23. ! at com.mchange.v2.resourcepool.BasicResourcePool.awaitAvailable(BasicResourcePool.java:1319)
  24. ! at com.mchange.v2.resourcepool.BasicResourcePool.prelimCheckoutResource(BasicResourcePool.java:557)
  25. ! at com.mchange.v2.resourcepool.BasicResourcePool.checkoutResource(BasicResourcePool.java:477)
  26. ! at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool.checkoutPooledConnection(C3P0PooledConnectionPool.java:525)
  27. ! ... 26 common frames omitted
Add Comment
Please, Sign In to add comment