Questions tagged [job-scheduling]

A job scheduler is a computer application for controlling unattended background program execution (commonly called batch processing).

Today's job schedulers, often termed workload automation, typically provide a graphical user interface and a single point of control for definition and monitoring of background executions in a distributed network of computers. Increasingly, job schedulers are required to orchestrate the integration of real-time business activities with traditional background IT processing across different operating system platforms and business application environments.

1328 questions
-1
votes
1 answer

Is there a way that we can manage PgAgent Jobs on a C#/.NET application? Any library or third party tool? (PostgreSQL)

We know that there is SQL Server Agent, functions as Job Scheduler, in MSSQL. If we want to manage jobs on Server Agent, with a C#/.NET application, we can use Microsoft.SqlServer.Management.Smo library and start a connection between two (SQL Server…
Selenay
  • 3
  • 1
-1
votes
1 answer

Why Jobs on laravel crashes my computer when I'm using linux? but works fine when I'm using Windows?

I have been a laravel developer for 1 year already..Before I used laravel on Windows but since I use Linux..I have a Big problem on Jobs in laravel..every time I start a Job on linux my machine crashes.. but on windows everything works fine. //my…
Level
  • 1
  • 1
-1
votes
1 answer

How to use 2 strings for a command in crontab?

According to this one https://stackoverflow.com/a/51693399/16705688 2 strings are needed to schedule a cronjob every 36 hours How do I put them to run a command in crontab -e since usually it's 1 string per command
-1
votes
1 answer

Create Cron Expression for Bi-Weekly(Every 2 weeks) Thursday

I am looking for a CRON expression which should run every 2 weeks on Thursday. As an e.g. if I execute the JOB on June 24th Thursday , next execution should be on July 8th THU, next is JULY 22nd THU, AUGUST 5th and so on.
Nanda
  • 159
  • 1
  • 13
-1
votes
1 answer

Cron job ubuntu on range hours

I need cron job to run every hour between 9am to 11 pm every days, i use ubuntu. I try with: 50 9 * * py script 50 10 * * py script 50 11 * * py script ... 50 23 * * py script its posible, only 1 line command?
pedroooo
  • 563
  • 1
  • 4
  • 17
-1
votes
1 answer

NPM cronJob - dynamically set time

here is my code for scheduling a task. i have used separate routes for starting,stopping and changing the time as given below. please tell me if its correct. and also im getting an error for changing the time frequency.please help me. const…
-1
votes
1 answer

Whats the difference between the Job and JobDetail exactly in Quartz?

Why Quartz came up with separate class like JobDetail? when they can accommodate all properties in Job class only Is it a implementation flaw from the authors?
omkar sirra
  • 696
  • 10
  • 28
-1
votes
2 answers

What is the Algorithm should i use to maximize the number of tasks (with deadlines) that i can do?

I have many tasks, each task defined by the day that I can start working on and the last day that task is still valid to do, each task done withing one day, not more, I can do one task per day. The tasks with the deadlines as described in the below…
Henka Programmer
  • 727
  • 7
  • 25
-1
votes
1 answer

How to store routings in job shop production in Anylogic

I have a production model were the orders (agent population) run different stations. For each order the used stations and its sequence can be different. There are 12 different combinations of these stations. One random possibility should be assigned…
Anne
  • 1
  • 1
-1
votes
1 answer

How to run Job Scheduler daily in the evening

I want to run my job using Job Scheduler daily. I already looked at setPeriodic(long intervalMillis) but don't know how to use it to run the job daily in evening around 7:00PM (although not exact 7:00) public void scheduleJob(View view){ …
-1
votes
1 answer

I want the cron job to run the script weekly basis

I am trying to setup a cron job on a Ubuntu server. I want the cron job to run the script on weekly basis. Problem is - It should be a working day, If im mentioning it with time interval, it fails during weekoffs - Need an Schedular Exp which has to…
-1
votes
1 answer

Nurse Scheduling for Shifts with Different Lengths

I am trying to adapt the shift scheduling problem from this code to use shifts with different lengths, but I didn't succeed any of my attempts to do. What is the best approach to include this feature? In the code, we input the type of shitfs in the…
-1
votes
1 answer

GUI type application for Scheduling Jobs

Is there any Python library or framework that provide scheduling of Jobs in windows having GUI. By jobs, I mean some batch files or Python scripts. An application where edit, create and deletion of jobs are available. I have tried and looked a lot…
Ishwar Jangid
  • 279
  • 2
  • 17
-1
votes
1 answer

I need some example of long term scheduler and short term scheduler

I have search some information about scheduler,and I can find many scheduler algorithm,but I fail to find which are long term schedulers,and which are short term scheduler. For example,I know what is short job first scheduler algorithm,but I don't…
-1
votes
1 answer

Scheduled Job In Parse.com

I want to run Cloud Code with scheduled Job in Parse.(sashido.io) randomMentor function picks the some object in my Class with random number and saving it Today Class. When I call this method from Swift via PF.Cloud.callFunctionInBackground it works…