Tagged Questions
The job-scheduling tag has no wiki summary.
12
votes
4answers
3k 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 ...
7
votes
2answers
231 views
Task Scheduling with complex dependencies
I'm looking for a way of scheduling tasks where a task starts once several previous tasks have completed.
I have several hundred "collector" processes which collect data from a variety of sources and ...
7
votes
4answers
1k views
What is a good open source job scheduler in Java?
In an application harvesting (a thousand) RSS feeds, I want to dynamically schedule the feed downloaders based on the following criteria:
The speed at which content are generated - source which ...
5
votes
1answer
53 views
What is a 'MySQL event'?
What is a 'MySLQ event'? What is its purpose? How is it different than a 'job scheduler'?
Many posts on SO and the MySQL documentation describe how to implement it. I am just interested in its ...
4
votes
1answer
163 views
R job job queueing / workload management
I have been spending some time on Google looking for a queuing / load balancer package for R.
What I am trying to achieve:
executing multiple independant from eachother R functions from remote ...
4
votes
3answers
561 views
Python library for job scheduling, ssh
I'd like to find a user-space tool (preferably in Python - barring that, in anything I could easily modify if it doesn't already do what I need it to) to replace a short script I've been using that ...
4
votes
1answer
505 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 ...
3
votes
2answers
170 views
Play Framework: Impact of Jobs on the stateless model
One of the great things about the Play framework is that it is fully stateless and only request/response-oriented. This is really nice since it allows me to deploy my app to the cloud and scale the ...
3
votes
3answers
264 views
How to define frequency of a job in application by users?
I have an application that has to launch jobs repeatingly. But (yes, that would have been to easy without a but...) I would like users to define their backup frequency in application.
In worst case, ...
3
votes
5answers
1k views
Is sleep() a good idea for the main loop of a job-scheduling app
I'm writing a job-scheduling app in Ruby for my work (primarily to move files using various protocol at a given frequency)
My main loop looks like this :
while true do
# some code to launch the ...
2
votes
2answers
167 views
how to use Graph Theory for scheduling execution order?
I am designing an application, which executes a series of plugins. A plugin's execution might/might not be dependent on another/other plugins execution. i.e some (not all) of the plugins expect other ...
2
votes
1answer
198 views
Alternative to polling for job scheduler
We've got need for a job server here at work and I'm currently playing with Quartz.net, but the idea of creating my own appeals to me. At the very least understanding what Quartz.net may be doing ...
2
votes
1answer
305 views
commercial .net task scheduler component that supports callbacks or events
I am aware of quartz.net and the codeplex task scheduler managed wrapper project. They have a rather decent learning curve and R&D phase to get it to work as per our specs. Also packaging them ...
2
votes
1answer
396 views
Using Quartz in a clustered environment
I'm looking to use the quartz scheduler in my application because I have a clustered environment and want to guarantee that only one instance of my job runs each hour. My question is...Do I have to ...
2
votes
3answers
536 views
dbms_job / Oracle job scheduler
Hey guys,
I'm wondering how you create a job scheduler in Oracle APEX?
I'm making a system which manages calls, each call has a severity level. After an hour, the severity level should be escalated. ...
2
votes
1answer
601 views
Job Shop Scheduling: Shifting Bottleneck
I'm currently looking into quick graph because I need to implement Job Shop Scheduling. I have been researching and found the shifting bottleneck algorithm very promising. As I'm not really proficient ...
2
votes
2answers
633 views
Exe name like update.exe blocked by UAC in scheduled task
I have a problem with windows UAC, scheduled tasks and a executable named "dbupdate.exe". I have full power over source code, manifests and so on, but not over user systems (short: normal software ...
1
vote
3answers
21 views
How do I see all MySQL events that are running on my database?
I have a MySQL database. I am running two MySQL EVENTs. I need to get rid of one. I don't remember it's name. What do I do?
1
vote
1answer
58 views
How do I run a 'job scheduler' on a LAMP stack?
I have a simple website built using PHP. It is hosted on a Linux server.
I need to run a PHP script every night. How do I do this?
Will an 'open-source job scheduler in java' be able to run a PHP ...
1
vote
1answer
41 views
Schedule heterogeneous tasks on heterogeneous machines
We have n jobs and m machines. Each job i has a release time r[i]. Processing job i on machine j takes p[i][j] time. For one job k, |{p[i][j] | i == k}| <= c, where c << m. We define the ...
1
vote
1answer
74 views
How to set Server Time for ScheduledTimerTask in spring?
We are using ScheduledTimerTask to manage the jobs(automatic) in our application.We are using the following code:
<bean id="SampleTask"
...
1
vote
1answer
54 views
How to call two procedures from a job in oracle?
I would like to know how to call two Procedures from a job in Oracle. I had mentioned it like the way i have done it below but i received an error like...
Error starting at line 1 in command:
...
1
vote
4answers
82 views
Hadoop job scheduling alongside jobs with slow mappers in 0.20.203
I am managing a Hadoop cluster that is shared between a number of users. We frequently run jobs with extremely slow mappers. For example, we might have a 32 GB file of sentences (one sentence per ...
1
vote
1answer
74 views
Oracle XE 10g : Job Scheduling w/in a package or procedure : DBA_SCHEDULER_JOBS
I have a package that compiles fine in another 11g environment.
When I try to compile it in my XE 10g environment w/ a DBA User, I get the ORA-00942 error.
FOR r IN (SELECT DISTINCT job_name jname
...
1
vote
1answer
78 views
Multi Tenant Job Scheduler
I would like to build a job schedule system which can schedule jobs on a cluster which is going to be shared among several isolated tenants.
Every tenant need to track their jobs on this shared ...
1
vote
1answer
176 views
How can I schedule a task to run each day using NServiceBus
Is there a elegant way of scheduling tasks using NServiceBus. There is one way I found while searching the net. Does NServiceBus give internal APIs for scheduling.
1
vote
2answers
36 views
Jobs storage engine that isn't mysql?
Im doing a lot of backend jobs on the site. Im using mysql for storing results of those jobs, as well as all the intermediary steps. The jobs are capable of completing with or without mysql being up. ...
1
vote
1answer
228 views
Muntz-Coffman Algorithm (Scheduling)
I'm wondering how exactly do you calculate the time slices (2, 4, 5.5, 7, 8.5).
1
vote
2answers
229 views
SQL Job Occurring every Less than 10 seconds
Is it possible to make Job Schedule, which will occur every less than 10 seconds?
Because Sql server doesn't allow that.
Schedule type is "Recurring" and Occurs "Daily".
1
vote
2answers
193 views
Help with a task scheduling algorithm
I am working on an application in which thousands of tasks associated
with hundreds of devices, each task requiring, < 5ms to begin execution, and
taking on average 100ms to complete.
The ...
1
vote
1answer
441 views
Privileges for a Oracle 9i statistics job
We want to move our automated statistics gathering from an external script into Oracle 9i's job scheduler. It's a very simple job, and the code basically looks like this:
DBMS_JOB.SUBMIT(
JOB ...
1
vote
2answers
1k views
Alternative GUI for Open Source Job Scheduler?
Are there some alternative open source GUI developed to improve the management of jobs and job chains in Open Source Job Scheduler?
0
votes
2answers
32 views
IS PHP Cron the right one for checking and notifying bidding winner?
I am being asked by my client for making instant notification to the bid winner when the bid expires.
Since the ending time is varying and set by users while registering bids, I am planning of ...
0
votes
2answers
50 views
Process Scheduling Math
I have a program that prints out 'A' 3 times, with 1 second delay between each print. Calling this program once would take 2.00 seconds.
Imagine I created a job scheduler that executed a process for ...
0
votes
0answers
28 views
Is there a way to temporarily increase the priority of cron's batch queue?
I run an application where some component periodically submits jobs into cron's batch queue via the 'batch' command.
Each of these jobs perfoms a query to retrieve some data from a database, builds ...
0
votes
3answers
47 views
Is cron job/scheduled task service enabled?
I'm making a website that need's a cron job or a scheduled task to send emails weekly but the problem is that I don't know if the host supports it...
This website is for an institution and I can't ...
0
votes
1answer
58 views
Regarding deploying application across multiple jvm using ant script
This may sound like a dumb question. In my application, I have a scheduler which schedules the job and WEB UI where the user interacts and monitors the status of the job. There is a job processing ...
0
votes
0answers
11 views
Checking the position of my jobs within a queue in LSF
Is there a way to check the position my jobs within an LSF queue?
If I run:
$ bjobs -u all -q my_queue
I get a list of jobs from all users within my_queue, but is this list sorted by the position ...
0
votes
1answer
76 views
What's best practice for HA gearman job servers
From gearman's main page, they mention running with multiple job servers so if a job server dies, the clients can pick up a new job server. Given the statement and diagram below, it seems that the job ...
0
votes
2answers
45 views
A way to have a task run according to a given schedule
I'm about to create a small application which will be responsible for sending out various reports to various users at various intevals. We might be talking about 50 or 100 different reports going to ...
0
votes
2answers
53 views
Scheduling Jobs - Optimal Design
I'm looking for an optimal design for the following usecase.
I'm building a system where users create entities with end date/time. I need to schedule a job to change the status of these entities to ...
0
votes
0answers
57 views
quartz jdbcjobstore sharing
Quartz can store jobs on database so its not volatile.
But if i have two application(web-application and web service) ,
how can i share this store between applications.
That is if one ...
0
votes
2answers
147 views
Using MySQL as a job queue
I'd like to use MySQL as a job queue. Multiple machines will be producing and consuming jobs. Jobs need to be scheduled; some may run every hour, some every day, etc.
It seems fairly straightforward: ...
0
votes
2answers
67 views
How can I trigger events in a future time in PHP
I have written a PHP application that broadcasts a voice message to phone numbers in the database.
Now I want to add a "Schedule" functionality to it.
It basically means that the administrator ...
0
votes
2answers
66 views
How To Set a Cron Script to Run Daily
I have a PHP file that I would like to run once per day. I know that in order to do this I need to set up a CRON job. From my understanding there should be a way to set-up the CRON job within my web ...
0
votes
1answer
225 views
Using createLink() method in Quartz-Job in grails framework?
I want to create a Link in my Quartz-Job in grails like this:
createLink(controller:"auto", action:"show", id: auto.id);
But at runtime i'm only getting exceptions like
...
0
votes
1answer
55 views
CPanel Cron Job settings for working days
I am new to cron jobs, and I wanted to create a cron job which will not run on weekends, like Monday to Friday once in a day at 9:00AM. I am not sure about the format. Any suggestion or help please.
...
0
votes
1answer
82 views
SQL Server 2008 r2: data being truncated when running via a scheduled job but not via the command line
Using Sql Server 2008 r2 and I can get a process to work perfectly while executing it myself. When I set it up to run as a job, the binary field is getting truncated to 2kb (2048 characters) every ...
0
votes
3answers
274 views
Sitecore Scheduling Parameters
Problem
I'm currently trying to setup a Sitecore scheduled task in the database using Schedules and Commands.
So far I've followed http://sdn.sitecore.net/FAQ/Administration/Scheduled%20tasks.aspx ...
0
votes
1answer
95 views
sending automatic mail sql jobs procedure
i have created an sql job for sending mails daily..
i am using HTML table for the report to display. and everything is working fine..if the data exceeds 8000 characters my table is getting ...