Tagged Questions
Quartz Scheduler is a Java-based open-source job scheduling service.
31
votes
1answer
9k views
Quartz.net with ASP.NET
I dont know how to use Quartz.dll in asp.net... Where to write the code for scheduling jobs to trigger mail every morning... Please if some body knows about it plz help me...
EDIT:
I found this HOW ...
12
votes
4answers
2k views
Alternatives to Quartz for job scheduling [closed]
Has anyone found any alternative open-source solutions to Quartz which they are happy with?
I know Cronacle is a well respected (and pricey) closed source solution for job scheduling but I'd like to ...
11
votes
2answers
879 views
TaskScheduler, @Scheduled and quartz
Is there a way to have @Scheduled with quartz as the underlying scheduler?
Two things that I can think of, but both require some work:
create a custom BeanPostProcessor that will parse the ...
9
votes
6answers
5k views
Ensure that Spring Quartz job execution doesn't overlap
I have a Java program that executes from Spring Qquartz every 20 seconds. Sometimes it takes just few seconds to execute, but as data gets bigger I'm sure it run for 20 seconds or more.
How can I ...
8
votes
3answers
977 views
ASP.NET MVC: How to create a usable UrlHelper instance?
I am using quartz.net to schedule regular events within asp.net mvc application.
The scheduled job should call a service layer script that requires a UrlHelper instance (for creating Urls based on ...
8
votes
2answers
913 views
An enterprise scheduler for python (like quartz)
I am looking for an enterprise tasks scheduler for python, like quartz is for Java.
Requirements:
Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...
8
votes
9answers
6k views
Frontend for Quartz?
Im looking at developing a web front end to control and monitor quartz jobs. Does anyone have suggestions for starting points, APIs, or other places to look?
8
votes
2answers
2k views
Turn off Debug Logging in Quartz .Net
I am using Quartz .Net for scheduling some custom tasks in our application. Everything works fine except that it logs about twenty debug entries in one second.
I dont know how to turn off the debug ...
7
votes
1answer
1k views
Quartz & Spring - Clustered but NOT Persistent?
In my Spring application I'm using the SchedulerFactoryBean to integrate with Quartz. We're going to have clustered Tomcat instances, and thus I want to have a clustered Quartz environment, so that ...
7
votes
5answers
4k views
quartz: preventing concurrent instances of a job in jobs.xml
This should be really easy. I'm using Quartz running under Apache Tomcat 6.0.18, and I have a jobs.xml file which sets up my scheduled job that runs every minute.
What I would like to do, is if the ...
7
votes
2answers
743 views
Zombie threads eating my brainz (J2EE, Tomcat, Hibernate, Quartz)
It is Hallowe'en after all.
Here's the problem: I'm maintaining some old-ish J2EE code, using Quartz, in which I'm running out of threads. jconsole tells me that there are just short of 60K threads ...
7
votes
1answer
3k views
Configuring ADOJobStore with Quartz.net
How do you set up a jobstore with Quartz.net. The tutorial they have on the site is not that of help for me.
In this page though there are steps
...
6
votes
2answers
1k views
QuartzScheduler injection in JBoss AS 6
How can i inject QuartzScheduler service into my Stateless bean on JBoss AS 6 ?
Quartz service does start during JBoss AS 6 startup
00:58:38,025 INFO [QuartzScheduler] Scheduler meta-data: Quartz ...
6
votes
1answer
624 views
Spring Scheduling: @Scheduled vs Quartz
I'm reading the Spring 3.0 docs regarding scheduling. I'm leaning towards Spring's JobDetailBean for Quartz. However, the @Scheduled annotation has captured my eye. It appears this is another way of ...
6
votes
2answers
1k views
How to cancel a scheduled job in Quartz
I'm using Spring to inject a Quartz scheduler (abstracted with Spring's TaskScheduler interface) into my app that loads jobs configured from a database at startup.
It adds each job in the scheduler ...
6
votes
4answers
1k views
What is the most simple way to execute java class every 30 seconds
I've been reading about java/spring/hibernate and worked trough a "dummy" examples so I told my friend to recommend something a bit harder for me, and now I'm stuck.. here is the simplest class I ...
6
votes
8answers
1k views
How can I do Time based / scheduled events in .NET?
I need to offer scheduling of actions/events, in our web site. A crap analogy could be a calendar system, where a person adds a calendar item and when the date/time has been 'hit', then some logic (eg ...
5
votes
1answer
92 views
How to check if a job is running in Quartz Framework
I want to use Quartz Framework in my application. There are two jobs in the scheduler. Now I want to check if job1 is running. How can I check? I have tried to Google it but failed to find the ...
5
votes
1answer
971 views
Quartz HelloJob
I am new to Quartz and I'm running into a compiling error. I am simply trying to get the HelloJob to run based on Quartz's Lesson 1 for Hello World. I am having trouble declaring a JobDetail with the ...
5
votes
2answers
210 views
beginner's question on java (Quartz) scheduling
I am looking into a web app that already uses Quartz.
In the web.xml there is:
<servlet>
<servlet-name>QuartzInitializer</servlet-name>
<display-name>Quartz-Init ...
5
votes
2answers
2k views
Quartz Scheduler not stopping after shutdown
I'm using the currently latest quartz 1.8.3 on jboss 4.0.5.
The quartz jobs are persistent and saved into a local database.
When I call the shutdown or standby method on the executing quartz scheduler ...
5
votes
2answers
500 views
Can I make waiting Quartz Jobs fire in the order they were triggered?
I have an application using the Quartz Scheduler to schedule jobs. The application is currently running Quartz version 1.6.2. My JobStore is org.quartz.impl.jdbcjobstore.JobStoreTX with an Oracle ...
5
votes
1answer
330 views
Running two jobs with Quartz in Java
I have Quartz coded as follows and the first job runs perfectly:
JobDetail jd = null;
CronTrigger ct = null;
jd = new JobDetail("Job1", "Group1", Job1.class);
ct = new ...
5
votes
3answers
4k views
Quartz Java resuming a job excecutes it many times
For my application i create jobs and schedule them with CronTriggers. Each job has only one trigger and both the job name and the trigger names are the same. No jobs share a trigger.
Now when i ...
5
votes
1answer
1k views
How to scale the Quartz scheduler?
I plan to use the Quartz scheduler as I read many good opinions about it.
My problem is as follows: I will have thousands of triggers living in the system at any given time. Most of the triggers will ...
4
votes
1answer
136 views
Running A Missed Quartz Job
I'm using Quartz with Spring to run a specific task at midnight on the first day of the month. I have tested the job by setting my server date & time to be 11:59 on the last day of the month, ...
4
votes
2answers
243 views
Is it possible to schedule Quartz threads to run each second?
Is it possible to have Java Quartz threads run each second, or even by milliseconds? It seems like they can only run by the minute and nothing less.
4
votes
1answer
504 views
Are there any other Java schedulers besides Quartz(FOSS) and Flux(Commercial)
I am interested in finding out about other job scheduling packages besides Quartz and Flux. Given the plethora of web frameworks i find it peculiar that there is really only one scheduler. Are there ...
4
votes
1answer
418 views
Are Quartz scheduler instances thread safe?
Can more than one thread safely call methods on an instance of Scheduler returned by the StdSchedulerFactory concurrently?
4
votes
2answers
217 views
4
votes
1answer
261 views
Quartz scheduler theadpool
The SimpleThreadPool class shipped along with Quartz Scheduler does not have a FIFO behavior. I want to make sure if I keep adding jobs to the scheduler, they are addressed in a First - in - First - ...
4
votes
3answers
5k views
Spring scheduler shutdown error
During development a SPRING based scheduler in a tomcat container, I always get this logoutput at undeploy webapp or shutdown server:
Apr 28, 2010 4:21:33 PM org.apache.catalina.core.StandardService ...
4
votes
1answer
615 views
quartz: documentation for xml files?
Where is the documentation for quartz xml files (specifically jobs.xml)? I found the javadoc online, but I can't seem to find the documentation for how to write an xml file, just some brief examples ...
4
votes
4answers
1k views
Asynchronous email processing in Java web application
I would like to implement asynchronous email sending in my web application when users register for a new account. This is so that if there is a problem or delay in sending the email message (e.g. the ...
4
votes
2answers
1k views
Java – Create a workflow in Quartz
I am considering using the Quartz framework to schedule the run of several hundred jobs.
According to their API, jobs can be scheduled to run at certain moments in time but not to run one after the ...
4
votes
4answers
3k views
Cron to human readable string
I am using Quartz with Java to schedule jobs. One thing is that i store cron expressions on a database and i would like to present them to a user but in a more readable form. So i was wondering if ...
4
votes
3answers
3k views
Testing Quartz CronTrigger trigger
Assuming that I have a CronTriggerBean similar to
<bean id="midMonthCronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
<property name="jobDetail" ...
4
votes
2answers
2k views
Time triggered job Cron or Quartz?
I already asked a separate question on how to create time triggered event in Java: http://stackoverflow.com/questions/1029164/large-scale-time-triggered-event-handling. I was introduced of Quartz.
At ...
4
votes
4answers
5k views
Quartz Scheduler suddenly stop running and no exception error
I have some quartz job which was running everyday at 7pm. Suddenly it failed to run. I check my server.log and there are no exception thrown. Anyone have any idea what could be the issue?
Thanks in ...
4
votes
2answers
2k views
Asynchronous processing in Java from a servlet
I currently have a tomcat container -- servlet running on it listening for requests. I need the result of an HTTP request to be a submission to a job queue which will then be processed asynchronously. ...
4
votes
4answers
3k views
Splitting log4j Output with Quartz Worker Threads
I'm working on an application that consists of an overall Quartz-based scheduler and "CycledJob" run using CronTriggers. The purpose of the application is to process inputs from different email ...
3
votes
1answer
79 views
OSGi - logging configuration for external jar files
I've built an OSGi application that relies on external libraries such as Quartz.
I have created separate bundle for all of these libraries but the problem is they have their own logging configuration.
...
3
votes
1answer
508 views
How to use Quartz with QuartzInitializerListener?
I'm having trouble to understand how to use Quartz with QuartzInitializerListener.
First I declare that listener in deployment descriptor. But then, how to I add my jobs? Taking a look at ...
3
votes
1answer
591 views
Execution of jobs in a quartz cluster
I have some questions about Quartz clustering, specifically about how triggers fire / jobs execute within the cluster.
Does quartz give any preference to nodes when executing jobs? Such as always ...
3
votes
3answers
563 views
making Quartz scheduler persistent without JDBC
We're building an app around MongoDB, and have a need to run cron-like jobs periodically. I've used Quartz before for this kind of thing when projects were based around an RDBMS with JDBC.
Since ...
3
votes
2answers
726 views
quartz-scheduler question
please tell any tutorial for making program of quartz-scheduler using spring mvc (web based) in java.
3
votes
1answer
475 views
Spring @Scheduled inject delay time
I have a few methods annotated with
@Scheduled(fixedDelay = 6000)
private void myScheduledMethod(){
//do something
}
I also have a set of properties files where I configure environment specific ...
3
votes
1answer
450 views
Immediate one time task with Quartz
I am using a Quartz to build a clustered ThreadPool and I have number of tasks that run at various times. What is the best way to run 1 task immanently and only once on the clustered ThreadPool. I ...
3
votes
1answer
237 views
Quartz.NET - getting jobs exception using IJobListener
I'm using Quartz.NET for an application I am creating, and I currently have an IJobListener listening for any errors with jobs, then sending emails off to the administrators. It'd be great if I could ...
3
votes
1answer
229 views
log4j Appender Being Closed by Caught Exception
Historical Context: This problem ended up being not at all what I thought it was. The cause and solution are below, but the original posting is left for reference.
I'm developing a simple framework ...