1,345 questions
0
votes
0
answers
50
views
Snakemake slurm cluster status in version 9.6.3
I am currently using Snakemake version 9.6.3 on a cluster managed by an SLURM scheduler. In previous workflows, I relied on version 6, which supported the --cluster, --cluster-status, and --parsable ...
0
votes
0
answers
103
views
Updating repeatable job's startDate/pattern does not update next run time (even after deleting and recreating job)
I'm using BullMQ (v5.56) to schedule repeatable jobs with a custom schedulerId as the job name.
When I create a job with repeat options like:
{
startDate: '2025-07-10T09:55:00.000Z',
pattern: '55 *...
0
votes
0
answers
78
views
How to force Slurm to pack GPU jobs onto partially occupied nodes to free full nodes?
When users request 1-2 GPUs via sbatch --gres=gpu:1, Slurm locks the entire 8-GPU node. This fragments our cluster:
Multiple small requests spread across nodes (e.g., four 1-GPU jobs occupy four ...
1
vote
0
answers
84
views
Getting Error while using Cron Job Scheduler in Node.js
const parts = dateFormat.formatToParts(date).filter(part => {
'RangeError: Invalid time value'. at DateTimeFormat.formatToParts
()
at buidDateParts
getting error in Cron Job Scheduler using with ...
0
votes
1
answer
47
views
Autoys job inisde a box is not triggered - success condition is based on a job outside the box
Here is the flow of the jobs I am working on:
When Job B[stand alone job] is successful,
Trigger Job A [Present in box A]
But I can see that after Job B is completed, Job A is not getting triggered. I ...
0
votes
0
answers
62
views
How to Chain Quartz.NET Jobs with Individual Triggers and Ensure Sequential Execution?
I am using Quartz.NET to schedule a series of jobs that need to be executed in sequence. I want each job to have its own trigger so that I can see the execution status of them in the UI (localhost:****...
0
votes
0
answers
183
views
Branch and Bound technique to solve the Job Selection Problem in C
The output should match the format.
I am working on the Job Selection Problem, where I need to select a subset of jobs to minimize the total penalty while ensuring that the selected jobs can be ...
0
votes
0
answers
51
views
CapsulecastCommands not working in unity?
I tried to complete commands in unity, but they didn't work.
I tried to complete RaycastCommand, CapsulecastCommand and OverlapCapsuleCommand. RaycastCommand worked. CapsulecastCommand and ...
0
votes
0
answers
64
views
Python Round Robin Scheduling Simulation: Unexpected Output
I'm implementing a Round Robin scheduling algorithm in Python with context switching, I/O handling, and a time quantum. I have the following code:
jobs = [
{"name": "J1", "...
1
vote
0
answers
48
views
Android Kotlin: Getting Location null when device in Doze mode in OEM devices
I used FusedLocationProviderClient with JobScheduler to get the current location all the time and it works well when the app is in the background.
But the getCurrentLocation() method returns Location =...
-1
votes
1
answer
118
views
SQL Server Job Schedule needed to dynamically update based on a table
I have Job schedule as such: Runs daily Mon-Friday between 9:29 and 16:31 in 1 minute intervals.
I need to dynamically modify it: Meaning on some days it will need to run 9:29 to 12 noon and on other ...
1
vote
0
answers
106
views
Prioritize specific nodes in slurm job submission
Is there a way to prioritize certain nodes over others in a job submission without admin privileges?
I know about the --nodelist, --constraint or --exclude directives, but if set, the job runs only if ...
0
votes
1
answer
194
views
OR Tools cp sat flexible jobshop with flexible durations optimal solution not found
I am trying to combine the flexible job shop optimization with flexible durations based on machine calendars like here: https://groups.google.com/g/or-tools-discuss/c/DA_4Pniwhn8/m/BH2vO5K1BgAJ
My ...
-1
votes
1
answer
63
views
Regarding Optaplanner/tiimefold.ai
I have a use case where I want to assign a salesperson to a list of appointments. Now, these salespeople have to travel from one point to another to reach the appointment location. I am using ...
0
votes
1
answer
84
views
How to store "export into" command in stored procedure
I am working on SAP HANA BTP Cockpit. I created 1 instance and enter in database explorer. There I created 1 table and transfer that table to AWS S3 bucket using this command:
Export into '<s3-...
-3
votes
1
answer
96
views
Job Scheduler Implementation with monitoring the job Using cloud (Azure Web jobs) in Dotnet [closed]
I need idea or some suggestions on tool to create POC for our own job scheduler using following tech stack, which should replace the onpremimse AutoSys to cloud based solution.
Tech Stack:
Angular
C#,...
0
votes
1
answer
401
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 ...
0
votes
1
answer
184
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 ...
0
votes
1
answer
138
views
Consider a Multi Queue level system
I could not able to understand the question mentioned:
Consider a Multi Queue level system consisting of five processes whose arrival time and burst time are given below. Process in Queue Level 1 ...
1
vote
0
answers
104
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 ...
1
vote
0
answers
51
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 ...
0
votes
1
answer
807
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.
...
1
vote
1
answer
889
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 ...
0
votes
1
answer
268
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
...
0
votes
1
answer
443
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 ...
1
vote
0
answers
135
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 '...
0
votes
0
answers
40
views
SQL Server Job execution after the job stopped
I started one a job from the ‘Job Activity Monitor’, I stopped the job after few minutes once I realized that this is not the job I should be running. The next day, the stopped job triggered by the ...
1
vote
0
answers
1k
views
How to chain jobs in Dagster?
I need to chain several jobs. Some have to be started right after other have finished and some need results of other jobs as an input.
Seems that I can start one job after the other by using sensors. ...
-1
votes
1
answer
90
views
Can you pass multiple arguments into jobs.put?
So I want to use the queue multithreading in Python, where I queue jobs and it works through the jobs but I have two values I would like to pass to each job. Can I pass multiple values into the job ...
0
votes
2
answers
333
views
oracle job "next run date"
My oracle database time zone is +03:30 (TEHRAN)
select current_timestamp from dual
22-JAN-24 11.06.09.128998 AM +03:30
dbms_scheduler.create_job (
job_name => v_job_name ,
...
0
votes
1
answer
78
views
Count Number of Non Consecutive Occurrence of values in Google sheets
I use Google Sheets to manage the schedule of 17 rotating shift workers. The draft schedule runs out 9 months. It's easy for myself to loose track of folks working too many days in a row covering ...
0
votes
1
answer
296
views
JupyterLab Job Scheduler
I'm using the job scheduler with JupyterLab. I've noticed that when I run my code manually it will output and save the desired .csv file. However, when I run this piece of code using the JupyterLab ...
0
votes
1
answer
42
views
Constraint Progrraming No solution
Hello everyone ı have an mathematical which is related with unrelated parallel machines with considering setup time between jobs and machine eligilibity. I wrote my mathematical model in GAMS. It ...
0
votes
0
answers
62
views
My code is calculating the turnaround time and arrival time wrong (Round Robin)
My task is to calculate the average turnaround time and waiting time, as well as the number of interruptions froma CSV file (1st row being the arrival times, the the rest of the row are summed up to ...
0
votes
1
answer
2k
views
How to find apex class included in scheduled apex job
how to find the apex class in this scheduled apex record.its not showing the apex class , then I try this in apex jobs section but it's also not showing this job
Please give me solution for that . ...
0
votes
0
answers
511
views
job shop scheduling using python
I'm working on a project related to solving the job shop scheduling problem using Tabu search, genetic algorithms, or any suitable algorithm in Python. I've referred to this GitHub repository: https://...
0
votes
1
answer
212
views
Google OR-Tools consecutive shifts
I'm learning OR-Tools and started adding onto the nurse scheduling problem. I'm trying to add a constraint that if a nurse is working that they can only work consecutive shifts (i.e can't work shifts ...
1
vote
1
answer
86
views
How do I model an interval variable with an intensity function on Choco Solver?
I am trying to solve a scheduling optimization problem using Choco solver. It requires the scheduling of tasks based on the workforce's shift. It includes a capability that certain tasks can be ...
1
vote
1
answer
413
views
Sbatch resouce allocation for mult-threaded application
After reading the very informative post, HPC cluster: select the number of CPUs and threads in SLURM sbatch, I understand the difference b/w the --ntasks, --cpus-per-task and --ntasks-per-node flags ...
0
votes
1
answer
2k
views
I need to grant SQL Agent Service Account rights to execute SQL Server jobs
I am wondering what kind of permissions the [NT SERVICE\SQLSERVERAGENT] account needs to run the job?
Below are the steps that have been implemented, yet the job doesn't run with correct results ...
0
votes
1
answer
153
views
How to unschedule a job or kill scheduler When you have scheduled a job using START STEP of a job In Pentaho DI?
I have scheduled a job to run daily using START STEP of a job and Not using the Schedule Prespective, Now i can't locate it in scheduled jobs, but the job runs daily for a specific date and i want to ...
1
vote
1
answer
600
views
Create dependency between CRON jobs in Kubernetes docker-compose
In my current project there are multiple CRON jobs scheduled in Kubernetes. Each cron job has a specific start time scheduled. But as per a new requirement we need to create dependency between jobs so ...
1
vote
0
answers
346
views
User can't schedule a job in SAS Management Console
I am an admin for SAS analytics app and one user couldn't schedule a SAS job through SAS Management Console. He gets an error box message says:
Connect to Scheduler error
Unable to make connection to ...
1
vote
1
answer
360
views
How to get a list of Hangfire recurring jobs in C# .Net 7?
This seems straight forward but I can't get examples to work for whatever reason.
I am using Hangfire.Core 1.8.6. My connection is good because I can create one-off and recurring jobs that fire as ...
0
votes
1
answer
1k
views
Job Scheduling using Quartz .NET and c#
I have created a job scheduler that runs every 10 minutes and sends emails if the data exists in the table. It is working fine in my local and our testing environment but not working, when I deploy it ...
0
votes
0
answers
107
views
Quartz .NET Scheduler not working on client uat environment while it is working locally
I have created a scheduler that runs every 10 minutes to check a table and if any data exists in that table then it sends emails to those persons accordingly. I am using Visual Studio 2010. I ...
0
votes
1
answer
1k
views
Is it possible to run multiple Slurm job-steps which us a single GPU?
I have been trying to use Slurm to run multiple job steps on a single GPU. I know memory won't be an issue if the jobs were able to run, however only the first job step will run in the below sequence.
...
0
votes
0
answers
31
views
Output not appearing in Multi-level Queue algorithm
This is a multi level queue scheduling problem. I have implemented 4 levels with the system processes queue having the highest priority and the batch processes queue having the lowest priority. I have ...
0
votes
0
answers
131
views
How to Schedule Laravel Queue Jobs on Shared Hosting Without Sudo Rights?
I'm a Laravel backend developer, and I have a scenario where I need to schedule queue jobs on shared hosting. These jobs involve sending emails to users when they register, and I'm currently using the ...
0
votes
1
answer
350
views
How to segregate recurring jobs in Hangfire between two services
I have two different services that use the same Hangfire instance for scheduling recurring jobs. I am using 1 Hangfire dashboard. Service 1 adds one recurring job, while Service 2 adds three recurring ...