- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: i-node percentages
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
Forums
Discussions
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
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-14-2000 08:15 AM
09-14-2000 08:15 AM
Why would the percent used by greater than 100%? Would this indicate a performance issue? And, how best to correct.
Thanks,
Mike
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2000 08:26 AM
09-14-2000 08:26 AM
Re: i-node percentages
As to performance issues, the number of inodes in use does not have a direct relationship to perormance. It certainly might be an indication that your filesystem might be becoming congested which might lead to increased time for directory seeks which can have a performance impact, but this is certainly not one of the first places I look for tuning.
In general, a vxfs file system will automatically allocate new inodes when the current allotment is exhausted (Unless a hard limit was set with mkfs at filesystem creation), so using all available inodes on a vxfs filesystem is not usually a concern. An hfs filesystem, however, has a static inode max which will not allow new files to be created once it is reached. Approaching 100% inode use on an hfs filesystem is an area of concern.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2000 08:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2000 08:32 AM
09-14-2000 08:32 AM
Re: i-node percentages
You must have a very large number of very small files to have exhausted the inode count before filling the actual file system.
If the percentage is near 100 (say 101) I would assume that you are seeing a rounding error in the calculation.
I also assume that your filesytem is journaled (vxfs), in which case inode numbers are unlimited by default. Inodes in this case are created as long as there are free blocks of disk available. See the man page for 'mkfs_vxfs' for more information.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2000 08:33 AM
09-14-2000 08:33 AM
Re: i-node percentages
Thanks,
Actual I-node Numbers:
/home (/dev/vg00/lvol4 ) : 251648 total i-nodes
52269 free i-nodes
199379 used i-nodes
381 % i-nodes used
/apps/vision/spool2 (/dev/vg00/lv_spool2 ) : 2527964 total i-nodes
940846 free i-nodes
1587118 used i-nodes
168 % i-nodes used
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2000 08:47 AM
09-14-2000 08:47 AM
Re: i-node percentages
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2000 08:52 AM
09-14-2000 08:52 AM
Re: i-node percentages
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2000 08:54 AM
09-14-2000 08:54 AM
Re: i-node percentages
Thanks for the help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2000 08:56 AM
09-14-2000 08:56 AM
Re: i-node percentages
Interesting. Your numbers don't generate the correct percentages! Equally interesting when I looked on one of my servers, df -i reported 77% used for /usr but bdf -i reported (correctly) only 44%. I've never used df, always bdf.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2000 09:02 AM
09-14-2000 09:02 AM
Re: i-node percentages
If possible, I would try unmounting the filesystems and remounting them to see what df and bdf reported then.
VXFS filesystems by default are created with 'unlimited' i-nodes. This means that when you use up all the ones created initially, more can be created dynamically. I wonder if this could have happened and confused 'df'.
The other possibility is that it's a bug in 'df' but I can't find any known problem.