Questions tagged [quartz-persistence]

Quartz feature for storing job information (last run time, next run time, duration, etc) in storage like sql database, RAM or terracota

Quartz feature for storing job information (last run time, next run time, duration, etc) in storage like sql database, RAM or terracota

2 questions
3
votes
1 answer

Is SchedulerFactory able to create tables for quartz at start up?

I am trying to run integration test with spring boot and get the following error: Caused by: org.springframework.context.ApplicationContextException: Failed to start bean 'SchedulerFactory'; nested exception is…
Cherry
  • 31,309
  • 66
  • 224
  • 364
1
vote
0 answers

Quartz performance is so slow when I used JDBC persistence

I'm using spring-boot-starter-quartz dependency and using JDBC persistence but the performance using Scheduler.scheduleJob() method is so slow, I did a couple of tests with Jmeter and I got 70 transactions per second but if I don’t use JDBC…