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
1 answer

Is there a Sun Grid Engine / queuing / batch job management command that pauses job submissions at a particular time point then restarts them later?

I apologize in advance if this is a naïve question as I'm still fairly new to using commands like qstat to manage jobs on a queue. I have several hundred jobs that I want to run but vary in how long the processes take to completion. My cluster will…
florence-y
  • 751
  • 3
  • 8
  • 18
0
votes
1 answer

ScriptRunConfig failing with exit code: 1

The same environment is used for my pipeline steps and they are running fine but the Script Run Config fails every time with same error. We are using the SDK v1. "Creating conda environment failed with exit code: 1" Python version used- 3.8 added as…
0
votes
0 answers

Laravel mailJob not showing up in telescope

I send email with MailJob class. But i dont see any job in telescope jobs section. How can i fix that? Here is my LoginListener class which i send email when user login public function handle(Login $event) { //return dd($event->user->email); …
0
votes
0 answers

Install dependencies on job clusters?

I am trying to install the dependency located at https://mvnrepository.com/artifact/com.crealytics/spark-excel on my job cluster so that I can read from excel file in my code. Could you please help me how I can ensure that any dependency for my ETL…
0
votes
2 answers

Laravel Dispatching Jobs aren't actually being dispatched

I am running into an issue since I switched to Redis for the queue in Laravel. I am dispatching jobs, but they arent always being picked up in the queue. I am testing this by dispatching the job in Tinker with a separate command line running php…
Markwow
  • 141
  • 9
0
votes
1 answer

Text header not getting added when using laravel job dispatch

I am adding X-SMTPAPI header for sendgrid category. The header is getting added fine when I dispatch the job using dispatch_now but when I use dispatch only the header is not getting added. Code for dispatching the job: Route::get('send-test-email',…
dev_sk
  • 85
  • 1
  • 9
0
votes
0 answers

An error occurred while calling .pyWriteDynamicFrame. YEAR

I am encountering problems in my AWS Glue as it is stated in the title (also attached the error) error. Different jobs, return different error number code such as: An error occurred while calling o176.pyWriteDynamicFrame. YEAR and another returns An…
aya
  • 1
  • 1
0
votes
0 answers

Failed to resolve: com.firebase:firebase-jobdispatcher:0.8.5

I am using Android Studio Chipmunk. I will use Parse in my application. But I am getting such an error. Please help because I could not find it. I use the .. id 'com.android.application' version '7.2.0' apply false id 'com.android.library' version…
0
votes
1 answer

Laravel holt a queued job

We are creating an application using laravel like example.com. On our application, there is a post api "example.com/api/order-place". In this api, we store some data on our database and send a successful response to our customer. We also call a…
Hasan Hafiz Pasha
  • 1,402
  • 2
  • 17
  • 25
0
votes
1 answer

Azure Databricks - monitor job cluster for up or down status

Anyone has a way to monitor a group of job clusters in Azure Databricks? We just want to make sure the job cluster are up and running, maybe have a Dashboard or Workbook in Azure that can be red or green depending on the status of the job…
mac
  • 307
  • 2
  • 17
0
votes
1 answer

Use script who use functions stocked in another ps1 with Start-job

I'm trying a little WPF interface with powershell for compare two files. For do that, I want start 2 jobs with script who was stocked in "Jobs.ps1" Param( $PathFile1, $PathFile2, $Json ) $Hash = CreateHashConverted -Path $PathFile1…
Aomichi
  • 57
  • 5
0
votes
0 answers

charge payment after 5 minutes

I have a function a stripe function that slashes the price of a product, and I am trying to charge the newly slashed price after 5 minutes. in my checkoutController I have public function secondHalf($id){ // fetch the price $productprice =…
dev opia
  • 1
  • 1
0
votes
0 answers

Node js persistent job scheduler with database layer

I have an express backend and I need to schedule jobs for months or even years ahead, but I couldn't find a persistent solution, I need the jobs to be there even if I change servers. I have seen agenda.js which has a persistent layer based on…
Abdullah Qasemi
  • 449
  • 1
  • 12
0
votes
0 answers

Lightweight General Purpose Job Scheduler/Execution Engine in Java

We have been using Apache Spark jobs launched via Apache Livy for running some jobs. Because of the reduced scale requirements, we no longer need to use Spark. I am looking for a general-purpose lightweight JAVA job scheduler with the ability to…
swap310
  • 768
  • 2
  • 8
  • 22
0
votes
2 answers

Sessions are locking each other while direct insert into subpartition with name of subpartition specified

We have a one large table that we need to insert data of it into another table. Target table is partitioned by range (by day) and subpartitioned by departments. For loading table data, we have used dbms_parallelel_execute and created a task using…
Sherzodbek
  • 170
  • 1
  • 20