Unix and Linux Discussions Tagged with run |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
32 |
283,162 |
Shell Programming and Scripting |
|
|
|
2 |
3,733 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
5,055 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
5,587 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,057 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,203 |
Shell Programming and Scripting |
|
|
|
6 |
2,889 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,497 |
Shell Programming and Scripting |
|
|
|
2 |
5,800 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
3,634 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,531 |
Shell Programming and Scripting |
|
|
|
5 |
3,758 |
Shell Programming and Scripting |
|
|
|
1 |
5,036 |
Solaris |
|
|
|
14 |
5,144 |
Shell Programming and Scripting |
|
|
|
0 |
4,760 |
Shell Programming and Scripting |
|
|
|
4 |
4,328 |
Shell Programming and Scripting |
|
|
|
4 |
3,944 |
Shell Programming and Scripting |
|
|
|
5 |
3,652 |
Shell Programming and Scripting |
|
|
|
3 |
2,313 |
Shell Programming and Scripting |
|
|
|
5 |
7,043 |
Shell Programming and Scripting |
|
|
|
0 |
3,852 |
Shell Programming and Scripting |
|
|
|
0 |
1,984 |
UNIX and Linux RSS News |
|
|
|
2 |
8,756 |
Shell Programming and Scripting |
|
|
|
4 |
36,559 |
Shell Programming and Scripting |
|
|
|
1 |
4,146 |
Programming |
|
|
|
0 |
1,739 |
Software Releases - RSS News |
|
|
|
3 |
4,842 |
HP-UX |
|
|
|
0 |
1,995 |
Solaris BigAdmin RSS |
|
|
|
13 |
8,352 |
UNIX for Advanced & Expert Users |
|
|
|
12 |
13,092 |
Programming |
|
|
|
2 |
13,054 |
Solaris |
|
|
|
4 |
4,441 |
HP-UX |
|
|
|
0 |
3,154 |
UNIX for Advanced & Expert Users |
|
|
|
15 |
45,519 |
IP Networking |
|
|
|
2 |
6,980 |
Programming |
|
|
|
10 |
6,417 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,504 |
Solaris |
|
|
|
1 |
4,443 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
2,679 |
Security Advisories (RSS) |
|
|
|
2 |
5,726 |
Cybersecurity |
queuedefs(4) File Formats queuedefs(4)
NAME
queuedefs - queue description file for at, batch, and cron
SYNOPSIS
/etc/cron.d/queuedefs
DESCRIPTION
The queuedefs file describes the characteristics of the queues managed by cron(1M). Each non-comment line in this file describes one queue.
The format of the lines are as follows:
q.[njobj][nicen][nwaitw]
The fields in this line are:
q The name of the queue. a is the default queue for jobs started by at(1); b is the default queue for jobs started by batch (see
at(1)); c is the default queue for jobs run from a crontab(1) file.
njob The maximum number of jobs that can be run simultaneously in that queue; if more than njob jobs are ready to run, only the first
njob jobs will be run, and the others will be run as jobs that are currently running terminate. The default value is 100.
nice The nice(1) value to give to all jobs in that queue that are not run with a user ID of super-user. The default value is 2.
nwait The number of seconds to wait before rescheduling a job that was deferred because more than njob jobs were running in that job's
queue, or because the system-wide limit of jobs executing has been reached. The default value is 60.
Lines beginning with # are comments, and are ignored.
EXAMPLES
Example 1 A sample file.
#
#
a.4j1n
b.2j2n90w
This file specifies that the a queue, for at jobs, can have up to 4 jobs running simultaneously; those jobs will be run with a nice value
of 1. As no nwait value was given, if a job cannot be run because too many other jobs are running cron will wait 60 seconds before trying
again to run it.
The b queue, for batch(1) jobs, can have up to 2 jobs running simultaneously; those jobs will be run with a nice(1) value of 2. If a job
cannot be run because too many other jobs are running, cron(1M) will wait 90 seconds before trying again to run it. All other queues can
have up to 100 jobs running simultaneously; they will be run with a nice value of 2, and if a job cannot be run because too many other jobs
are running cron will wait 60 seconds before trying again to run it.
FILES
/etc/cron.d/queuedefs queue description file for at, batch, and cron.
SEE ALSO
at(1), crontab(1), nice(1), cron(1M)
SunOS 5.11 1 Mar 1994 queuedefs(4)