Quartz Scheduler is a Java-based open-source job scheduling service.
0
votes
0answers
14 views
Open source Java Job Scheduler with: remoting, load balancing, failover, dependency DAG?
I'm looking for an open source Java Job Scheduler that allows sending different kind of jobs (not only flop intensive) and distributes them across many machines. It should also monitor the jobs and ...
0
votes
1answer
20 views
@Scheduled task does not start
I am trying to use the @Scheduled feature. I have followed this and this tutorials but I can not get my scheduled task to be executed.
I have created a worker:
@Component("syncWorker")
public class ...
0
votes
0answers
5 views
Quartz/Tomcat 7/ClassNotFoundException
Quartz version is 2.1.7
Only quartz-related jars are the one in the webapp. Tomcat does not have any quartz libs in common/lib.
I am getting a ClassNotFoundException for a quartz class (that is ...
0
votes
2answers
46 views
Job task don't execute
I'm using quartz on my Java Web application and I have a weird problem. I'm thinking the quartz its executing but don't "run" the Job task:
my configuration files:
quartz-job.xml:
`<?xml ...
1
vote
1answer
24 views
Quartz scheduler interrupting job?
I have a quartz job. i need to stop its processing through UI. we provide a button where in user can click STOP button then current running process should be stopped. but further scheduling should ...
0
votes
0answers
15 views
Grails, connecting to S3 using jets3t
I am trying to connect to Amazon S3 Buckets using "JetS3t", I am also using Quartz plugin,
I have a job in grails-app/jobs, in which I like to access S3, but I get an error in the socond line:
...
0
votes
1answer
10 views
When jobExecutionVetoed of JobListener will be execured in Quartz Scheduler?
When jobExecutionVetoed of JobListener will be execured in Quartz Scheduler?? What is the use of jobExecutionVetoed method??
0
votes
0answers
10 views
How to extend and use Quartz RemoteMBeanScheduler?
I can understand that quartz org.quartz.impl.RemoteMBeanScheduler is used to proxy a scheduler through JMX. How to extend it and use? Is there any shortfalls using this? Can this be used in a ...
1
vote
2answers
32 views
Scheduling with quartz every minute from 14:00 to 17:30
I am having problems scheduling my job with quartz... I cannot find an expression which lets me run my job from 14:00 to 17:30 every minute... I have tried this
0 0-30/1 14-17 ? * MON-FRI
but not ...
0
votes
1answer
10 views
How to make a quartz job create another job to execute after it?
I am tying to implement the following algorithm with Quartz and not really sure if it can be done. This is my first attempt at using quartz.
User notification Job - This job computes a monthly ...
0
votes
0answers
16 views
Reschedule a job that was unscheduled in Quartz
I'm new to Quartz. Is it possible to reschedule a job that was unscheduled in Quartz?
I've a query. Let's assume the following,
I've a job which I've scheduled.
Now, I've unscheduled the job.
...
0
votes
1answer
49 views
How to create quartz job that will runs every N seconds even if job takes more time
What I'm trying to achieve:
I have a secondly trigger that fires every 5 secods, and stateful job, that takes sometimes more than 5 seconds (7 for example) and what I have now
start: 00:00:00
end : ...
0
votes
2answers
34 views
Quartz schedular exception java.lang.OutOfMemoryError
I am using quartz schedular.
After some time of deployment it is showing folowing Exception
Exception in thread "http-bio-8084-exec-3" java.lang.OutOfMemoryError: PermGen space
Exception in thread ...
0
votes
2answers
40 views
Get the currently executing TRIGGER_NAME in Job execute method
i am new to Quartz , i have populated the database with my job details , and triggers .What i want to do is get the currently executing trigger's TRIGGER_NAME value in the Job's execution .How do i do ...
0
votes
0answers
17 views
Why Quartz scheduler's unscheduleJob is deleting both trigger and job detail?
Im trying to execute the following quartz scheduler code in the a cluster environment.
scheduler.unscheduleJob("genericJobTrigger", "DEFAULT");
where as
Scheduler scheduler = (Scheduler) ...
0
votes
1answer
20 views
How to make a trigger that fires on the last weekend day every month
Is there any way to make a trigger that fires on the last weekend day every month using quartz scheduler?
0
votes
1answer
49 views
cron expression independent of time presets
I am using cron expressions for my application. I want to build a cron expression to run at every 40 seconds starting from now.
For example; If my job starts at 3.05 then job should be fired at ...
0
votes
0answers
11 views
Web front end to control and monitor quartz jobs? [closed]
I'm planning to develop a web front end to control and monitor quartz jobs. Is there any such open source projects available? Is there any references?
0
votes
0answers
12 views
In Quartz clustering, is it possible to know from one node what tasks other nodes are currently running?
In Quartz clustering with JDBC-JobStore, if i have three nodes, is it possible to know from one node what tasks other nodes are currently running?
0
votes
1answer
73 views
Get executed jobs form the scheduler in Quartz
I want to retrieve scheduled but already executed jobs from the scheduler in Quartz. Is there any way to do so?
2
votes
3answers
46 views
Quartz Job not firing as expected
I have following cronTrigger Expression in my .NET Application to fire this job every 45 minutes...
0 0/45 * * * ?
However its firing every 15 and then 45 minutes...for example it fires as below
...
0
votes
1answer
17 views
Managing quartz jobs, deleting
Consider the following sequence of events. Using quartz 1.8.0
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
...
0
votes
0answers
19 views
Error creating Job (factory-bean returned null) in Grails quartz plugin
I am using Grails 2.2.2 (GGTS - 3.3.0M1) with Quartz plugin 1.0-RC7.
With the following job, I get an error saying that the job instantiation failed when testing with 'grails run-app'. I see the same ...
0
votes
0answers
16 views
Quartz Scheduler integration with Mysql and Jboss server
I have a scenario where a user will be creating a form with message to be send in future and i am planning to use quartz scheduler and configuring this in mysql database . I am considering this as on ...
0
votes
1answer
41 views
Got SQLException table doesn't exist using quartz jdbcstore
Iam implementing Quartz Scheduler using jdbcstore.I got exception like qrtz_TRIGGERS is not available.
2013-05-03 07:58:38,211 - - DEBUG, [main], com.mchange.v2.c3p0.impl.DefaultConnectionTester, ...
2
votes
1answer
66 views
Quartz.NET Rescheduling job with new trigger set
I have a Quartz job which is scheduled with a collection of triggers and it has 3 to 5 minutes of execution time. But at any moment in the future(it may be a week later or a couple of minutes later) I ...
0
votes
1answer
26 views
Quartz versioning issue with jboss
I m having quartz 1.7.3 in .grails/plugins folder in development environment
where in grails/web-inf/lib i have quartz-1.8.4.jar version
It works properly in development sts 3.1.0 IDE version
When ...
-3
votes
0answers
44 views
Display scheduler [closed]
I would like to know if anybody has an idea about creating a solution that can schedule the display of several data such as : (powerpoint,excel,word) document,videos or website and macros wich are ...
0
votes
1answer
34 views
Quartz sheduler throws out of memory
My quartz job throws an error below.
Does anyone know how to fix out of memory problem?
Exception in thread "DefaultQuartzScheduler_QuartzSchedulerThread" java.lang.OutOfMemoryError: Java heap space
...
0
votes
1answer
66 views
Disable Grails Quartz Job and start it in controller
I using Quartz plugin in Grails. But I have some problems. Please help me!
I wants to disable Quartz Job in Grails at applications starting-up and wants to active it in controller and stop it later. ...
0
votes
1answer
27 views
can we set the cronExpression during runtime
my spring application context have cronTrigger
<bean id="cronTriggerJobA" class="org.springframework.scheduling.quartz.CronTriggerBean">
<property name="jobDetail" ref="JobA" />
...
1
vote
2answers
58 views
Running Spring job for a defined interval of time
I have a database that contains a table document. This table defines paths to documents I will process.
The processing of documents is very heavy and may take several minutes for a single document.
I ...
0
votes
0answers
65 views
WebService Call from Quartz Scheduler fails javax.xml.ws.WebServiceException: javax.wsdl.WSDLException
I have a web-service which internally calls other JAX-WS webservices through static binding where we bind the wsdl and schemas to /META-INF/ws/. Everything works fine when request comes in the SOAP ...
0
votes
0answers
34 views
Java multiple database connection with multiple quartz schedular jobs
We are having multiple text and excel files which are being read as of now by different Classes (i.e 1 class per text or excel file). The read data from the files is saved into the database. These ...
0
votes
1answer
28 views
Estimate for number of records in quartz tables
I am working on a Java/Java EE application that has 12 db tables and the same number of methods exposed via webservices. I have quartz configured to do some jobs to insert data in these tables via ...
0
votes
1answer
70 views
Show Quartz Scheduler details in a web page
My Requirement - Display list of scheduled jobs on a web page.
What I have accomplished so far-
1) I am initializing the scheduler using a servlet and making appropriate entries in web.xml.
Servlet
...
3
votes
1answer
74 views
Quartz fails to delete a job, now what?
Given a Quartz job and the following command
boolean deleted = scheduler.deleteJob(event.getName(), "some group name")
Assuming deleted comes back as false, as i understand it, it means that from ...
0
votes
1answer
88 views
Spring JDBC store SchedulerFactoryBean can't trigger stored trigger manually
I have a clustered Quartz (version 2.1.6) scheduler that seems to work fine when deployed to a websphere cluster. The scheduler is created by Spring (version 3.1.3_RELEASE).
<bean ...
0
votes
1answer
90 views
Quartz Cron scheduler in Spring with jdbc store
I need to create Cron service in Spring, but I can not find enough info how to do it with jdbc store. I want Quartz to use my present connection to Datasource, my database is PostgreSql. I need to ...
0
votes
0answers
126 views
Error creating bean with name 'org.springframework.scheduling.quartz.SchedulerFactoryBean#0'
I am using Spring 3.0.5 and Quartz 1.8.3 and I am getting exceptions in SchedulerFactoryBean
Can someone help me with this? with Quartz 1.8.6 also its not working
I have following configuration
...
0
votes
1answer
32 views
How to fire Quartz Cronjob from my unit testing
I am running a Quartz cronjob in my tomcat container, which fires certain schedulers every minute, as shown by the following code:
<bean id="cronjobTrigger" ...
0
votes
1answer
51 views
NullPointerException while calling manager Method from execute quartz scheduler
I've encorporated quartz scheduler in diffrent java file in my JSP Struts/Hibernate application. My execute method looks like below:
public void execute(JobExecutionContext jExeCtx) throws ...
0
votes
0answers
48 views
Scheduler job does not execute on specified interval
I have created jira plugin scheduler job which executes specified job class.
here, i am not able to execute scheduler job on specified interval as i have defined.
Below is stuff where schedule the ...
0
votes
1answer
57 views
The best way to scheduler a process on the first day every 2 months even the server was down
I have a simple task: I need to run a process on the first day every 2 months even the server was down
If the server will not down – the task is very easy:
ThreadPoolTaskScheduler scheduler = new ...
0
votes
1answer
60 views
How to Stop a Windows Service for long running Jobs?
Currently I am using Windows Service to keep on running some jobs in the background. These jobs are scheduled via Quartz.Net. Generally these are long running jobs, spans from 5 min to 15 min. If a ...
5
votes
7answers
615 views
How to delete session data at a regular time interval, every hour?
I'm generating random tokens for the reason as mentioned in this question which are placed in a java.util.List and this List is kept in a session scope.
After going through some Google search, I ...
1
vote
2answers
159 views
How to implement a Quartz.NET job in ASP.NET MVC with UnitOfWorkPattern on EF Code first
I have ASP.NET MVC 3.0 application, with EF Code First for data layer. I have implemented a Unit of work pattern, I’m binding context of the unit of work on HttpContext.Current.Items[SomeKey] ...
0
votes
0answers
33 views
Quartz ScheduleJob Memory Overload?
I use quartz.dll on windows service for running process every min.
My service use high memory and this memory size increase day by day.
How can i get under control my using memory as normally.
This ...
0
votes
1answer
37 views
Quartz Document and Wiki - Contradict on Cron Expression for Day of Month field
Here in wiki
http://en.wikipedia.org/wiki/CRON_expression#CRON_expression
under subheading "Predefined scheduling definitions"
Its mentioned that "day of week (0 - 7) (0 or 7 are Sunday, or use ...
1
vote
1answer
114 views
Exception in thread org.springframework.beans.factory.BeanCreationException: Error
this is my applicationContext.xml
<bean id="studentbean" class="com.Student">
<property name="name" value=" " />
</bean>
<bean id="JobA" ...





