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

hashicorp nomad .. why my app is not connecting to the database (Postgres , golang api) provider="nomad"

Help required.. I tried in many ways but unfortunately app is not connecting to the database. DB_CONN is the env variable that app is expecting service provider is nomad. so it must be a simple service discovery. Created two groups in same job…
0
votes
1 answer

How can I stop completed job pods to be restarted after scale down

I’m executing k8s indexed job with completions=30, parallelism=30 on azure kubernetes service. Its pods have big memory request so need one node for each pod. When I deployed the job, scale up of nodes happen. Some pods complete fastly. After…
pandora2000
  • 463
  • 1
  • 4
  • 12
0
votes
1 answer

Result of each jenkins job and send by email

In my company I have a pipeline that runs several jobs. I wanted to get the result of each job and write each of these results in a file or variable, later email it to me. Is there such a possibility? Remembering that: I don't want the result of the…
0
votes
0 answers

Identify the retry job in Sidekiq

When a job in Sidekiq fails, it goes into retry queue and it is retried for 25 times, as per https://github.com/mperham/sidekiq/wiki/Error-Handling#automatic-job-retry. So the question is, Is there any way to find whether the job that is currently…
Learn-ing
  • 21
  • 2
0
votes
0 answers

(How) can I use job on a different pipeline?

Gitlab CI/CD I want to run a job for the Merge Request that needs jar artefacts built during a job run in another pipelines (for commits). I don't want to build them again because if takes too much time then the job will fail. Can I do that? I…
mehrlicht
  • 75
  • 1
  • 11
0
votes
1 answer

Quartz Misfire handling with CronoScheduler

I've setup a chrono Job using Quartz library for .NET. Basically, I want a job scheduled every hour and every day at a specific minute (i.e. 10). This is done simply with this chrono expression 0 10 * ? * * *, but how can I achieve the following…
alex
  • 380
  • 3
  • 8
0
votes
3 answers

Laravel Job error Job is incomplete class

I'm getting an error I don't know how to fix so I wondering if I could get some help. My function: dispatch(new \App\Jobs\createSqlJob($databaseName, $data['company_name'])); This is the error: | 2022-12-13 21:36:38 | Exception: Job…
nhoxhocju
  • 11
  • 2
0
votes
1 answer

How to suspend a process just before it prints it's output in C?

I am trying to implement background jobs in C for my shell. The problem is it prints the output next to my prompt like this: user@hostmachine:/.../$: [output] I have now learnt that "stty tostop" helps suspend process just before it's output but…
amogh
  • 15
  • 6
0
votes
0 answers

How to prevent background jobs from printing next to prompt?

I am trying to implement my own shell and am experimenting with background jobs with using WNOHANG option in waitpid. But whenever I run a command in shell it just prints the output next to my prompt like this: user@hostmachine:/.../$:…
amogh
  • 15
  • 6
0
votes
1 answer

Issues in uploading files to digital ocean spaces from laravel

It's almost 48 hours that I'm facing an issue with the files upload to Digital Ocean spaces from laravel and I can't make it work. I've successfully built a livewire component that handle the multiple upload of images, each image is stored in the…
Gianmarco
  • 69
  • 1
  • 9
0
votes
1 answer

Why handle method does not fire during job execution?

I have always used events and listeners to add tasks to the queue. Now I'm trying to use Jobs. I do it like this: my job. class eventJob implements ShouldQueue { use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; public…
0
votes
0 answers

Databricks: Jar file changed but does not reflect to cluster

I made a 'a' job with 'A' cluster and uploaded 'former.jar' file on dependent libraries. I found that I had a typo on 'former.jar' so I changed it with 'latter.jar' file on the dependent libraries. However, when I see the log I can see same error…
average
  • 1
  • 2
0
votes
1 answer

Powershell Execute program in parallel and wait end of execution

I need to execute a program (.exe) in a powershell script in a foreach loop, I need to wait the end of execution before doing some other tasks. I tried this solution, the program is launched but it's closing immediately $jobArray = New-Object…
mgn93
  • 15
  • 5
0
votes
1 answer

How to run a reusable workflow conditionnaly?

I have the following workflow in my GitHub actions: name: Tests e2e iOS App on: workflow_dispatch: inputs: skip: type: boolean required: true default: false jobs: build-simu-ios-zip: name: Build iOS…
Dimitri Kopriwa
  • 13,139
  • 27
  • 98
  • 204
0
votes
0 answers

Dolphin Scheduler : planning execution calendar

I am starting using Dolphin Scheduler for essentially executing some shell command lines within my structure. jobs are in the same workflow , but shouldn't run all at the same frequency. example : Task1 => Task2 => task3 => task4 Task1 : From monday…
SirZoro
  • 151
  • 1
  • 2
  • 10
1 2 3
99
100