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
2 answers

Is there a way to run a single job instance across multiple workers in fastapi

I am using apscheduler to create background jobs to run in my fastapi application, however when I start the application with more than one worker the job is duplicated across the workers resulting in all kinds of error and potentially security…
0
votes
0 answers

Execute Sql Task Failed in production with the error "could not find matching parameters binding"

I can execute successfully in my dev environment ,getting error in production error i tried below steps Checked Parameters mapped correctly or not in the Package level ,it was set correctly. Checked Variables mapping also checked in the Package…
Saranya
  • 1
  • 2
0
votes
0 answers

Scheduling monthly job in autosys

I am writing an autosys job for scheduling a job that is a monthly process. I want the job to be auto triggered on a particular date of every month. Is there a way that I can include this condition of running the job on a single given date.
Sahana S
  • 27
  • 3
0
votes
1 answer

creating a scheduled Job in laravel 10 using database driver

first i used the database as my driver by adding it in .env file I created the job and defined the table (product) and the row (status) to change it from zero to one in the handle method then i dispatched it in the index function in my controller…
0
votes
1 answer

LSF bsub add job ID to job string

While submitting an LSF job using bsub, I want to add the job ID to the job string. bsub "mkdir job%J" -o %J.log If the jobID is 3456, I was expecting to make a directory with name job3456 but instead it is job%J. The log file, specified by -o has…
0
votes
1 answer

Allocate a set of job arrays in a previously defined number of nodes

I am trying to execute a process using 6000 samples as input, so I am trying to use job arrays in order to do so. My main problem is that those jobs allocate in every node my machine has available, and I would like to restrain the number of nodes…
0
votes
1 answer

How can you create generic Spring Batch components?

so I have the following concerns. Imagine I have 3 different Profile Entities (meant for different databases) in my application. They differ in some minor details for example. Now I am creating a Spring Batch Job that will run once every 24h. and…
tzvezdov
  • 13
  • 3
0
votes
2 answers

How do I assign values to using:variables in PowerShell ThreadJobs?

ThreadJobs has access to the same environment as it was started in. But normally, PowerShell will respond with a syntax error when trying to change variables from the parent level. The documentation MS Learn - about_Thread_Jobs has som insights but…
Dennis
  • 871
  • 9
  • 29
0
votes
0 answers

Question regarding pending jobs (reason: resource) on slurm

I recently started working with slurm and came up with question regarding submitting a job. I have submitted sbatch file via sbatch myfile.sbatch command but the job doesn't start running where it keeps showing "pending, reason: resources" even…
0
votes
1 answer

How to specify custom CPU requirement in SLURM?

I'm new to slurm and trying to figure out a way on how to run a job on specific CPUs of different Nodes. For example, I want my job to run on CPU0, CPU1 of Node a and CPU0,CPU2,CPU4,CPU6 of another Nodeb. How can I specify such requirements? Thanks…
0
votes
0 answers

is there any java code for queue based on due date priority dispatching rule (EDD)? and how?

I need EDD priority rules java code And I want to ask. Here I have 2 agents namely WeldBolt and SPC PIN which have different process flows. Then the 2 agents go through the grooving process together so that the 2 agents will meet in 1 queue to enter…
0
votes
1 answer

Cancelled job still running after cancelAndJoin()

I have an Android screen update job that gets called whenever the slider is moved. Before calling it again I call cancelAndJoin(). Still, sometimes there is more than one instance of the update running at the same time, causing problems. So my code…
votopec
  • 53
  • 5
0
votes
0 answers

run db2 program usin spool write in cicsweb

I am trying to execute db2 program(prg01) using spool open, spool write and spool close commands. DB2 program thet I want to execute, just insert a record into table t01. in other cicsweb program(prg02) I want to display t01 records. But when I try…
Ebi
  • 1
  • 1
0
votes
0 answers

how to get all tasks in background from start /b in windows

I am trying to run queue in laravel through start /b in windows But I want to know how many tasks are running in the background I am trying to run crone and job in laravel through start /b php artisan ...... command in windows or how to run crone…
0
votes
0 answers

Unable to view the pod log with status completed

After running a job, I noticed that some logs cannot be found while others can. It's possible that the container responsible for the missing logs was deleted. Could this have been caused by Kubernetes or was the deletion triggered during container…
coderTh
  • 1
  • 1