Skip to main content

Questions tagged [job-scheduling]

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

job-scheduling
0 votes
1 answer
47 views

Managing PL/SQL Jobs to Avoid Deadlocks on a Large Table

I have a PL/SQL procedure that submits jobs in a loop, processing different parameters (branches). Each job performs inserts and updates on a large table. Due to the size of the table, a table lock is ...
Khurram Raza's user avatar
0 votes
1 answer
39 views

Or-tools: How to use BoolVar/ Change bounds of exisitng IntVar

I wanted to expand the job shop problem for the CP-Sat Solver by adding optional tasks,that don't have to be executed. But my problem is that I don't really know how "remove" a task from the ...
sodanet's user avatar
0 votes
0 answers
30 views

Slurm sbatch on multiple nodes with 1 gpu for each one to parallelize cross validation

As object question, I am trying to refine lines of code in bash to start a job where I require 5 nodes with 1 gpu for each (and thus 1 task per node) in order to start a cross validation with 5 folds ...
F48R1's user avatar
  • 37
0 votes
0 answers
12 views

Consider a Multi Queue level system

I could not able to understand the question mentioned please help me out. Consider a Multi Queue level system consisting of five processes whose arrival time and burst time are given below. Process in ...
Nikhitha's user avatar
0 votes
0 answers
5 views

Having redundant edges in job graph scheduler

I'm working in a codebase that generates a graph to run production jobs. The edges in the graph represent dependencies, e.g., Edge 1: A->C Edge 2: B->C means that jobs A, C need to be run ...
roulette01's user avatar
  • 2,344
1 vote
0 answers
38 views

Quartz Scheduler: High Job Failure Rate at Midnight in Multi-Tenant Database System

I am experiencing a high rate of job failures with my Quartz Scheduler setup in a Spring Boot application. Approximately 3,00,000 jobs are scheduled to execute at midnight, and I believe this is ...
Shwet Verma's user avatar
0 votes
0 answers
15 views

binary variable assignement in lingo

Scheduling output# binary variable assignement in lingo binary variable assignement in lingo the schedule is not continuous rather my period start and end time is influencing the batch start and ...
anusheya mani's user avatar
1 vote
0 answers
35 views

Pulp Constraint Not Satisfied - Overlapping Jobs

I'm trying to solve a classic optimization problem using PulP - I have a set of patients with durations for their job, chairs (a patient must sit on a chair to complete their job), and nurses (that ...
Sruthi Kurada's user avatar
0 votes
0 answers
73 views

Is the response time and waiting time always the same in FCFS?

From my understanding since FCFS is non-preemptive, the time until it is selected by the scheduler for the first time is the same as the total time spent in the ready queue, thus the response time is ...
김승수's user avatar
0 votes
0 answers
35 views

Shortest Job First Preemptve technique

I'm working on a Java program to simulate the Shortest Job First (SJF) preemptive algorithm and then visualize the execution using a Gantt chart. I have the algorithm logic implemented, but I'm ...
Ahmed Ehab's user avatar
0 votes
1 answer
41 views

How to give higher priority to a job over another in the queue in Jenkins?

I have a case where I have 5 executers on a slave and 2 jobs running on that slave. Jobs are triggered by a pipeline. Multiple instance of the same job will be triggered with different parameters. ...
Sreevalsa E's user avatar
1 vote
1 answer
289 views

OR Tools cp model performance for flexible job shop scheduling with transitions

I am evaluating OR tools cp model performance based on example https://github.com/google/or-tools/blob/stable/examples/contrib/scheduling_with_transitions_sat.py I've modified the code to generate ...
Martin Stimpfl's user avatar
0 votes
1 answer
65 views

OR-Tools CP-SAT: problem with 'scheduling_with_transitions_sat' job shop scheduling example from GitHub

for my current project I've found a similar example on the or tools github repo I use as blueprint: https://github.com/google/or-tools/blob/stable/examples/contrib/scheduling_with_transitions_sat.py ...
Martin Stimpfl's user avatar
0 votes
1 answer
137 views

OR Tools Job Shop Scheduling for multiple machines with setup times

I am pretty new to Google OR Tools and trying to set up a job shop scheduler for multiple machines with setup times in between each job (retrieved via a dictionary). This example gives a good hint of ...
Martin Stimpfl's user avatar
1 vote
0 answers
65 views

How to redirect the output of Start-ThreadJob with -StreamingHost parameter to a variable in PowerShell?

This is a mock up of part of the code I'm working on $output = @() Start-ThreadJob -ScriptBlock { try { Write-Host "`nThis is a Write-Host message" Write-Verbose '...
SpyNet's user avatar
  • 618

15 30 50 per page
1
2 3 4 5
91