home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / unix / question / 10921 < prev    next >
Encoding:
Text File  |  1992-09-10  |  1.6 KB  |  39 lines

  1. Newsgroups: comp.unix.questions
  2. Path: sparky!uunet!cis.ohio-state.edu!magnus.acs.ohio-state.edu!usenet.ins.cwru.edu!ukma!kherron
  3. From: kherron@ms.uky.edu (Kenneth Herron)
  4. Subject: Re: at(1) command fails
  5. References: <1992Sep10.161250.13257@cbnewsm.cb.att.com>
  6. Message-ID: <1992Sep10.152538.3908@ms.uky.edu>
  7. Distribution: usa
  8. Date: Thu, 10 Sep 1992 19:25:38 GMT
  9. Organization: University Of Kentucky, Dept. of Math Sciences
  10. Lines: 27
  11.  
  12. sfs@cbnewsm.cb.att.com (salvatore.savastano) writes:
  13.  
  14. >I use the at(1) command to schedule up to about 1000 jobs at 1 minute intervals
  15.  
  16. >occasionally at(1) starts spitting out an extra message 
  17. >with each job scheduled and continues to do so until the end.  
  18. >    ...
  19. >    at: error in message send
  20. >    job 716077800.a at Wed Sep  9 16:30:00 1992
  21. >    at: error in message send
  22. >    job 716077860.a at Wed Sep  9 16:31:00 1992
  23. >    at: error in message send
  24.  
  25. At and crontab use a FIFO to communicate with the cron daemon.  Each
  26. message is 26 bytes or more, depending on how a struct gets padded.  
  27. The "error in message send" message is printed if the write() into the 
  28. FIFO fails, suggesting that you're submitting enough jobs at once to 
  29. fill up the FIFO.
  30.  
  31. The cheap solution is not to submit so many jobs at once.  However,
  32. my guess is there's a simpler way to launch these processes without
  33. queuing up so many at jobs.
  34. -- 
  35. Kenneth Herron                                           kherron@ms.uky.edu
  36. University of Kentucky                                      +1 606 257 2975
  37. Department of Mathematics           "Thanks to the magic of the slow-motion 
  38. camera, we can now show you how ugly the inside of someone's mouth can be."
  39.