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

Paagent job doesn't run

In pgadmin (6.8) on MacBook, I right click a job, then choose "Run now" option, but nothing happened. Looks like the job is stopped. How to restart it? much appreciated!
Eric
  • 303
  • 1
  • 8
  • 19
0
votes
0 answers

Merge jobs when they are being handled (to reduce requests to a 3rd party service)

I'm building an API using Laravel that has an endpoint /api/keyword. Clients can use that API to request statistics about given keywords (provided as a query parameter). Those statistics are coming from a 3rd party service that has uses throttling…
Niels Mouthaan
  • 1,010
  • 8
  • 19
0
votes
0 answers

[Laravel]Phpunit testing Bus chain ReflectionClass error

I wanted in my laravel app in some job to run three jobs one by one, so I used Bus:chain like in code below Bus::chain([ new CarJob( $this->carService, $this->userRepository, …
Isild
  • 107
  • 1
  • 11
0
votes
1 answer

Get Id file uploaded google drive job queue laravel

i am making an image storage function with laravel job queue via googledrive. i am trying to initialize and store my photo. It works with the code: $filePut = file_get_contents($this->path); Storage::cloud()->put($this->name, $filePut); but i…
0
votes
1 answer

Talend DI 8.01 - logging twarn of sub-job into the logcatcher database

I have a main with a sub-job (tRunJob). Both Stats & Logs are set identically with "Use Project Setting" flag Both use copious tWarn to monitor many key components. The system record in the database all the activities in the main Job but none for…
0
votes
1 answer

How can i set the jenkins job to pass when the test are actually failed

I'm trying to do something similar to what this guy is doing: Jenkins failed build: I Want it to pass create a pipeline job in Jenkins for all the Known bugs tests, I want the job to PASS when all the tests are FAILED. while when even 1 test is…
Noy M
  • 303
  • 1
  • 4
  • 13
0
votes
1 answer

Why cmd doesnt keep shell script processes alive?

I have a powershell script, that starts x number of Jobs. If I start it from powershell, the processes stays alive, but if start from cmd, after the script finishes every process stops. The only way I can keep the processes alive, is to put Sleep in…
0
votes
1 answer

How to prevent a job from running when the branch is different from release/

I am working with gitlab ci and I need the job to run only when the branch is release/ and if it is any other branch the job will not run. I have tried to do it in many ways but none of them works, I would appreciate if you could help me, because I…
Iñigo
  • 3
  • 2
0
votes
0 answers

Persist changes to AssemblyInfo.Version.cs between Gitlab CI/CD jobs

I am trying to append my assembly version with the Gitlab pipeline's ID before a build like so: set_version_job: variables: GIT_CLEAN_FLAGS: none stage: build script: - '$content = Get-Content -Path…
0
votes
0 answers

Laravel job failed method and throwing errors – multiple error logs

working on a somewhat complex job in Laravel but hitting something I can't get my head around. We are getting 2 errors logged (using Flare for our logging) but we only want to have 1 error – it seems to log once for the exception thrown and another…
0
votes
0 answers

limt job create count to a pod (service account ? rbac? OPA?)

I want to limit the number of job creations in my Kubernetes namespace per specific service account. jobs are created by another pod using this service account. do you think this is something possible? my kubernetes version: v1.21.11 I tried to do…
opa
  • 1
0
votes
0 answers

logrotate using lastaction with long running jobs

I'm using logrotate with lastaction in order to do stuff with the last rotated file. The job is very long and I don't know if this is the reason but since I added this script the logs are no longer rotated and I have to kill the cron.daily…
gduh
  • 1,079
  • 12
  • 30
0
votes
0 answers

Creating a Jenkins job in REST API

Im trying to create a Jenkins job from the terminal I downloaded the config file of another project without issues curl -X GET --user :/ http://:/job//config.xml -o mylocalconfig.xml the…
0
votes
0 answers

Why does my laravel job fails with "No query results for model"?

I have a batch that calculates a score for many models. There is a horizon worker that process the batch, and most of the times, it runs with success. However, sometimes, a job CalculateFieldScores fails with the message No query results for model…
naghal
  • 537
  • 3
  • 19
0
votes
0 answers

get Openshift job state inside another job

I'm new in Kubernates/Openshift. I was wondering if that was possible to read a job state from another job. -> job 1 : some work on a database with the help of some deployed pods. -> job 2 : database dump and exposing it elsewhere, once the job 1 is…
Pierre-Gilles Levallois
  • 4,161
  • 4
  • 28
  • 37
1 2 3
99
100