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

Online Job Portal System Use Case Diagrams

I want to have a correct use case diagram for an online job portal system. Here is my attemp: I have some doubts: I can't see where making "Login" use case witch is an important use case for this system. This use case diagram is not showing the…
Marie
  • 137
  • 1
  • 3
  • 19
4
votes
0 answers

Using Job instances instead of Job classes in Quartz

I would like to know if it is possible to schedule a Job-Instance instead of a Job class. I'm creating my own Job Instances and don't have the possibility to use the Job.class directly. So something like schedule(Job job, Trigger trigger) would be…
Shorty123
  • 539
  • 1
  • 7
  • 26
4
votes
1 answer

What's the difference between &! and &| in zsh?

In the manual for zsh, in the section on Jobs & Signals, it says: If a job is started with &| or &!, then that job is immediately disowned. Is there some difference between the two ways of immediately disowning a job? If not, then why are there…
Martin O'Leary
  • 1,236
  • 9
  • 9
4
votes
1 answer

jobs find nothing after nohup a script

I made a python script running on background: nohup python app.py & then close the terminal, a few days later, I want to see this job, so I run jobs there list no jobs, but I'm sure the script app.py is still running.
Mil0R3
  • 3,876
  • 4
  • 33
  • 61
4
votes
4 answers

Using powershell object to execute scripts

Powershell version used: 3.0 Hello everyone, I'm looking to try and create a new Powershell pipeline and execute a script within it, then get the output it produces into an output variable, but I can't get any output produced from within the object…
cloud_hero
  • 163
  • 1
  • 7
4
votes
2 answers

java.io.IOException: Cannot run program "ant"

I'm running a Job in Hudson. I build this job from a Hudson Master Server but the job is built in a Hudson Linux Node. This is the result: Started by user builder Building remotely on Linux-Node Updating http: // Server/branches revision:…
garci86
  • 67
  • 1
  • 4
4
votes
0 answers

Quartz.NET get original trigger scheduled time when recovery trigger is fired

I'm using Quartz.NET 2.1.2 in my project. In most cases ICronTrigger is being used (for example one of the triggers is set to fire every day at 4 AM). Because it is crucial not to skip job execution, each job is created with RequestRecovery set to…
4
votes
1 answer

What is the correct mongo schema design for a job queue?

I would like to implement a job queue in Mongo. The entire software system is based around Mongo so it seems natural and potentially a good fit. The jobs collection stores each job state as a document. I imagine this to be an uncapped collection…
abargnesi
  • 341
  • 4
  • 13
4
votes
1 answer

how to configure gearmand with libdrizzle on linux?

I have been trying to work with persistent job queues of gearman. When I try to use libdrizzle like- gearmand -q libdrizzle --libdrizzle-host=127.0.0.1 --libdrizzle-user=gearman --libdrizzle-password=secret --libdrizzle-db=some_db…
Hussain
  • 5,057
  • 6
  • 45
  • 71
4
votes
2 answers

Spring Batch same stepnames in multiple jobs?

I'm pretty confused by naming conventions of Spring Batch using spring-batch 2.1.8.RELEASE. the main problem: 2 different Jobs, but with the same step inside (which will get different properties), which name isn't unique. If i try to run one of…
maxstreifeneder
  • 625
  • 1
  • 8
  • 19
4
votes
2 answers

Oracle: how do I take a Job offline from PL/SQL?

I need to look for a JOB by thw WHAT column. Check if it is actually running. If not take it offline and put online again to make it start immediately.
Revious
  • 7,816
  • 31
  • 98
  • 147
4
votes
2 answers

Jenkins save artifact when build failed

I want to Archive the artifacts of my program, but when the build failes he doesn't save the artifacts. Why is this? Because I only want to read the artifact when the job failed! Thanks for your response! -- Always when the job fails, I didn't get…
Danny Gloudemans
  • 2,597
  • 7
  • 39
  • 57
3
votes
1 answer

Do Jobs share EntityManagers - Play! Framework

Lets say I have three Jobs currently running, two of which are identical... so: CrawlJob job1 = new CrawlJob(); CrawlJob job2 = new CrawlJob(); CurrentJob job3 = new CurrentJob(); job1.now() job2.now() job3.now() If I do the following in…
3
votes
4 answers

Finding the job number in an exception handler

I have some Oracle jobs running. In each job I have set up a PL/SQL exception handler that sends an email to developers if there is an error encountered in the code the job runs. Is there a way for me to know in the exception handler the job number…
Sam M
  • 4,136
  • 4
  • 29
  • 42
3
votes
1 answer

How can i interrupt a live Job in Play! framework

I have tried looking, without any luck, for some kind of function to kill/interrupt a working Job in the Play! framework. Am i missing something? or did Play! actually not add this functionality?
BigFatBaby
  • 1,525
  • 9
  • 19