Questions tagged [jobs]

A job is a process executing in the background, or scheduled for later execution. **DO NOT** use this tag for career, employment, or hiring practice questions, as these are off-topic!

A job in a batch processing system is a task scheduled for execution. For questions related to scheduling jobs, see .

In a Unix/Linux context, a job is a process or group of processes running in a terminal, which can be placed in the foreground or in the background. See . For questions about job control with a shell such as bash from a user's perspective, see the jobs and job-control tags on Unix Stack Exchange.

Note that questions related to jobs as in work, career are off-topic on Stack Overflow. Some questions about this topic are suitable for Workplace Stack Exchange; be sure to read the faq.

2834 questions
0
votes
0 answers

Pentaho Connection to DB Reset

I would like to know, if there are any tools in the Design Tools from Pentaho spoon, that can be usefull to close a db connection and reset it, or , a tool that forces a new connection. Why? We got jobs that takes a long time to Execute so, often…
0
votes
0 answers

Flink JobListener not working as expected with Adaptive Scheduler

I am trying to use the job listener to execute dedicated actions at the beginning and the completion of my flink job. However, the onJobSubmitted and onJobExecuted are being executed at the beginning of my job. Below are the driver logs: 2023-06-14…
Ben
  • 21
  • 2
0
votes
0 answers

Adjusting macro to run to 14-well plate format

I have been running a Nikon Elements job that was created by a previous member of our group. The job contains a FIJI macro that stitches together an overview scanned image at 4x and then performs a segmentation of the slide, and reregisters the…
0
votes
0 answers

Run laravel job in each api instance

I have 5 api servers on production environment, my task is to push large files to s3, because it will take time, I will use laravel job dispatch, my problem is when running laravel job Make sure the job has retrieved the correct file from the…
0
votes
0 answers

Randomly select from database using datetime in Python Django

I am making a project in Django right now that needs to select a daily item from the database (it's like a Wordle type of project). I have a database of 100 items and I want every user who visits the site to see the same daily item. I tried to do…
nickbagley
  • 59
  • 6
0
votes
1 answer

Architecture for Job Execution & Managment service

I have a following situation: my application may accept Job from a client. There are many clients submitting separate Jobs. Job consists of multiple Tasks which are executed in a given order, one after another (each Task will use result of previous…
uzarkov
  • 3
  • 2
0
votes
0 answers

SQL Update with PowerShell

Below is my script and I have a problem updating finished jobs in the table, it only updates one job 5 times even though I update it by "WHERE ID", I can't figure out what is the issue or how to fix it $connectionstring =…
0
votes
1 answer

slurm: Request number of cpu depending on assigned node

In our slurm cluster we have two different types of nodes: node12-* --> 12 cpu cores per node node20-* --> 20 cpu cores per node The node20-* are quite a bit older than the node12-* and therefore are much slower per core. I usually start a…
noes
  • 49
  • 1
  • 7
0
votes
1 answer

How do I run a python APscheduler independent of subsequent deployments

I have a django application with a python AP scheduler running a specific job. I wish to run the job once every week. There might be subsequent deployments to the application and I do not want the scheduler to reset the jobs every time that happens.…
0
votes
0 answers

Single Job Multiple Projects

I have three identical Laravel projects on the same server and a sperate database for queues and jobs. Projects Project A Project B Project C Databases Project A database Project B database Project C database Laravel Queue Database The queue is…
Mohammad Edris Raufi
  • 1,393
  • 1
  • 13
  • 34
0
votes
0 answers

How can i configure my supervisor to handle the queues inside the laravel project's Jobs table?

I have a running supervisor(for queue management) in my elastic beanstalk ec2 server.Also there are queues inside the jobs table.How can i configure my supervisor to handle the queues inside the jobs table. This is my supervisor.d/laravel.conf…
ashique
  • 935
  • 2
  • 8
  • 26
0
votes
1 answer

How to pass a precodition value for a job in Github Actions

I want to pass a value from a job to another. The output will be a precondition for the next job so if the value will be false the next job will not run. I've seen that there is a solution for this with ::set-output, but this feature will be…
Valentin
  • 1,159
  • 1
  • 11
  • 22
0
votes
0 answers

How to monopolize a GPU after submitting a job in slurm on a cluster

I have used the instructions such as 'nvidia-smi -c 3' or 'nvidia-smi -i 0 -c 3'. But they seem have no effect. The following is my script in slurm. But the GPU my job runs on is still shared with other people. #!/bin/bash #SBATCH -o…
BONNED
  • 23
  • 1
  • 5
0
votes
1 answer

How to use trap in my sbatch bash job script in Compute Canada?

I am using the SLURM_TMPDIR in ComputeCanada to do some intensive I/O operations, like cloning large repositories, analyzing their commit histories, etc. But now when the job runs out of the assigned time, I lose my output file inside SLURM_TMPDIR.…
not-a-bot
  • 25
  • 3
0
votes
1 answer

Laravel Job Duplication

I'm currently experiencing an issue with job duplication in my Laravel application. I have a job that I dispatch once dispatch(new SendFirebaseNotificationJob($data));, but while monitoring the artisan queue:work --sleep=3 --tries=0 --backoff=3…