Top "Scheduling" questions

In computer science, scheduling is the method by which threads, processes or data flows are given access to system resource.

Optimized algorithm to schedule tasks with dependency?

There are tasks that read from a file, do some processing and write to a file. These tasks are to …

algorithm scheduled-tasks scheduling
DAG(directed acyclic graph) dynamic job scheduler

I need to manage a large workflow of ETL tasks, which execution depends on time, data availability or an external …

python scheduling etl directed-acyclic-graphs oozie
Spring scheduler which is run after application is started and after midnight

How to describe Spring scheduler which is run after application is started and after 00:00 ?

spring cron scheduling
How does DateTimeOffset deal with daylight saving time?

I am storing schedules in the database as a day of the week, hour and minute. When the data is …

c# .net scheduling datetimeoffset nodatime
How to do “sequential” Job Scheduling (Quartz?)

I'm making use of Quartz Scheduling and there are 2 jobs. First Job is performing the tasks for around 2 minutes and …

java scheduling quartz-scheduler
Finding Last Fired time using a Cron Expression in Java

Is there a way in Java to find the "Last Fired Time" from a Cron Expression? E.g. If now = 25…

java scheduling quartz-scheduler crontrigger
SQL Server Agent Job Timeout

I have just had a scheduled SQL Server job run for longer than normal, and I could really have done …

sql-server sql-server-2005 timeout scheduling sql-server-agent
Optimal room count and sizes for N overlapping Meeting Schedules

I bumped into this question and I am not sure if my solution is optimal. Problem Given N weighted (Wi) …

algorithm scheduling dynamic-programming intervals greedy
Optimal shift scheduling algorithm

I have been trying for some time solve a scheduling problem for a pool that I used to work at. …

algorithm optimization scheduling approximation
OpenMP Dynamic vs Guided Scheduling

I'm studying OpenMP's scheduling and specifically the different types. I understand the general behavior of each type, but clarification would …

c++ multithreading parallel-processing openmp scheduling