* No space left on device on xfs filesystem with 7.7TB free
@ 2011-03-26 13:41 atyu30 atyu30
2011-03-26 15:08 ` Christoph Hellwig
2011-03-26 15:34 ` Eric Sandeen
0 siblings, 2 replies; 4+ messages in thread
From: atyu30 atyu30 @ 2011-03-26 13:41 UTC (permalink / raw)
To: xfs
[-- Attachment #1.1: Type: text/plain, Size: 1291 bytes --]
I'm running RedHat Linux Enterprise Server 5.2, on a 64-bit x86_64 Linux
machine with kernel version 2.6.18-128.el5 smp. I appear to have version
2.9.4 of xfsprogs.
I have a 22TB xfs filesystem ,Yesterday, the hard disk is full, today
released a 7.7T disk space.But still can not write to new file.
software ambience:
[root@Production data5]# uname -a
Linux Production 2.6.18-128.el5 #1 SMP Wed Jan 21 10:41:14 EST 2009 x86_64
x86_64 x86_64 GNU/Linux
[root@Production data5]# rpm -qa | grep xfs
xfsprogs-2.9.4-1.el5.centos
xorg-x11-xfs-1.0.2-4
kmod-xfs-0.4-2
problem:
[root@Production data5]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 48G 6.7G 39G 15% /
/dev/sda2 81G 4.0G 73G 6% /opt
/dev/sdb1 22T 15T 7.7T 65% /data2
tmpfs 2.0G 0 2.0G 0% /dev/shm
[root@Production data5]# df -i
Filesystem Inodes IUsed IFree IUse% Mounted on
/dev/sda1 12812288 136847 12675441 2% /
/dev/sda2 21867648 8440 21859208 1% /opt
/dev/sdb1 23429382016 4625792 23424756224 1% /data2
tmpfs 504701 1 504700 1% /dev/shm
[root@Production data5]# touch test.log
touch: cannot touch `test.log': No space left on device
[-- Attachment #1.2: Type: text/html, Size: 1427 bytes --]
[-- Attachment #2: Type: text/plain, Size: 121 bytes --]
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: No space left on device on xfs filesystem with 7.7TB free
2011-03-26 13:41 No space left on device on xfs filesystem with 7.7TB free atyu30 atyu30
@ 2011-03-26 15:08 ` Christoph Hellwig
2011-03-26 15:34 ` Eric Sandeen
1 sibling, 0 replies; 4+ messages in thread
From: Christoph Hellwig @ 2011-03-26 15:08 UTC (permalink / raw)
To: atyu30 atyu30; +Cc: xfs
On Sat, Mar 26, 2011 at 09:41:15PM +0800, atyu30 atyu30 wrote:
> I'm running RedHat Linux Enterprise Server 5.2, on a 64-bit x86_64 Linux
> machine with kernel version 2.6.18-128.el5 smp. I appear to have version
> 2.9.4 of xfsprogs.
RHEL5.2 does not include XFS support, so you must have gotten an
unssuported module from somewhere. If you need to use XFS with
RHEL upgrade to a version that officially supports it.
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: No space left on device on xfs filesystem with 7.7TB free
2011-03-26 13:41 No space left on device on xfs filesystem with 7.7TB free atyu30 atyu30
2011-03-26 15:08 ` Christoph Hellwig
@ 2011-03-26 15:34 ` Eric Sandeen
2011-03-27 13:25 ` Timothy Sesow
1 sibling, 1 reply; 4+ messages in thread
From: Eric Sandeen @ 2011-03-26 15:34 UTC (permalink / raw)
To: atyu30 atyu30; +Cc: xfs
On 3/26/11 8:41 AM, atyu30 atyu30 wrote:
>
>
> I'm running RedHat Linux Enterprise Server 5.2, on a 64-bit x86_64
> Linux machine with kernel version 2.6.18-128.el5 smp. I appear to
> have version 2.9.4 of xfsprogs.
Just as point of reference, if you're using the xfs-kmod, that is
extremely old, un-updated, and unsupported at this point.
> I have a 22TB xfs filesystem ,Yesterday, the hard disk is full, today
> released a 7.7T disk space.But still can not write to new file.
You have probably run out of 32-bit inode space on your 27T filesystem.
> software ambience:
>
> [root@Production data5]# uname -a Linux Production 2.6.18-128.el5 #1
> SMP Wed Jan 21 10:41:14 EST 2009 x86_64 x86_64 x86_64 GNU/Linux
>
> [root@Production data5]# rpm -qa | grep xfs
> xfsprogs-2.9.4-1.el5.centos xorg-x11-xfs-1.0.2-4 kmod-xfs-0.4-2
>
that's X11, not the filesystem, for what it's worth :)
>
> problem:
>
> [root@Production data5]# df -h Filesystem Size Used Avail
> Use% Mounted on /dev/sda1 48G 6.7G 39G 15% /
> /dev/sda2 81G 4.0G 73G 6% /opt /dev/sdb1
> 22T 15T 7.7T 65% /data2 tmpfs 2.0G 0 2.0G
> 0% /dev/shm
>
> [root@Production data5]# df -i Filesystem Inodes IUsed
> IFree IUse% Mounted on /dev/sda1 12812288 136847 12675441
> 2% / /dev/sda2 21867648 8440 21859208 1% /opt
> /dev/sdb1 23429382016 4625792 23424756224 1% /data2
> tmpfs 504701 1 504700 1% /dev/shm
>
> [root@Production data5]# touch test.log touch: cannot touch
> `test.log': No space left on device
If your applications can handle > 32-bit inode numbers, mount -o inode64
and see if you can create the new file.
hm, we should maybe printk in this case, it comes up often enough.
-Eric
>
>
> _______________________________________________ xfs mailing list
> xfs@oss.sgi.com http://oss.sgi.com/mailman/listinfo/xfs
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: No space left on device on xfs filesystem with 7.7TB free
2011-03-26 15:34 ` Eric Sandeen
@ 2011-03-27 13:25 ` Timothy Sesow
0 siblings, 0 replies; 4+ messages in thread
From: Timothy Sesow @ 2011-03-27 13:25 UTC (permalink / raw)
To: xfs
I had the same problem recently and couldn't go to
inode64, so I put a writeup at
http://osvault.blogspot.com/2011/03/fixing-1tbyte-inode-problem-in-xfs-file.html
on what I did to find the files in the lower allocation groups
and move them.
On 03/26/2011 09:34 AM, Eric Sandeen wrote:
> On 3/26/11 8:41 AM, atyu30 atyu30 wrote:
>>
>> I'm running RedHat Linux Enterprise Server 5.2, on a 64-bit x86_64
>> Linux machine with kernel version 2.6.18-128.el5 smp. I appear to
>> have version 2.9.4 of xfsprogs.
> Just as point of reference, if you're using the xfs-kmod, that is
> extremely old, un-updated, and unsupported at this point.
>
>> I have a 22TB xfs filesystem ,Yesterday, the hard disk is full, today
>> released a 7.7T disk space.But still can not write to new file.
> You have probably run out of 32-bit inode space on your 27T filesystem.
>
>> software ambience:
>>
>> [root@Production data5]# uname -a Linux Production 2.6.18-128.el5 #1
>> SMP Wed Jan 21 10:41:14 EST 2009 x86_64 x86_64 x86_64 GNU/Linux
>>
>> [root@Production data5]# rpm -qa | grep xfs
>> xfsprogs-2.9.4-1.el5.centos xorg-x11-xfs-1.0.2-4 kmod-xfs-0.4-2
>>
> that's X11, not the filesystem, for what it's worth :)
>
>> problem:
>>
>> [root@Production data5]# df -h Filesystem Size Used Avail
>> Use% Mounted on /dev/sda1 48G 6.7G 39G 15% /
>> /dev/sda2 81G 4.0G 73G 6% /opt /dev/sdb1
>> 22T 15T 7.7T 65% /data2 tmpfs 2.0G 0 2.0G
>> 0% /dev/shm
>>
>> [root@Production data5]# df -i Filesystem Inodes IUsed
>> IFree IUse% Mounted on /dev/sda1 12812288 136847 12675441
>> 2% / /dev/sda2 21867648 8440 21859208 1% /opt
>> /dev/sdb1 23429382016 4625792 23424756224 1% /data2
>> tmpfs 504701 1 504700 1% /dev/shm
>>
>> [root@Production data5]# touch test.log touch: cannot touch
>> `test.log': No space left on device
> If your applications can handle> 32-bit inode numbers, mount -o inode64
> and see if you can create the new file.
>
> hm, we should maybe printk in this case, it comes up often enough.
>
> -Eric
>>
>> _______________________________________________ xfs mailing list
>> xfs@oss.sgi.com http://oss.sgi.com/mailman/listinfo/xfs
> _______________________________________________
> xfs mailing list
> xfs@oss.sgi.com
> http://oss.sgi.com/mailman/listinfo/xfs
>
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-03-27 13:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-26 13:41 No space left on device on xfs filesystem with 7.7TB free atyu30 atyu30
2011-03-26 15:08 ` Christoph Hellwig
2011-03-26 15:34 ` Eric Sandeen
2011-03-27 13:25 ` Timothy Sesow
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox