job-scheduling Questions

3

(Most of the questions asked here about this subject are a bit old, and I was wondering what had change in the Node ecosystem it all those years.) I'm basically looking to implement a job qu...
Alfaro asked 4/3, 2016 at 8:5

2

Solved

What is a "MySQL event"? What is its purpose? How is it different from a "job scheduler"? Many posts on SO, and the MySQL documentation, describe how to implement MySQL events, but I am just inter...
Monck asked 29/1, 2012 at 21:35

7

Solved

I have a MySQL database. I am running two MySQL EVENTs. I need to get rid of one. I don't remember it's name. What do I do?
Overcritical asked 29/1, 2012 at 22:55

6

My team maintains an application (written on Java) which processes long running batch jobs. These jobs needs to be run on a defined sequence. Hence, the application starts a socket server on a pre-...
Chaeta asked 14/1, 2023 at 9:20

8

Solved

We have a Spring Boot application, and have scheduled tasks. We want to deploy our application on multiple servers, so will be multiple instances of application. How to configure Spring to run sc...
Cantilena asked 28/3, 2018 at 11:38

3

Solved

In spring boot, can I schedule a spring job by not using @Scheduled annotation to a method? I am working with spring job in the spring boot. I want to schedule a job by using cron expression, but ...
Paleoecology asked 8/7, 2019 at 15:26

2

Many time I have seen some of our autosys jobs go into status: Pending Machine. What is the meaning of this status? And its generally the com job and not the box job that goes into this status (box...
Soler asked 8/8, 2013 at 6:19

5

Solved

I am trying to setup a DBMS_SCHEDULER Job to run exactly at 1 AM on 1st of January every year on Oracle 11g. How to setup its attributes to be absolutely sure it wont get executed in wrong hour, be...
Grindle asked 15/1, 2014 at 15:25

1

Which one is the correct syntax for running a job at every hour? 0 0 * * * * 0 0 */1 * * * Also how are they both different?
Grays asked 25/11, 2021 at 7:46

3

Solved

I have created SSIS package which is running successfully and dumping the data to the required place. But the same package results in the error when i run it through job. I googled n got these link...
Jetport asked 27/5, 2013 at 4:43

2

$schedule->call(function () { error_log("Line Schedule 1:Start"); //Send Email error_log("Line Schedule 1:End"); })->everyFiveMinutes()->name('event_name:1')->withoutOverlapping(...
Vaginismus asked 1/1, 2016 at 10:46

1

Solved

Hope you guys are doing great. I implemented BullMQ (next major version of Bull) into my nodejs project to schedule the jobs to send emails. For example, send email of forget password request. So, ...
Spectra asked 15/10, 2020 at 7:12

4

Solved

How can I run a job created in Jenkins every one minute ? Am I missing anything? PS: I'm trying not to use: */1 * * * *
Central asked 30/4, 2015 at 18:59

3

I am looking to replace Quartz as a job scheduler in our project. We already use Redis with cluster support as a distributed cache layer and we thought that maybe we could use Redis for job schedul...
Agrobiology asked 25/3, 2016 at 14:13

8

Solved

I am trying to automate a VBScript by using Windows Task Scheduler. However, I tried to use cscript.exe + "C:\...\script.vbs" but it didn't run. I also tried to directly run the same command in CMD...
Cahan asked 16/4, 2015 at 0:49

4

Solved

Are there any open source Job Scheduler with REST API for commercial use which will support features like: Tree like Job dependency Hold & Release Rerun failed steps Parallelism Help would ...
Idol asked 5/12, 2013 at 7:7

2

Solved

I have scheduled a Job via using Hangfire library. My scheduled Code like below. BackgroundJob.Schedule(() => MyRepository.SomeMethod(2),TimeSpan.FromDays(7)); public static bool DownGradeUser...
Yippie asked 8/8, 2018 at 21:42

10

Solved

I have a process that is already running for a long time and don't want to end it. How do I put it under nohup (that is, how do I cause it to continue running even if I close the terminal?)
Atory asked 9/3, 2009 at 8:33

3

Solved

I have a Quartz job which is scheduled with a collection of triggers and it has 3 to 5 minutes of execution time. But at any moment in the future(it may be a week later or a couple of minutes later...
Arbitrary asked 2/5, 2013 at 9:19

1

Solved

I try to implement Bull queue in Typescript and NestJS, my code: @Injectable() export class MailService { constructor( @InjectQueue('mail') private readonly mailQueue: Queue ) {} async addToQ...

3

I am trying to implement my first JobService. I understand that a call to onStartJob is practically guaranteed (yes there are some edges if I specify some outrageous requirements without an expirat...
Territerrible asked 7/6, 2016 at 21:19

5

Solved

I have been of late trying out apache spark. My question is more specific to trigger spark jobs. Here I had posted question on understanding spark jobs. After getting dirty on jobs I moved on to my...

4

Solved

What is the difference between DBMS_JOB and DBMS_SCHEDULER ?
Mundford asked 11/11, 2010 at 7:8

4

Solved

In this Job Sequencing Problem, how do we prove that the solution which greedy approach will provide is a optimal one? Moreover, I am also not able to figure out the O(n) solution as the author l...
Trout asked 13/1, 2015 at 11:59

0

I am using Celery 4.3.0. I am trying to update the schedule of celery beat every 5 seconds based on a schedule in a json file, so that when I’m manually editing, adding or deleting scheduled tasks ...
Mandorla asked 17/7, 2019 at 6:48

© 2022 - 2024 — McMap. All rights reserved.