The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Advanced & Expert Users
.
google unix.com



UNIX for Advanced & Expert Users Expert-to-Expert. Learn advanced UNIX, UNIX commands, Linux, Operating Systems, System Administration, Programming, Shell, Shell Scripts, Solaris, Linux, HP-UX, AIX, OS X, BSD.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Sockets and File descriptors gstlouis High Level Programming 3 12-12-2005 07:36 AM
File descriptors problem perplexing me tmarikle Shell Programming and Scripting 5 01-26-2005 11:13 AM
file descriptors a25khan UNIX for Dummies Questions & Answers 3 01-27-2004 07:46 PM
File Descriptors shibz UNIX for Advanced & Expert Users 3 12-18-2002 10:12 AM
File Descriptors s_chordia High Level Programming 2 12-24-2001 11:45 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 05-22-2007
matrixmadhan matrixmadhan is offline Forum Advisor  
Technorati Master
  
 

Join Date: Mar 2005
Location: leaf node in B+ tree
Posts: 2,958
File Descriptors + cron

Hi All,

This thread is going to be a discussion basically bringing out more information from the experts on cron jobs and the associated file handles.

So, here is the question.

There is definitely a constant ' n ' as the maximum number of file handles alloted to a process ' p '.

Will there be any difference, if the process ' p ' is running as a foreground process or as a process spawned by cron daemon; in the maximum number of file handles that is be alloted to the process ?

If so why is the difference, or basically what are the constraints placed over the process spawned by the cron daemon to that of a process running as a foreground process kicked of from the terminal ?

Thanks!
  #2 (permalink)  
Old 05-22-2007
porter porter is offline Forum Advisor  
Registered User
  
 

Join Date: Jan 2007
Posts: 2,965
Depending on the operating system the number of file descriptors per process is fixed in the kernel at compile time or configured with a parameter.

In terms of what makes any process different to UNIX it would be limited really to the following...

1. does it have a controlling terminal attached

2. is it's parent dead

3. is it dead, then it's a zombie and has no memory, no file descriptors and just a minimal entry in the process list.

There are other process wide details such as priority, effective user etc, but not much that makes a process different, even case 2 merely means replace it's parent pid with '1'.

Number of file descriptors is unlikely to change.
  #3 (permalink)  
Old 05-22-2007
Perderabo's Avatar
Perderabo Perderabo is offline Forum Staff  
Unix Daemon
  
 

Join Date: Aug 2001
Location: Ashburn, Virginia
Posts: 9,127
The exact particulars vary depending on OS. I will use HP-UX as an example. The number of possible file decriptors is under the control of setrlimit(2). (A less powerful interface, ulimit() is also available.) A process cannot have more fd's than the "soft" limit . Using setrlimit(2), a process may raise or lower its soft limit. But a process cannot raise the soft limit above the hard limit. A process can lower the hard limit. Only a root process can raise the hard limit. Kernel parameters define the initial value of the hard and soft limit. Even root cannot raise the hard limit above the initial value for the hard limit. The kernel paramters:
maxfiles
maxfiles_lim

I have cheated a little bit by picking HP-UX as my sample OS. HP-UX allows dynamic reconfiguration of the kernel. Only root can reconfigure the kernel. But a root process could, in theory, raise maxfiles_lim and then raise its hard limit and then relower maxfiles_lim. Not all versions of Unix give that much power to a root process.

I don't believe that cron fiddles with these limits.
  #4 (permalink)  
Old 05-23-2007
jim mcnamara jim mcnamara is offline Forum Staff  
...@...
  
 

Join Date: Feb 2004
Location: NM
Posts: 5,789
By default stdin, stdout, and stderr are file descriptors opened during process creation.
If the file limit is 16, for example, then the process has 13 files descriptors to play with.

In shell scripts, redirection uses up file descriptors. Once the line "doing" the redirection has been completed the file descriptor is closed ie: ls * > myfile.txt. Redirecting blocks of code, like a loop, use up a file descriptor over many lines of code.

Code:
for file in `ls /path`
do
     cat $file
done > myfiles.txt

Cron jobs run without a tty, stdin is the script.
  #5 (permalink)  
Old 05-23-2007
matrixmadhan matrixmadhan is offline Forum Advisor  
Technorati Master
  
 

Join Date: Mar 2005
Location: leaf node in B+ tree
Posts: 2,958
Quote:
By default stdin, stdout, and stderr are file descriptors opened during process creation.
If the file limit is 16, for example, then the process has 13 files descriptors to play with.
Jim, does that mean there wont be any difference between the number of file descriptors for the foreground process and cron jobs alloted ?
  #6 (permalink)  
Old 05-23-2007
matrixmadhan matrixmadhan is offline Forum Advisor  
Technorati Master
  
 

Join Date: Mar 2005
Location: leaf node in B+ tree
Posts: 2,958
Quote:
I don't believe that cron fiddles with these limits.
Cool! I had a weird doubt that whether there could be any differences.

Cleared

Thanks to all !!
  #7 (permalink)  
Old 05-23-2007
matrixmadhan matrixmadhan is offline Forum Advisor  
Technorati Master
  
 

Join Date: Mar 2005
Location: leaf node in B+ tree
Posts: 2,958
Quote:
Originally Posted by porter
Depending on the operating system the number of file descriptors per process is fixed in the kernel at compile time or configured with a parameter.

In terms of what makes any process different to UNIX it would be limited really to the following...

1. does it have a controlling terminal attached

2. is it's parent dead

3. is it dead, then it's a zombie and has no memory, no file descriptors and just a minimal entry in the process list.

There are other process wide details such as priority, effective user etc, but not much that makes a process different, even case 2 merely means replace it's parent pid with '1'.

Number of file descriptors is unlikely to change.

Thanks for the reply.

But my question is more related to the difference in the allocation of the file descriptors to the different process ( foreground from the terminal / background ).
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 02:28 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0