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

How to get a list of Jenkins builds that ran at a particular time?

My current Jenkins has a large number of jobs. Different folders, each with multiple jobs. I recently saw that one Jenkins slave(which is auto-scaled) is sending too many requests to another server at a particular time. However, I am unable to find…
Amanjeet Singh
  • 323
  • 1
  • 3
  • 8
6
votes
1 answer

Can I handle jobs timeout in Laravel?

I'm using Laravel 5.5 and i have some jobs that are checking emails with IMAP. Sometimes that can take too long, or lets say that user mistakes port or username, it would take too long for IMAP server to respond. So I came up with idea that i can…
Nikola
  • 163
  • 1
  • 3
  • 10
6
votes
1 answer

How does locking jobs work in agenda node.js?

We have been using agenda for sometime in our node.js server and are confused about how the job locking mechanism works in agenda. Sometimes we see that the 'lockedAt' field for a job in the database has a non-null value and it changes to null…
Sampath Kumar
  • 165
  • 2
  • 10
6
votes
2 answers

Powershell: passing parameters to a job

I have a script that requires a number of parameters: param ([string]$FOO="foo",[string]$CFG='\ps\bcpCopyCfg.ps1', [string]$CFROM="none", ` [string]$CTO="none", [switch]$HELP=$FALSE, [switch]$FULL=$FALSE, [string]$CCOL="none"…
Lubo
  • 61
  • 1
  • 1
  • 2
6
votes
2 answers

What is the difference between Routes and Jobs in Talend ESB?

They seem to be doing more or less the same thing - taking data, processing it and sending it out. Internet search results show that Talend Routes are almost the same as Camel Routes, but that does not say anything about what they are and how are…
Kromster
  • 7,181
  • 7
  • 63
  • 111
6
votes
1 answer

How can I specify the default number of jobs to run from in a Makefile?

Consider the following contrived Makefile: .PHONY: all one two SLEEP = 2 all: one two one two: @sleep $(SLEEP) @echo $@ Running this with make -j 2 all gets both jobs done in the time it takes to run either of them because they are both…
Caleb
  • 5,084
  • 1
  • 46
  • 65
6
votes
4 answers

How is everyone going about implementing scheduled jobs / cloud jobs on parse-server?

According to the parse-server migration guide we could use something like Kue and Kue-UI to emulate the parse.com scheduled jobs functionality. I haven't implemented Kue or Kue-ui, but looking at the guides, it doesn't look like it provides anywhere…
asdf01
  • 93
  • 5
6
votes
1 answer

How to set-up transactions for both web application and batch jobs using Spring and Hibernate

I have an application which uses Spring 2.5 and Hibernate 3. There's a web application with a presentation layer, a servive layer and a DAO layer, as well as some Quartz jobs sharing the same service and DAO layers. Transactions are initialized in…
Damien
  • 2,254
  • 1
  • 22
  • 30
6
votes
3 answers

How can I turn all my 'perform_later's into 'perform_now's locally?

I'm working on a product that calls of perform_later jobs. This works for our product in production because we have a series of workers who will run all the jobs. But, when I'm using the app locally, I don't have access to these workers, and I'd…
acoravos
  • 63
  • 5
6
votes
1 answer

Instagram API integration

I'm going to implement a schedule job using c# which will schedule to run every 3 hours and get the latest 50 images posted in instagarm, and saved in the local cache directory to display instagarm images in site. So far I have implemented as per…
KRR
  • 465
  • 3
  • 6
  • 22
6
votes
5 answers

Schedule SQL Job in a user configured time intervals everyday

In my application (ASP.NET, C#), i need to run a stored procedure in a set of pre defined time interval(s) everyday. So that i created a sql job and scheduled the same. But the problem is, there is a option to create/modify this time intervals…
Abdul Rasheed
  • 6,486
  • 4
  • 32
  • 48
6
votes
1 answer

is android-priority-job-queue and job scheduler two different things?

I just want to put my finger on this issue: is android-priority-job-queue: https://github.com/yigit/android-priority-jobqueue and android job scheduler :http://developer.android.com/reference/android/app/job/JobScheduler.html two different things?…
shaya ajzner
  • 179
  • 1
  • 9
6
votes
4 answers

Oracle's dbms_metadata.get_ddl for object_type JOB

I'd like to create ddl scripts for most of my database objects. dbms_metadata.get_ddl works for most of the object types. For instance the following creates the ddl for a view: select dbms_metadata.get_ddl ( 'VIEW', 'SAMPLE_VIEW') from dual On the…
asalamon74
  • 6,120
  • 9
  • 46
  • 60
6
votes
2 answers

Laravel 5.1 failed queued jobs fails on failed() method, prevents queue failure event handler from being called

I am testing the queue functions in Laravel 5.1. I can make jobs queue up in my db table, called jobs, and I can get them to run successfully. I also created a queue failure table called failed_jobs. To test it, inside the jobs table I manipulate…
Joel Joel Binks
  • 1,628
  • 5
  • 27
  • 47
6
votes
1 answer

Defining node agenda jobs for these use cases

Hi I am using a node agenda to define a job in my app (https://github.com/rschmukler/agenda). I have two use cases that I do not know how to cover 1) I want the job to run every Tuesday or every Wednesday for example 2) I want the job to run every…
es3735746
  • 841
  • 3
  • 16
  • 40