- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Syslog: vmunix: kthread: table is full
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
11-27-2002 07:13 AM
11-27-2002 07:13 AM
Syslog: vmunix: kthread: table is full
does anyone know this message ? I cant find anything relate to it.
I think, it's not a problem with the file table. The 'nfile' parameters has been set to 3500 and the sar command tells me:
text-sz ov proc-sz ov inod-sz ov file-sz ov
N/A N/A 207/276 0 0/476 0 1196/3512 0
Using HP-UX 11i on a N-Class machine with 4 GB Ram and 4 processors.
Greetings
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2002 07:15 AM
11-27-2002 07:15 AM
Re: Syslog: vmunix: kthread: table is full
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2002 07:17 AM
11-27-2002 07:17 AM
Re: Syslog: vmunix: kthread: table is full
This error is associated with the nkthread kernel parameter,
which specifies the maximum number of threads that all processes combined can
run, system-wide, at any given time.
You can increase the nkthread parameter or nproc, depending on how heavily threads are used by you application.
Regards,
Armin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2002 07:19 AM
11-27-2002 07:19 AM
Re: Syslog: vmunix: kthread: table is full
copies of certain portions of their process space, which requires
memory space for thread storage as well as processor and system
overhead related to managing the threads. On systems running large
threaded applications, a large number of threads may be required. The
kernel parameter max_thread_proc limits the number of threads that a
single process can create, but there may be other threaded applications
on the system that also use a large number of threads or they may have
more modest requirements.
nkthread limits the combined total number of threads that can be
running on the system at any given time from all processes on the
system. This value protects the system against being overwhelmed by a
large number of threads that exceeds normal, reasonable operation. It
protects the system against overload if multiple large applications are
running, and also protects the system from users who might maliciously
attempt to sabotage system operation by launching a large number of
threaded programs, causing resources to become unavailable for normal
system needs.
The default value allows an average of two threads per process plus an
additional system allowance. If you need to use a larger value:
* Determine the total number of threads required by each threaded
application on the system; especially any large applications.
* Determine how many and which of these will be running
simultaneously at any given time.
* Add these together and combine with a reasonable allowance for
other users or processes that might run occasionally using threads
(nproc*2 might be a useful number).
* Select a value for nkthread that is large enough to accommodate the
total, but not so large that it compromises system integrity.
On large systems with many threaded applications running
simultaneously, some experimentation may be required while using system
process-monitoring tools and programs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2002 07:20 AM
11-27-2002 07:20 AM
Re: Syslog: vmunix: kthread: table is full
nproc = (20+8*maxusers)
and
nkthread = (((nproc*7)/4)+16)
The formula is from SAM.