scheduled-tasks Questions

12

I have written a few C# apps that I have running via windows task scheduler. They are running successfully (as I can see from the log files that they are writing ) but windows task scheduler shows ...
Maleeny asked 5/2, 2013 at 16:0

2

I'm new to Google Cloud and would like to know best use cases on how to schedule queries and export them to Google Cloud Storage. I've seen documentations on how to manually export data but couldn'...
Otilia asked 4/11, 2017 at 14:48

4

Is there a way to start or stop a task scheduled using Spring Scheduled Tasks initialized using context file or @Scheduled annotation? I would like to start the task when required and stop it when...
Tychonn asked 18/8, 2011 at 12:29

2

Solved

So I'm using an AzCopy which is run manually at the moment but I was to run it through Task Scheduler on one of our servers. This copies files from one container to another and runs perfectly if I ...
Saluki asked 3/7, 2017 at 13:23

7

Solved

I have a ruby on rails app in which I'm trying to find a way to run some code every few seconds. I've found lots of info and ideas using cron, or cron-like implementations, but these are only accu...
Katinka asked 12/11, 2012 at 23:7

4

Solved

I'm trying to create a Scheduled Task with the following Trigger: - Startup - Run every 5 minutes - Run indefinitely In the GUI I can do this easily by selecting: - Begin the task: at startup...
Stereotomy asked 2/12, 2017 at 19:49

5

We are trying to develop a true lambda-based application in which certain tasks need to be performed at schedules of variable frequencies. They are actually polling for data, and at certain times o...

6

Solved

I set up a scheduled task to run under my account. Everything it runs, even if it is successful, returns an operational code of (2). I looked this up this error code at the below link, and it claim...
Eleen asked 18/10, 2012 at 22:56

4

Solved

I need to execute my PHP code every minute. Is there any way to do that?
Lecturer asked 5/10, 2009 at 19:29

6

Solved

I have a requirement to run a batch job at a fixed interval and have the ability to change the time of this batch job at runtime. For this I came across @Scheduled annotation provided under Spring ...
Subhead asked 6/3, 2013 at 15:8

4

Solved

I'm developing an ASP.NET web application. There is some functionality I need to trigger every 10 minutes. So currently I'm considering a 'scheduled task' or to create a Windows service to call the...
Barca asked 3/4, 2014 at 2:25

6

I'm trying to schedule my C# program to run on Windows scheduler. I'm using, Windows 7 Professional. I can create the task security options set to run whether or not the user is logged in, g...
Tensiometer asked 10/1, 2013 at 13:41

6

Solved

I have been looking around for examples on how to implement a function that allows you to execute tasks at a certain time in Go, but I couldn't find anything. I implemented one myself and I am sha...
Marcenemarcescent asked 23/10, 2013 at 18:7

5

If i want a method to repeat async, can i use @Scheduled and @Async together ? @Async @Scheduled(fixedDelay = x) public void doSomethingEveryXMinuteAsync() { // action } or is there another s...
Preconception asked 27/2, 2017 at 10:6

8

Solved

Run a batch file from Task Scheduler is not working with a java command inside the .bat file. If I run the .bat file manually its working good. Here is the simple .bat file I'm trying to schedule ...
Tailband asked 10/10, 2013 at 19:32

2

Solved

Good morning, I'm working with a Windows 7 computer. I would like my computer to warn me about something I may not forget, at every time I log off from my system. In order to do this, I am thinking...
Casein asked 1/12, 2015 at 10:1

3

Solved

My application is based on spring boot. I want to create a task which should be run only once after application has been started. Currently, I am looking into two solutions: Using @Scheduled an...
Micrometeorite asked 10/8, 2016 at 6:57

2

In my python program, I would like it to run a piece of code at a pre-defined time every weekday, let say 2pm Mon - Fri. How may I do it please?
Pastille asked 28/4, 2017 at 0:53

5

I need to design a Redis-driven scalable task scheduling system. Requirements: Multiple worker processes. Many tasks, but long periods of idleness are possible. Reasonable timing precision. Mini...
Farrago asked 3/6, 2012 at 7:10

1

Solved

Is it allowed / working to have multiple @Scheduled annotations at one method? @Scheduled(cron = "0 5 0 * * *", zone = "Europe/Stockholm") @Scheduled(fixedRate = 1000 * 60 * 20,...
Rabbinism asked 5/5, 2021 at 9:32

4

Solved

For my application I create jobs and schedule them with CronTriggers. Each job has only one trigger and both the job name and the trigger names are the same. No jobs share a trigger. Now when i cr...
Alti asked 19/12, 2009 at 18:2

6

Solved

I have some tasks that are executed with the help of Java Quartz Jobs, but I need to stop some tasks by some condition in my code. I read that this can be done via InterruptableJob. But i didn't un...
Smithy asked 23/8, 2011 at 9:45

19

Solved

I've searched on SO and found answers about Quartz.net. But it seems to be too big for my project. I want an equivalent solution, but simpler and (at best) in-code (no external library required). H...
Grappling asked 14/7, 2010 at 4:14

2

Solved

When you run a powershell window in the background, how do you re-connect to it? Or instead, is it's output intended to be viewed via log file at that point?
Deandre asked 13/8, 2012 at 20:45

6

Solved

I have code where I schedule a task using java.util.Timer. I was looking around and saw ExecutorService can do the same. So this question here, have you used Timer and ExecutorService to schedule t...
Lifton asked 3/1, 2009 at 21:54

© 2022 - 2024 — McMap. All rights reserved.