Advertisement
Guest User

Untitled

a guest
Aug 18th, 2016
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. quartz.pluginEnabled: true
  2. quartz.jdbcStore: true
  3. quartz.isClustered: true
  4. quartz.autoStartup: false
  5. quartz.waitForJobsToCompleteOnShutdown: true
  6. quartz.scheduler.instanceName: "JobInstanceName"
  7. quartz.purgeQuartzTablesOnStartup: false
  8. quartz.threadPool.class: org.quartz.simpl.SimpleThreadPool
  9. quartz.threadPool.threadCount: 10
  10. quartz.threadPool.threadPriority: 5
  11. quartz.jobStore.class: org.quartz.impl.jdbcjobstore.JobStoreTX
  12. quartz.jobStore.misfireThreshold: 60000
  13. quartz.jobStore.driverDelegateClass: org.quartz.impl.jdbcjobstore.PostgreSQLDelegate
  14. quartz.jobStore.dataSource: 'quartzDB'
  15. quartz.jobStore.isClustered: true
  16. quartz.jobStore.tablePrefix: qrtz_
  17. quartz.jobStore.useProperties: false
  18. quartz.dataSource: 'quartzDB'
  19. quartz.dataSource.quartzDB.driverClassName: "org.postgresql.Driver"
  20. quartz.dataSource.quartzDB.driver: org.postgresql.Driver
  21. quartz.dataSource.quartzDB.URL: jdbc:postgresql://localhost:5432/quartz_database
  22. quartz.dataSource.quartzDB.user: username
  23. quartz.dataSource.quartzDB.password: password
  24.  
  25. Failure obtaining db row lock: Table "QRTZ_LOCKS" not found; SQL statement:
  26. SELECT * FROM qrtz_LOCKS WHERE SCHED_NAME = 'JobInstanceName' AND LOCK_NAME = ? FOR UPDATE [42102-191]
  27.  
  28. Caused by: org.h2.jdbc.JdbcSQLException: Table "QRTZ_LOCKS" not found; SQL statement:
  29. SELECT * FROM qrtz_LOCKS WHERE SCHED_NAME = 'JobInstanceName' AND LOCK_NAME = ? FOR UPDATE [42102-191]
  30. at org.h2.message.DbException.getJdbcSQLException(DbException.java:345)
  31. at org.h2.message.DbException.get(DbException.java:179)
  32. at org.h2.message.DbException.get(DbException.java:155)
  33. at org.h2.command.Parser.readTableOrView(Parser.java:5349)
  34. at org.h2.command.Parser.readTableFilter(Parser.java:1245)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement