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
3
votes
0 answers

Laravel 5.7 Task Queue (Horizon) doesn't pick up, try to run or fail tasks

We have multiple tasks to run on the same api, since the api is rate limited we need to throttle how many calls are made (100 by 120 seconds) so we don't get locked out. Each lock lasts 30 minutes, would freeze the whole team and might create…
3
votes
1 answer

Jenkins CI (Hudson) - how to laucnh interactively downstreams jobs?

Hya, i'm trying to configure correctly a project in Jenkins. I want to use the parallelization of jobs to use different machine to compute some calculations. My script has three parts : A - one script with a parameter. this parameter is a big…
user706355
  • 321
  • 1
  • 3
  • 4
3
votes
1 answer

Recreate job after another job is completed

I have the following situation: job1 and job2 go to the server in the same time and both of them came back with status 401, which means that my token access has expired and I need to make a refresh. I start job3 which came back the new token. In…
Gabrielle
  • 4,933
  • 13
  • 62
  • 122
3
votes
1 answer

Laravel job chaining

I have been tearing my hair out this afternoon attempting to get job chaining to work. No matter what happens I cannot get a chained job to run. The first always runs and succeeds but the chained will never run. For example I have an event listener…
Daniel Benzie
  • 479
  • 1
  • 5
  • 27
3
votes
3 answers

cloudformation glue job type python shell

I am struggling to find how to create a python shell (not spark) glue job via cloudformation, i am unable to find what property defines that. Only one that would make sence is jobcommand name, but its limited to glueetl as…
Agukov
  • 91
  • 6
3
votes
1 answer

Simple job scheduler for single server

I have a single server shared among different users and I need to set up a simple workload manager/job scheduling system that would allow to share resources fairly among different users. What I'm looking for is a multi-user version of task spooler…
tmt
  • 83
  • 4
3
votes
1 answer

How can I update Jenkins progress bar pro-grammatically from my program or from a service running centrally?

I want to give a live update of my job-build using the jenkins progress bar and currently the progress bar is not current but based on average. How can I achieve the same? I could not find any answer on any platform over the web, If anyone has a…
Jomon Johny
  • 53
  • 1
  • 10
3
votes
0 answers

Copy files from completed Kubernetes batch jobs

I would like to copy the result from a batch job execution but kubectl cp pod:/path /path is not working, since the pod is in completed state. I have the data stored in a PV. How can I copy the results to my computer? Looking forward to read your…
Jorgese
  • 551
  • 6
  • 14
3
votes
2 answers

Laravel: Send 1000 emails every hour using queue

I have a table users with 5000 records (5000 users) and in my server i can just send 1000 emails every hour. How i can send 1000 emails every hour using queue ? or how to make queues sleep inside loop? EmailController: class EmailController extends…
Abdes
  • 926
  • 1
  • 15
  • 27
3
votes
1 answer

Difference between quartz and quartz-jobs

There are 2 dependencies for quartz. The dependency quartz(1st option below) has all the basic required classes needed for a basic job scheduling and execution. What is quartz-jobs used for? org.quartz-scheduler
Deepak Kataria
  • 89
  • 2
  • 11
3
votes
2 answers

Django - how to send mail 5 days before event?

I'm Junior Django Dev. Got my first project. Doing quite well but senior dev that teaches me went on vacations.... I have a Task in my company to create a function that will remind all people in specyfic Group, 5 days before event by sending…
Adrian Kurzeja
  • 797
  • 1
  • 11
  • 27
3
votes
1 answer

Oracle Job Scheduler cannot stop running Job

We have an issue in one of our production databases which I cannot find a solution for. One of our Jobs is stuck in the RUNNING state and attempting to stop it produces a ORA-27366: job "NameSpace"."Some_Job" is not running. Querying the…
Jimenemex
  • 3,104
  • 3
  • 24
  • 56
3
votes
0 answers

Rails 4 delayed job ArgumentError: Cannot enqueue items which do not respond to perform

I create new job SelectionJob, then I call this in my controller using: Delayed::Job.enqueue SelectionJob.new(type, application, @current_user, @selection) When I run rake jobs:work, I get the following error: ArgumentError: Cannot enqueue items…
leylakapi
  • 71
  • 9
3
votes
1 answer

laravel queue without DB query

I want to minimize DB queries for an incoming request. It currently requires writes to 6 different tables. The processing does not need to be done before returning the response. I therefore consider laravel queues, but I wonder if I could also get…
Chris
  • 13,100
  • 23
  • 79
  • 162
3
votes
0 answers

JobObjectWrapper: can not instantiate JobObject

I want to use JobObjectWrapper in my application to limit process memory. I'm trying to instatiate a JobObject with the following code: JobObject job = new JobObject("Hello"); ProcessStartInfo ps = new…
Andrey
  • 5,906
  • 4
  • 24
  • 30