Search String: Display: Description: Sort:

Results:

References: [ +subject:/^(?:^\s*(re|sv|fwd|fw)[\[\]\d]*[:>-]+\s*)*Reducing\s+memory\s+requirements\s+for\s+high\s+extent\s+xfs\s+files\s*$/: 28 ]

Total 28 documents matching your query.

1. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: Michael Nishimoto <miken@xxxxxxxxx>
Date: Tue, 05 Jun 2007 15:23:50 -0700
We changed the way we do memory allocation to avoid needing large contiguous chunks of memory a bit over a year ago; that solved the main OOM problem we were getting reported with highly fragmented f
/archives/xfs/2007-06/msg00078.html (10,976 bytes)

2. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: Vlad Apostolov <vapo@xxxxxxx>
Date: Wed, 06 Jun 2007 09:11:05 +1000
We changed the way we do memory allocation to avoid needing large contiguous chunks of memory a bit over a year ago; that solved the main OOM problem we were getting reported with highly fragmented f
/archives/xfs/2007-06/msg00081.html (11,736 bytes)

3. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: Vlad Apostolov <vapo@xxxxxxx>
Date: Wed, 06 Jun 2007 09:17:24 +1000
We changed the way we do memory allocation to avoid needing large contiguous chunks of memory a bit over a year ago; that solved the main OOM problem we were getting reported with highly fragmented f
/archives/xfs/2007-06/msg00082.html (12,201 bytes)

4. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: David Chinner <dgc@xxxxxxx>
Date: Wed, 6 Jun 2007 11:36:01 +1000
..... Oh, that problem. The issue is that allocation beyond EOF (the normal way we prevent fragmentation in this case) gets truncated off on file close. Even NFS request is processed by doing: open w
/archives/xfs/2007-06/msg00085.html (11,917 bytes)

5. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: Vlad Apostolov <vapo@xxxxxxx>
Date: Wed, 06 Jun 2007 12:00:28 +1000
David Chinner wrote: On Tue, Jun 05, 2007 at 03:23:50PM -0700, Michael Nishimoto wrote: David Chinner wrote: On Wed, May 30, 2007 at 09:49:38AM -0700, Michael Nishimoto wrote: Hello, Has anyone done
/archives/xfs/2007-06/msg00087.html (13,112 bytes)

6. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: Vlad Apostolov <vapo@xxxxxxx>
Date: Wed, 06 Jun 2007 12:05:11 +1000
Vlad Apostolov wrote: No, Dave is right. The example worked because the extent hint was the same size as the filesystem block. Regards, Vlad Note - i don't think extent size hints alone will help as
/archives/xfs/2007-06/msg00088.html (10,902 bytes)

7. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: Michael Nishimoto <miken@xxxxxxxxx>
Date: Wed, 06 Jun 2007 10:18:14 -0700
..... Oh, that problem. The issue is that allocation beyond EOF (the normal way we prevent fragmentation in this case) gets truncated off on file close. Even NFS request is processed by doing: open w
/archives/xfs/2007-06/msg00096.html (14,316 bytes)

8. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: David Chinner <dgc@xxxxxxx>
Date: Thu, 7 Jun 2007 09:47:23 +1000
..... So has the community - there may even be patches floating around... That's not a problem for slowly growing log files - they will eventually use the space. I'm not saying that the truncate shou
/archives/xfs/2007-06/msg00097.html (14,805 bytes)

9. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: David Chinner <dgc@xxxxxxx>
Date: Mon, 25 Jun 2007 12:47:46 +1000
If you've got 10TB of free space, the allocator should be doing a better job than that ;) Yes, that is a fair observation. The first case is really only a concern when the maximum extent size (8GB on
/archives/xfs/2007-06/msg00323.html (12,220 bytes)

10. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: Michael Nishimoto <miken@xxxxxxxxx>
Date: Fri, 22 Jun 2007 16:58:06 -0700
Yes, that's fragmented - it has 4 orders of magnitude more extents than optimal - and the extents are too small to allow reads or writes to acheive full bandwidth on high end raid configs.... Fair e
/archives/xfs/2007-06/msg00331.html (10,639 bytes)

11. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: Nathan Scott <nscott@xxxxxxxxxx>
Date: Tue, 26 Jun 2007 11:26:15 +1000
Hi Mike, This seems a flawed way to look at this to me - in practice, almost noone would have files that large. While filesystem sizes increase and can be expected to continue to increase, I'd expect
/archives/xfs/2007-06/msg00356.html (10,816 bytes)

12. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: Michael Nishimoto <miken@xxxxxxxxx>
Date: Tue, 05 Jun 2007 15:23:50 -0700
We changed the way we do memory allocation to avoid needing large contiguous chunks of memory a bit over a year ago; that solved the main OOM problem we were getting reported with highly fragmented f
/archives/xfs/2007-06/msg00571.html (10,976 bytes)

13. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: Vlad Apostolov <vapo@xxxxxxx>
Date: Wed, 06 Jun 2007 09:11:05 +1000
We changed the way we do memory allocation to avoid needing large contiguous chunks of memory a bit over a year ago; that solved the main OOM problem we were getting reported with highly fragmented f
/archives/xfs/2007-06/msg00574.html (11,736 bytes)

14. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: Vlad Apostolov <vapo@xxxxxxx>
Date: Wed, 06 Jun 2007 09:17:24 +1000
We changed the way we do memory allocation to avoid needing large contiguous chunks of memory a bit over a year ago; that solved the main OOM problem we were getting reported with highly fragmented f
/archives/xfs/2007-06/msg00575.html (12,201 bytes)

15. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: David Chinner <dgc@xxxxxxx>
Date: Wed, 6 Jun 2007 11:36:01 +1000
..... Oh, that problem. The issue is that allocation beyond EOF (the normal way we prevent fragmentation in this case) gets truncated off on file close. Even NFS request is processed by doing: open w
/archives/xfs/2007-06/msg00578.html (11,917 bytes)

16. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: Vlad Apostolov <vapo@xxxxxxx>
Date: Wed, 06 Jun 2007 12:00:28 +1000
David Chinner wrote: On Tue, Jun 05, 2007 at 03:23:50PM -0700, Michael Nishimoto wrote: David Chinner wrote: On Wed, May 30, 2007 at 09:49:38AM -0700, Michael Nishimoto wrote: Hello, Has anyone done
/archives/xfs/2007-06/msg00580.html (13,112 bytes)

17. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: Vlad Apostolov <vapo@xxxxxxx>
Date: Wed, 06 Jun 2007 12:05:11 +1000
Vlad Apostolov wrote: No, Dave is right. The example worked because the extent hint was the same size as the filesystem block. Regards, Vlad Note - i don't think extent size hints alone will help as
/archives/xfs/2007-06/msg00581.html (10,902 bytes)

18. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: Michael Nishimoto <miken@xxxxxxxxx>
Date: Wed, 06 Jun 2007 10:18:14 -0700
..... Oh, that problem. The issue is that allocation beyond EOF (the normal way we prevent fragmentation in this case) gets truncated off on file close. Even NFS request is processed by doing: open w
/archives/xfs/2007-06/msg00589.html (14,316 bytes)

19. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: David Chinner <dgc@xxxxxxx>
Date: Thu, 7 Jun 2007 09:47:23 +1000
..... So has the community - there may even be patches floating around... That's not a problem for slowly growing log files - they will eventually use the space. I'm not saying that the truncate shou
/archives/xfs/2007-06/msg00590.html (14,805 bytes)

20. Re: Reducing memory requirements for high extent xfs files (score: 1)
Author: David Chinner <dgc@xxxxxxx>
Date: Mon, 25 Jun 2007 12:47:46 +1000
If you've got 10TB of free space, the allocator should be doing a better job than that ;) Yes, that is a fair observation. The first case is really only a concern when the maximum extent size (8GB on
/archives/xfs/2007-06/msg00813.html (12,220 bytes)


This search system is powered by Namazu