Top "Job-scheduling" questions

A job scheduler is a computer application for controlling unattended background program execution (commonly called batch processing).

when a quartz job fires, is it a new job class instance?

I am very new to Quartz and I have some doubts about the jobs lifecycle. Let's suppose I have a …

java quartz-scheduler spring-3 job-scheduling
start a .exe in the background with parameters in a powershell script

I have a programm which i usually start like this in powershell: .\storage\bin\storage.exe -f storage\conf\storage.…

powershell jobs job-scheduling
Can Control-M execute a http service endpoint to GET job status?

I am very new to control-m and wanted to ask if control-m supports this scenario: We have a http webservice …

web-services scheduler job-scheduling control-m
withoutOverlapping() is not working in Laravel Schedule

$schedule->call(function () { error_log("Line Schedule 1:Start"); //Send Email error_log("Line Schedule 1:End"); })->everyFiveMinutes()-&…

php laravel laravel-5 laravel-5.1 job-scheduling
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 …

ruby multitasking job-scheduling
Cancel or Delete Scheduled Job - HangFire

I have scheduled a Job via using Hangfire library. My scheduled Code like below. BackgroundJob.Schedule(() => MyRepository.SomeMethod(2),TimeSpan.…

c# asp.net job-scheduling hangfire
Time Slices in Round Robin Time Scheduling

If you have a very large (say too big) time slice for a round robin scheduler what kind of performance …

c operating-system scheduling job-scheduling round-robin
Cancel running job scheduled with Hangfire.io

I schedule job using hangfire.io library and I can observe it being processed in built in dashboard. However, my …

job-scheduling hangfire
How jobs are assigned to executors in Spark Streaming?

Let's say I've got 2 or more executors in a Spark Streaming application. I've set the batch time of 10 seconds, so …

job-scheduling apache-spark executor
How to get next run time Spring Scheduling?

I am working on a scheduling project which executes multiple jobs at regular intervals. I am using a cron scheduling …

spring scheduled-tasks job-scheduling spring-scheduled