2,795 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Advice
0
votes
0
replies
24
views
Precedence implementation - compressed sparse row (CSR)
I'm doing a model for scheduling personnel through VRP formulation and I would like to know how can I integrate precedence binary matrix, using the CSR to accelerate the data processing.
My precedence ...
1
vote
0
answers
93
views
MacOS does not grant requested thread QOS
I would like to run a single-threaded program in MacOS 26.0 at the highest QOS level (QOS_CLASS_USER_INTERACTIVE), in order to get more consistent performance on a compute-bounded benchmark. By ...
0
votes
0
answers
58
views
Scaling APScheduler 4.0.0a2 with Executors — Jobs Ignored When Multiple Schedules Run Simultaneously
I'm currently using APScheduler 4.0.0a2 in my project, and I'm running into multiple issues:
No migration path: I noticed that there’s no migration available from
4.0.0a2 to 4.0.0a6, which is ...
0
votes
1
answer
94
views
Find ternary relationships with no duplicates for game scheduling algorithm
I'm working on assigning groups in Python using rules.
You could think about it like building a season for a three player based game.
Each player needs to face the other players on the list exactly ...
0
votes
1
answer
65
views
Question about using LOC participation type for multiple participants in the Appointment resource
I'm working on a FHIR-based integration for surgical scheduling, and I have a question regarding the use of the participant element within the Appointment resource.
We know that participant.actor can ...
0
votes
0
answers
85
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 ...
0
votes
1
answer
190
views
How do you handle scheduling 100s or more of notifications when Android limits you to ~50 pending?
I'm working on a Flutter app that needs to schedule a large number of notifications (think calendar app with hundreds of events, medication reminders, etc.), but I've hit Android's limit of ...
1
vote
1
answer
82
views
Inetrrupting a thread / task during a for loop execution
Generally speaking. Let's say I have a C application running and it is currently executing a for loop for doing some calculations on local data, but then it gets interrupted.
In a multi-threaded ...
2
votes
1
answer
354
views
How to execute Quartz jobs in virtual threads
How can I leverage virtual threads to execute I/O-bound Quartz jobs within a Quarkus microservice, handling programmatic job triggering without cron-based scheduling?
We are considering Quartz for our ...
0
votes
1
answer
53
views
Openmp lastprivate confusing result
I am getting following results roughly 20% of the execution with the given code and lastprivate clause is not working as expected. Pls note that end value of b should be 50 however at times it is not ...
0
votes
0
answers
57
views
oracle enterprise manager cloud control 13c scheduling question for target availability report scheduling
I am trying to scheduling a Target Availability Report in oracle enterprise manager cloud control 13c. I want to schedule this report to run every hour only on Business days from 7 AM to 5PM. However ...
0
votes
0
answers
103
views
Kubernetes scheduler, empty node while scheduling
Problem: how to achieve exactly opposite behaviour for bin packing strategy in k8s?
Details: we have one app hosted on k8s. We run a couple of pods which we need to scale down and up very frequently. ...
0
votes
1
answer
402
views
JobRunr one of the JobParameters is not deserializable anymore
Been using JobRunr (7.4.1) in my Kotlin-based Spring Boot (3.4.3) app, where I am enqueuing jobs like this
jobScheduler.enqueue { serviceA.doSomething() }
and recently refactored the target service, ...
-1
votes
1
answer
130
views
Adding soft min,max and hard max consecutive day constraints to nurse scheduling example
I've been slowly learning my way through cp-sat by reading the nurse scheduling examples and made some modifications to the first nurse example to test what I've learned. First I took personal "...
0
votes
0
answers
37
views
How to use OR condition between Job success and time
I have a chain of jobs which are dependent on each other. There is a parent job that runs twice a month and then all children job run. However there are some jobs that needs to run whenever parent is ...