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

Pull Down Amortizations in a Pyramid Style

I work at a company and have been tasked with creating a macro to pull down amortizations for each period in a pyramid style similar to the style below. I can not use actual numbers for privacy reasons. Is there any macros that can be used that…
0
votes
1 answer

Laravel's console command: dispatchSync is not sync

Context: Laravel 8 webapp and console command running on debian 11 wit php 7.4 I've a job dispatched by events and listeners and so on when user is using our webapp. To test and for scheduled purposes we have also a console command that is…
realtebo
  • 23,922
  • 37
  • 112
  • 189
0
votes
1 answer

Scrape Indeed for Jobs + Save To A CSV File

I'm new to Python and trying to scrape Indeed for remote data analyst positions and send them to a csv file. I purposely added code to get past an SSL Certificate issue I've been facing. The results say I have jobs added to my file, but nothing…
EpicMe
  • 1
0
votes
2 answers

Restarting Kubernetes job

I'm working with Kubernetes 1.26 on the server side (EKS) and kubectl client 1.27.1. I have a job define in this way: apiVersion: batch/v1 kind: Job metadata: name: build spec: template: spec: restartPolicy: Never volumes: …
david.perez
  • 6,090
  • 4
  • 34
  • 57
0
votes
0 answers

Pathfinding with Unity Jobs and Burst is slower than without

I tried to implement pathfinding to my game in Unity, based on videos and improving on its code. To get more efficient with multi-threading, I would like to implement Unity Jobs, but as it is my first time to do it, I got some interesting…
Zwiebel
  • 1,605
  • 4
  • 21
  • 37
0
votes
0 answers

RabbitMQ StreamLostError with Pika when jobs are long

I have a python service which aims to run long tasks jobs (some can take like 5 minutes). I run the long task and at the end i send the ack. I figured out that longer the job is, more chance I have to get the error: connection_lost:…
BastienSander
  • 1,718
  • 4
  • 24
  • 50
0
votes
1 answer

Limit Requests to an External API in Laravel Using Job and Queue

I am using Laravel 6 and I have an external API. I want to limit the requests to this API to one request per 10 seconds.This API is called inside a job. How can I achieve this?
xnor
  • 11
  • 1
  • 5
0
votes
0 answers

Memory Leak in Cloud Run Job

I have a Cloud Run job already deployed on GCP. It's basically a bounch of python scripts that downloads ~140+ *.zip or *.rar files from the web into a ./tmp directory within the archive filesystem, extracts them into the same directory using the…
Nachengue
  • 376
  • 1
  • 2
  • 11
0
votes
0 answers

How to configure "on the 2nd and 17th of each month and every 3 hours these days" with Cron Job in Java?

I want to set a cron job time: on the 2nd and 17th of each month and every 3 hours these days. And first time cron job running is 01 am. after periods: 04 am, 07 am, 10 am, 1 pm, 4 pm, 7pm, 10pm. Just 2 days. For instance: 2 May and 17 May. 2 June…
0
votes
0 answers

Jenkins shared-library in job dsl

I want to use shared-library in my job dsl process, but it does not support the @Library. @Library('shared-library') def pipelineTemplate = { //String[] strArray = ${stages}.split(" ") pipelineJob("${serviceName}-pipeline", { …
0
votes
0 answers

How to implement pgAgent Jobs in PostgreSQL 15?

What do I have to do so that PostgreSQL 15 using pgAdmin shows me the "pgAgent Jobs" section? It is not enough to create the extension and update, unlike PostgreSQL 12. PostgreSQL 12 PostgreSQL 15
0
votes
0 answers

Can not download file in then function of Queue job in laravel 9

return statement is not allowed in batch success call Queue laravel. In this code, first I generate and store the csv file in the public/csv folder, and on success, I try to download that file, but I cannot. In the log file, there is a log, and I…
Antonio
  • 11
  • 3
0
votes
0 answers

How are timezone / daylight saving changes handled in launchd so that job is consistently executed at specific time of day?

How can I ensure my launch agent / scheduled job always runs at 20:30 UTC? This should be independent of where the computer is located daylight savings changes current server timezone, etc I know there is a way to schedule jobs via the start…
maxipaddy
  • 11
  • 1
  • 3
0
votes
1 answer

How can I manually trigger a job via dropwizard-jobs

We have jobs set up for our dropwizard project via the dropwizard jobs library. We want to add some functionality to allow to us to trigger these jobs manually. Does anyone know how to do this? If there is no way to do this, is there some way that…
Abu Jafar
  • 3
  • 2
0
votes
1 answer

Airflow: Schedule a cron job every first thursday of the month in morning

I am planning to schedule airflow job every first, second and third thursday of the month and 8am ET. I am looking for cron job schedule 0 15 * * 4 [ $(date +\%d) -le 7 ] && command I tried above but not sure how [ $(date +\%d) -le 7 ] && command…
SSD
  • 21
  • 4