3,787 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
48
views
Quartz throwing ClassNotFoundException during canary deploys
I am using Quartz jdbcjobstore to manage a set of distributed jobs within a java application. I am having a problem when I deploy code that contains a new org.quartz.Job implementation.
When I am ...
0
votes
1
answer
37
views
Axon: How do you configure Misfire Instructions for a Quartz Deadline Manager?
Using Axon, I have an aggregate that schedules a deadline. The deadline triggers as expected as long as the server is running at the time the deadline was specified for. When I shut the server down ...
0
votes
1
answer
56
views
InvalidDataAccessResourceUsageException: could not execute statement [ERROR: column "" is of type jsonb but expression is of type character varying
I am using SpringBoot 3.5, PostgreSQL and Hibernate/JPA as ORM.
While using JSONB column from DB I am having this error.
org.springframework.dao.InvalidDataAccessResourceUsageException: could not ...
1
vote
0
answers
103
views
Run long running job on off hours
I'm using Quartz.NET along with IHostedService to schedule tasks.
I have a task that will take several days to complete and I want to run it on off hours only.
I need it to:
Start at a given time ...
0
votes
1
answer
37
views
scheduler.deleteJob(jobKey) does not remove job in clustered setup
I'm using Quartz (Java) with a JDBC JobStore in a clustered setup — two application instances and one shared database. When I call scheduler.deleteJob(jobKey), the job is not removed from the database ...
0
votes
0
answers
137
views
Why is my Quartz Scheduler job not running?
I am new to Quartz and I am trying to get a simple job to run, using an XML to configure it. I am using Quartz 1.4.0. Here is the code:
jobscheduler_init.properties
#=================================...
0
votes
1
answer
66
views
Illegal attempt to associate a collection with two open sessions thrown in Quartz Job
I have a Grails 4.0.10 application which is a running registration application.
I am getting a Illegal attempt to associate a collection with two open sessions error in a Quartz Job in my application.
...
0
votes
0
answers
82
views
Quartz Clustered Mode with Spring Boot & Docker: Jobs Not Failing Over to Other Node
I have a Spring Boot application running two instances in Docker, using Quartz in clustered mode with a shared MySQL database. However, when I shut down one instance, the jobs and traffic do not ...
0
votes
1
answer
209
views
Springboot Quartz (Clustered mode)
I am trying to run a Quartz Scheduler application in clustered mode.
In a non-clustered setup, I am able to read/write the database without any issue. However, in a clustered setup, I encounter errors ...
0
votes
1
answer
293
views
Quartz scheduler performance tuning/overhead
I am new to Quartz Scheduler Framework. We are using quartz 2.3.2 for scheduling jobs. I have around million scheduled jobs, which has different frequencies. But mostly I get 6000-7000 triggers every ...
1
vote
0
answers
101
views
Quartz scheduler standby mode in the whole cluster
I'm using Quartz Scheduler in a cluster mode. For the debug purposes I want to put all the server instances to the standby mode.
Say we have three server instances:
node1
node2
node3
A separate ...
2
votes
1
answer
70
views
Availability of Quarkus Quartz extenion as a stable feature
We would like to use the Quartz extension in our app. as it could make scheduled tasks much easier to handle and more generally make things a lot simpler.
However, the fact that it is currently a '...
0
votes
0
answers
221
views
Quartz Scheduler Job Trigger in Waiting State forever
I am using Quartz Scheduler for the first time and I have a problem that I have not been able to solve for a very long time. When using RAMJobStore the job runs perfectly but when I change to Impl....
0
votes
0
answers
54
views
Issues with one time quartz .net job
I'm using .NET 8 and I'm trying to setup a Quartz Job.
What I want to achieve is that in production, this job must be scheduled (with a cron schedule), but in dev and in local I don't need it ...
0
votes
0
answers
275
views
Lock wait timeout exceeded with an embedded Quartz scheduler
Good day all.
We have a somewhat old Spring microservice application that uses Quartz scheduler. Quartz is not running standalone and imbedded in one of the services. Recently we did a load test of ...