515 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-2
votes
1
answer
79
views
What is 'tex2svg is not a function'?
I'm a beginner on ts and js. I want to make some plugin for obsidian quartz. It is a pages maker that make md into html and runs a server. In my case, I want tikz codes into svg graphic. So I tried to ...
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 ...
2
votes
1
answer
348
views
How to execute Quartz jobs in virtual threads
How can I leverage virtual threads to execute I/O-bound Quartz jobs within a Quarkus microservice, handling programmatic job triggering without cron-based scheduling?
We are considering Quartz for our ...
1
vote
0
answers
90
views
Spring boot webflux quartz scheduled jobs
this is more of a theoreticall question as Im starting to learn reactive programming(kotlin, spring webflux), Im now wondering what are some good practices about writing scheduled jobs(in blocking aps ...
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
0
answers
92
views
Unable to Capture Exam Software Window in VMware Horizon Client Using Python or objective "Quartz" on macOS
I'm developing a macOS application to capture a specific window (e.g., an exam application like Pearson VUE or ProctorU) running inside VMware Horizon Client, but my script fails to capture the window....
0
votes
0
answers
43
views
Tomee 9 TimerService database storage
My Jakarta web application uses TimerService to schedule tasks in future.
Everything is working fine (timer are created and timeout methods executed in time) except that timer that should be ...
0
votes
0
answers
63
views
How to Chain Quartz.NET Jobs with Individual Triggers and Ensure Sequential Execution?
I am using Quartz.NET to schedule a series of jobs that need to be executed in sequence. I want each job to have its own trigger so that I can see the execution status of them in the UI (localhost:****...
0
votes
0
answers
15
views
Quartz Job can run on 2 threads Even though I set threadCount = 1
I am using Quartz 2.x in my Java project
The configs in below
private Properties quartzProperties() {
-----------------
properties.put("org.quartz.threadPool.threadCount", ...
1
vote
0
answers
54
views
Quartz.NET The trigger is not triggered
I have developed a Windows service using Quartz.Net .
I deployed it on one machine, everything works fine. The trigger is triggered at the right time. But by deploying the same deployment on the ...
0
votes
0
answers
34
views
Getting org.quartz.JobPersistenceException error while creating Quartz Job, Trigger on SpringBoot running on Kubernetes
Getting org.quartz.JobPersistenceException error while creating Quartz Job, Trigger on SpringBoot running on Kubernetes and JobDatamap is maintained on PostgresDB / Aurora MySQL running on AWS.
It ...
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
0
answers
45
views
Quartz dynamic trigger not fire when using @SpringJUnitConfig, but it works fine with @SpringBootTest. Why is that?
Freamwork:
Spring-Boot 3.3.5
Spring Boot Stater Quartz with quartz 2.3.2
Testcontainers 1.20.1
Jooq 3.19.13
@AutoConfigureTestDatabase(replace = AutoConfigureTestDatabase.Replace.NONE)
@...
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 ...
1
vote
1
answer
285
views
How to get the last scheduled fire time for a Quartz job's daily cycle?
I'm using Quartz (v2.3.2) for scheduling a process in a Spring Boot application, and I need help identifying the exact end time for the current daily cycle. Here’s the setup:
The job is scheduled to ...