- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ncallout table overflow
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
09-23-2002 11:09 AM
09-23-2002 11:09 AM
ncallout table overflow
nfile 40000
nproc 2596
ncallout 2612
nkthread 5000
Please suggest me what could be the reason for callout table over flow and what we need to analyze to get root cause.
Thank you all.
VK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 11:35 AM
09-23-2002 11:35 AM
Re: ncallout table overflow
PHNE_25489
PHNE_24185
PHNE_24181
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 11:39 AM
09-23-2002 11:39 AM
Re: ncallout table overflow
Here is the URL for the kernel parameters, and the description for ncallout:
http://www.docs.hp.com/hpux/onlinedocs/939/KCParms/KCparams.OverviewAll.html
ncallout specifies the maximum number of timeouts that can be scheduled by the kernel at any given time. Timeouts are used by:
alarm() system call,
setitimer() system call,
select() system call,
drivers,
uucp processes,
process scheduling.
When the system exceeds the timeout limit, it prints the following fatal error to the system console:
panic: timeout table overflow
I'm not a wizard about those system calls, but I'd try bumping up your ncallout parameter by a couple thousand and trying it again.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 11:43 AM
09-23-2002 11:43 AM
Re: ncallout table overflow
'ncallout' specifies the maximum number of timeouts the kernel can concurrently schedule. These include 'alarm()', setitimer{}', and 'select()' system calls and process scheduling.
In 11.0, 'ncallout' is based on 'nproc'. In 11.11, 'ncallout' is based on 'nkthread'. For both version of 11.x, a safe value should be:
nkthread+64
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 12:31 PM
09-23-2002 12:31 PM
Re: ncallout table overflow
Thank you for the information.
VK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2002 12:55 PM
09-23-2002 12:55 PM
Re: ncallout table overflow
Look for any runaway process, dfunct process which is filling the tables...
# ps -ef | grep defunt ..if found kill them...
rgds / james
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 02:39 AM
09-24-2002 02:39 AM
Re: ncallout table overflow
PHKL_24296:
( SR: 8606185626 CR: JAGad54828 )
When the beep duration is set to a very small value, there
is the possibility of getting a "callout table overflow"
panic if a lot of beeps are generated close together
PHKL_27024:
( SR:8606233087 CR:JAGae02311 )
System panics due to "callout table overflow" with the
following stack trace when continuous SCSI bus resets are
detected by the driver:
panic+0x14
settimeout_for_cpu+0x174
Ktimeout+0x3c
c8xx_reset_chip+0x129c
c8xx_isrRST+0x94
c8xx_isr+0x15cc
sapic_interrupt+0x2c
If you are running IDS/9000, a fix for another panic of this type is included in
IDS (J5083AA) V2.1.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 03:49 AM
09-24-2002 03:49 AM
Re: ncallout table overflow
look at this URL:
http://www.docs.hp.com/hpux/onlinedocs/939/KCParms/KCparam.Ncallout.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 03:55 AM
09-24-2002 03:55 AM
Re: ncallout table overflow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 08:04 AM
09-24-2002 08:04 AM
Re: ncallout table overflow
Thank you
VK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 08:28 AM
09-24-2002 08:28 AM
Re: ncallout table overflow
The above is taken from SAM help. Do you know the no. of callout used by your applications. May be your application is using multiple callouts from a single process. Increase that nacallout to 5000 and see the performance. I don't think that it will take much resource if you increase it.
Sandip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2002 08:30 AM
09-24-2002 08:30 AM
Re: ncallout table overflow
The above is taken from SAM help. Do you know the no. of callout used by your applications. May be your application is using multiple callouts from a single process. Increase that nacallout to 5000 and see the performance. I don't think that it will take much resource if you increase it.
After changing the nfile to 40000, have you check how much the system is using? If the usage is not more than 50% then you can reduce the nfile to 30000 and look at the performance.
Sandip