The system checks the disk Inode usage every 30 seconds and compares the actual Inode usage with the threshold (the default threshold is 80%). This alarm is generated when the Inode usage exceeds the threshold for several times (5 times by default) consecutively.
To change the threshold, choose O&M > Alarm > Thresholds > Name of the desired cluster > Host > Disk > Disk Inode Usage.
When the Trigger Count is 1, this alarm is cleared when the disk Inode usage is less than or equal to the threshold. When the Trigger Count is greater than 1, this alarm is cleared when the disk Inode usage is less than or equal to 90% of the threshold.
Alarm ID |
Alarm Severity |
Auto Clear |
---|---|---|
12051 |
Major |
Yes |
Name |
Meaning |
---|---|
Source |
Specifies the cluster or system for which the alarm is generated. |
ServiceName |
Specifies the service for which the alarm is generated. |
RoleName |
Specifies the role for which the alarm is generated. |
HostName |
Specifies the host for which the alarm is generated. |
PartitionName |
Specifies the disk partition for which the alarm is generated. |
Trigger Condition |
Specifies the threshold triggering the alarm. If the current indicator value exceeds this threshold, the alarm is generated. |
Data cannot be properly written to the file system.
Massive small files are stored in the disk.
Massive small files are stored in the disk.
# df -i | grep -iE "xvda2|Filesystem" Filesystem Inodes IUsed IFree IUse% Mounted on /dev/xvda2 2359296 207420 2151876 9% /
Run the for i in /*; do echo $i; find $i|wc -l; done command to query the number of files in a partition. Replace /* with the specified partition.
# for i in /srv/*; do echo $i; find $i|wc -l; done /srv/BigData 4284 /srv/ftp 1 /srv/www 13
Collect fault information.
After the fault is rectified, the system automatically clears this alarm.
None