- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Cronjobs in different queues
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2003 01:59 AM
12-15-2003 01:59 AM
Cronjobs in different queues
Is it possible to specify the -q parameter in the commandstring?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2003 02:00 AM
12-15-2003 02:00 AM
Re: Cronjobs in different queues
i think you have to play with
queuedefs
to get it right, but i do not imagine how...
HTH,
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2003 02:07 AM
12-15-2003 02:07 AM
Re: Cronjobs in different queues
the cron queue is the c queue.
No other options. A possible workaround is to start at jobs in a specific queue from the cron. Only the atjob will be launched then from the c queue, the atjob itself will run then in the specified queue.
regards,
Thierry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2003 02:13 AM
12-15-2003 02:13 AM
Re: Cronjobs in different queues
a queue max run limit reached
appears quite frequently in the cronlog,
how come?
The crontab has 23 entrys.
Regards Gert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2003 02:58 AM
12-15-2003 02:58 AM
Re: Cronjobs in different queues
what does your queuedefs look like? Perhaps the limit for at jobs is less than 5 and the error message concerns this?
Sounds like a stupid question, but I have to ask as the standard limit is 4.
regards,
John K.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2003 06:36 PM
12-15-2003 06:36 PM
Re: Cronjobs in different queues
a.5j1n
b.2j2n90w
Due to application reasons the at-jobs are
running allday and are the only one scheduled that way, everything else is run by cron.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2003 06:49 PM
12-15-2003 06:49 PM
Re: Cronjobs in different queues
you can at least have 5 at jobs running simultaneously, but is there not the slightest possibility that an at job may be started before another has finsished, thus creating more than 5 simultanous at jobs?
regards,
John K.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2003 06:55 PM
12-15-2003 06:55 PM
Re: Cronjobs in different queues
/etc/inittab (there are reasons why we're not
using respawn)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2003 07:12 PM
12-15-2003 07:12 PM
Re: Cronjobs in different queues
it sounds then to me as if there is no check on whether an at job is already running before a new one is started up. Without knowing the detailed circumstances I have only two suggestions:
a) insert a check in each at job which prevents more than a single instance of each job running.
b) increase the number of simultaneous jobs from 5 to e.g. 15. Not very nice, but if it helps, it points to the core of the problem.
Maybe the other forum members have suggestions when they wake up.
regards,
John K.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2003 07:18 PM
12-15-2003 07:18 PM
Re: Cronjobs in different queues
It just came to my thinking that one of the progammers mentioned something about "putting a few job in the bucket" just to prevent the session from going down, I'll check with him and let you know.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2003 09:01 PM
12-16-2003 09:01 PM
Re: Cronjobs in different queues
//Gert