A scheduler is a software component responsible for starting tasks at a given time. Many different scheduler implementations are possible, from very low-level and short-term (an operating system CPU or I/O scheduler) to high-level and long-term (a background application launcher).
0
votes
0answers
17 views
Function missing from proc.c in minix 3
I installed minix 3 on vmware player and i'm trying to find a function which as i read is in /usr/src/kernel in file "proc.c". The function is called sched().
It should be between this 2 functions:
...
1
vote
2answers
36 views
Open source Java Job Scheduler with: remoting, load balancing, failover, dependency DAG?
I'm looking for an open source Java Job Scheduler that allows sending different kind of jobs (not only flop intensive) and distributes them across many machines. It should also monitor the jobs and ...
0
votes
1answer
11 views
Executable can not send an email when called by Task Scheduler
I have written a C# .net executable that sends an email through an outlook exchange server. Everything works fine when I run it manually, but when I use a scheduled task to call the executable it ...
0
votes
1answer
40 views
file moved when system writing information in file C ++
I am not sure if this is even a valid question. I am not a master at understanding the workings of system. One of my program writes logs to a text file. Another email program runs on scheduler and ...
0
votes
0answers
26 views
Quartz + Guice seems that transacations are skiped
I'am using Quartz Scheduler in my Guice application, for some very simple job which should call some web service, and based on the response update rows in the database. The problem I have here is that ...
0
votes
0answers
12 views
What demands does fixed priority pre-emptive scheduling place on the system kernel?
In the context of real time computing tasks can be scheduled using Fixed Priority Pre-Emptive Scheduling, in that way tasks are assigned a priority based on their periods and tasks with higher ...
-3
votes
0answers
26 views
Comparison between time-slice scheduling and preemptive scheduling? [closed]
In the case of single-cpu, between time-slice scheduling and preemptive scheduling
I want to make a comparison of their degree of autonomy and sheduling cost?
Which of them does Java use ? Or in ...
0
votes
1answer
20 views
Howto setup HSQLDB schema for Quartz scheduler
I'm writing a "simple" scheduler application which uses the great Quartz Scheduling framework.
Quartz works with most database systems (MySQL, Oracle, HSQLDB, ...), which just need to be specified ...
0
votes
1answer
13 views
how to give a instance name?
I'm using a third party scheduler in my project
Here is the example, http://scheduler-net.com/docs/simple_.net_application_with_scheduler.html
public ActionResult Index()
{
...
1
vote
2answers
49 views
Strategy to alter database synonym during normal production operation
Currently I have a scenario that involves switching a synonym definition after the completion of a scheduled job. The job will create a table with an identifier of even or odd to correspond with the ...
3
votes
4answers
65 views
Windows thread scheduler is unfair?
Sometimes, when I run this simple program
#include <Windows.h>
DWORD WINAPI ThreadStart(LPVOID)
{
for (;;) { }
return 0;
}
int _tmain()
{
SetPriorityClass(GetCurrentProcess(), ...
-1
votes
0answers
10 views
Need to Schedule a task where the date and time is configured in mysql database in Jboss 4.2.3
I am looking for the configurations that are required to configure in scheduler-service.xml for Jboss 4.2.3 . I need to send a message from my web application on future date . please suggest me the ...
1
vote
1answer
47 views
Web Dynos in Heroku
I just wanted to see what the best practice in the following situation would be.
I have setup scheduler in my heroku app to run two rake tasks, (performs a screen scrape), these are ran once a day, ...
0
votes
3answers
110 views
How to switch between posix threads?
Here is what I am trying to do:
Start 10 posix threads from the main thread.
Each of the 10 threads will do some operation say 100 times.
This is what I need help with.
I want to allow thread_1 ...
0
votes
0answers
15 views
bring output of one controller in another controller -mvc
please reply to this question and sorry as i face problem posting question here i give you the link to my question i posted in this forum, kindly help
...
0
votes
0answers
23 views
Preemptive scheduler vs. Event based (HW interrupts) architecture
I am making an embedded application on a microcontroller. It's not big, nothing fancy - I want it made right though, and it has to be scalable.
I am thinking of 2 architectures, in which this ...
0
votes
1answer
31 views
Render.model in aspx
I'm working on sample program to show scheduler-net from this site:
http://scheduler-net.com/
I have a homepage developed with a controller.
Scheduler calender is in another controller.
Now i need ...
0
votes
0answers
39 views
Devexpress Scheduler: Do I have an appointment now?
I'm using the Devexpress Scheduler control to schedule staff for after-hours on call duty. When a customer calls in and leaves a voicemail, my windows service needs to look up who is scheduled to ...
0
votes
1answer
27 views
Can I get the date of the current view? (DHTMLX Scheduler)
When I load the web, the DHTMLX Scheduler load the view of current day (today). But, it's possible to get the date if I go to other past days?
For example:
Today = 02/05/2013
I go, using the left ...
0
votes
1answer
23 views
What is the easiest way to run windows cron job
I'm currently using windows 7 with apache, php, and mysql. I understand on windows, task scheduler is the equivalence of cron jobs on linux/unix systems. I'm wondering what the easiest way to run a ...
0
votes
0answers
55 views
How do I schedule a task to run at shutdown under Windows 8? [closed]
I want to run a cmd script at system shutdown on my new Windows 8 (Home. ie. not Pro) PC. Under XP I did it using the Group Policy Editor to actually set up a shutdown script, however I can't do that ...
0
votes
1answer
35 views
dhtmlx scheduler with conflicting appointment
I'm using dthtml scheduler calender,(with mvc 3)
In this demo tutorial , http://carrental-app.scheduler-net.com/
It is not allowing to book the same car for same timing period for different customers.
...
1
vote
1answer
30 views
Rake task sending email newsletters failing when using Heorku Scheduler addon
I have a rake task set up to fire once per day on a Rails app. It checks which users need a newsletter sent, then prepares the newsletter and sends it using SendGrid starter-level addon via DelayedJob ...
0
votes
0answers
45 views
Quartz not installing for Windows 8 Metro App Project
I have a problem with Quartz .Net library. I have made a research for best C# job scheduler and found out that Quartz is the best option. However, I cannot make it work with Windows 8 project. I am ...
0
votes
0answers
11 views
Programming linqdatasource queries for Telerik control
This question is hopefully not specific to just telerik controls. I am using one of their controls which is basically a scheduler. It is very simple to create a datasource and use it singularly. ...
0
votes
1answer
66 views
How to set the Dx property of DHTMLX Scheduler Timeline view using jQuery
In C#, I use this code to set the Dx property of the Timeline view
var timeline = new TimelineView("timeline", "EmployeeId");
timeline.Dx = 174;
But how can I achieve that using jQuery? I want to ...
-1
votes
0answers
42 views
Calculating amount of time slice a process consumed [closed]
I'm trying to figure the average time slice across the whole system. For this, I need to know how much time a process ran for in one scheduling period. The default timeslice here is 100 ms. I would ...
0
votes
1answer
58 views
Change Linux 3.5.0 Kernel Task Scheduler
As a project in my operating systems class we have to modify the task scheduler and change the algorithm it is using to a custom (and rather dumb, such as going by highest PID) algorithm. I have ...
0
votes
1answer
97 views
How to schedule a powershell script for automating wack process through windows scheduler?
I am able to execute the below command from PowerShell prompt and command prompt, but I am unable to schedule it using windows scheduler.
powershell script code:
appcert.exe test -apptype metrostyle ...
0
votes
0answers
50 views
Scheduler job does not execute on specified interval
I have created jira plugin scheduler job which executes specified job class.
here, i am not able to execute scheduler job on specified interval as i have defined.
Below is stuff where schedule the ...
-1
votes
1answer
82 views
Akka Scheduler(Java) - millions of ticks [closed]
I was wondering what is the maximum number of scheduled ticks can we perform with scheduler if anyone have an idea, let's say I make a system with millions of future tasks all occurring in few ...
-1
votes
1answer
36 views
Coding Logic for a scheduler [closed]
We have classrooms for rent. Each class lasts for 1hr 35minutes which includes cleanup time. We have a list of classes daily.
I want to code an auto scheduler using jquery/html/css to ...
0
votes
0answers
18 views
Can linux scheduler be off?
I started to study linux kernel some time ago, and I wonder, can someone or something turn linux kernel off? And if yes, who or what can do it and can it be useful in some cases?
0
votes
2answers
55 views
How to get installed exe file system path after scheduling in windows scheduler?
I have written in my console application a line System.IO.Path.GetFullPath("ApplicationSubDirectory") to get application directory file system path.
I build this application and installed exe in my ...
1
vote
1answer
55 views
in Linux kernel, is the following way right to create a real-time kthread?
In Linux kernel, thread schedule is as real time ones(such as SCHED_FIFO) and normal ones(SCHED_NORMAL).
If I want to create a real-time thread, how to do this? I guess like:
1,kthread_create
...
0
votes
1answer
69 views
ContinueWith taskscheduler and TaskScheduler.FromCurrentSynchronizationContext() difference?
I have a task to get products from database, and the ContinueWith action that operate some UI modification, therefore I had a problem because the Task create a new thread, and the UI modification was ...
0
votes
0answers
18 views
linux kernel process book keeping
I am trying to implement some book-keeping in linux kernel. I want to do start some logging just before a process starts executing on CPU. Again I have to update my statistics once the process yields ...
0
votes
1answer
44 views
Ruby scheduler and pauser
I'm working on a scraper for a website which closes its site/its database every night from about eleven in the evening to five in the morning. Since the scraper I'm working on takes about 70hours to ...
0
votes
1answer
69 views
Disable a Spring Scheduler Task via Property
I am scheduling a task using Spring Framework and have a cron value set through an environment specific property file. I am looking for a way to disable this task through a property so that only ...
0
votes
0answers
48 views
Set custom time in dhtmlx scheduler on dropdown change event
I am using dhtmlx scheduler.I want to set a custom time on select box change event in light box.for eg.I am having services in dropdown and specific time is assignd for every services.So on change of ...
1
vote
1answer
45 views
Context switch and the OS scheduler algorithm
So the way I understand it when one process switches out for another a Kernel will save out the current state of a process and then a OS scheduler algorithm will choose the next process to swap in. ...
1
vote
1answer
33 views
Any ways to park a Thread based on a free-running,system-clock-independent clock?
To make the current thread to park for a specified timeout,i can use:
LockSupport.parkNanos(long nanos);
or
Thread.sleep(long millis);//internally same as Object.wait(long) i guess.
...
0
votes
0answers
30 views
mysql scheduled recurring events not executing
as the title say . i have a total of 27 event and all of them are not working even when the scheduler is on over myphp admin. below is the code of one of my events
CREATE DEFINER=`root`@`localhost` ...
0
votes
1answer
83 views
Scheduling Mechanism in Linux Kernel 3.0+
Which Scheduling Mechanism is used with Linux Kernel (3.0+) by default, I guess Premptive Scheduling ?
Can we select some other mechanism like Deadline First or Round Robin while building (from the ...
2
votes
1answer
49 views
Does Dart have a Scheduler?
I am looking at dart from server side point of view.
Is there a scheduler that can execute isolates at a specific time or X times an hour? I am thinking on the lines of quartz in the java world.
0
votes
0answers
42 views
Manual override for spring scheduler (using annotations)
I have a spring ws client where i have scheduled my services to run the client using annotations @Scheduled .
How can i provide a manual override so that i can start and stop the service in between ...
0
votes
0answers
15 views
Suitable timer for different slot times
I have a program in which time is divided into repeating frames, and each frame is divided into a certain number of slots, and each slot is variable in period. The length of the time slot will be read ...
0
votes
0answers
19 views
What is a typical tick interrupt duration in terms of CPU percentage?
In many RTOS's the tick interrupt activates the scheduler which checks if higher priority task is ready to run and if so, performs a context switch.
I wander what is a typical duration of the tick ...
1
vote
1answer
64 views
Passing Address to user space from Kernel space
I am working on linux-3.7.6/kernel/sched/core.c where in schedule() function I have to record the pid's and tgid's for processes and have to show the recorded values to user space. I took global array ...
0
votes
0answers
112 views
Task Scheduler with 2 console apps in it not writing log file
I have a scheduled task with 2 console apps in it. When the task runs, it executes correctly, but neither of the log files are written to their respective directory. When I run the console apps ...





