From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751924Ab0CSKJi (ORCPT ); Fri, 19 Mar 2010 06:09:38 -0400 Received: from gir.skynet.ie ([193.1.99.77]:49083 "EHLO gir.skynet.ie" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750947Ab0CSKJg (ORCPT ); Fri, 19 Mar 2010 06:09:36 -0400 Date: Fri, 19 Mar 2010 10:09:18 +0000 From: Mel Gorman To: KOSAKI Motohiro Cc: Andrew Morton , Andrea Arcangeli , Christoph Lameter , Adam Litke , Avi Kivity , David Rientjes , Rik van Riel , linux-kernel@vger.kernel.org, linux-mm@kvack.org Subject: Re: [PATCH 10/11] Direct compact when a high-order allocation fails Message-ID: <20100319100917.GR12388@csn.ul.ie> References: <1268412087-13536-1-git-send-email-mel@csn.ul.ie> <1268412087-13536-11-git-send-email-mel@csn.ul.ie> <20100319152105.8772.A69D9226@jp.fujitsu.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <20100319152105.8772.A69D9226@jp.fujitsu.com> User-Agent: Mutt/1.5.17+20080114 (2008-01-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Mar 19, 2010 at 03:21:31PM +0900, KOSAKI Motohiro wrote: > > @@ -1765,6 +1766,31 @@ __alloc_pages_direct_reclaim(gfp_t gfp_mask, unsigned int order, > > > > cond_resched(); > > > > + /* Try memory compaction for high-order allocations before reclaim */ > > + if (order) { > > + *did_some_progress = try_to_compact_pages(zonelist, > > + order, gfp_mask, nodemask); > > + if (*did_some_progress != COMPACT_INCOMPLETE) { > > + page = get_page_from_freelist(gfp_mask, nodemask, > > + order, zonelist, high_zoneidx, > > + alloc_flags, preferred_zone, > > + migratetype); > > + if (page) { > > + __count_vm_event(COMPACTSUCCESS); > > + return page; > > + } > > + > > + /* > > + * It's bad if compaction run occurs and fails. > > + * The most likely reason is that pages exist, > > + * but not enough to satisfy watermarks. > > + */ > > + count_vm_event(COMPACTFAIL); > > + > > + cond_resched(); > > + } > > + } > > + > > Hmm..Hmmm........... > > Today, I've reviewed this patch and [11/11] carefully twice. but It is harder to ack. > > This patch seems to assume page compaction is faster than direct > reclaim. but it often doesn't, because dropping useless page cache is very > lightweight operation, Two points with that; 1. It's very hard to know in advance how often direct reclaim of clean page cache would be enough to satisfy the allocation. 2. Even if it was faster to discard page cache, it's not necessarily faster when the cost of reading that page cache back-in is taken into account Lumpy reclaim tries to avoid dumping useful page cache but it is perfectly possible for hot data to be discarded because it happened to be located near cold data. It's impossible to know in general how much unnecessary IO takes place as a result of lumpy reclaim because it depends heavily on the system-state when lumpy reclaim starts. > but page compaction makes a lot of memcpy (i.e. cpu cache > pollution). IOW this patch is focusing to hugepage allocation very aggressively, but > it seems not enough care to reduce typical workload damage. > What typical workload is making aggressive use of high order allocations? Typically when such a user is found, effort is spent on finding alternatives to high-orders as opposed to worrying about the cost of allocating them. There was a focus on huge page allocation because it was the most useful test case that was likely to be encountered in practice. I can adjust the allocation levels to some other value but it's not typical for a system to make very aggressive use of other orders. I could have it use random orders but also is not very typical. > At first, I would like to clarify current reclaim corner case and how > vmscan should do at this mail. > > Now we have Lumpy reclaim. It is very excellent solution for externa > fragmentation. In some situations, it can grind a system to trash for a time. What is far more likely is to be dealing with a machine with no swap - something that is common in clusters. In this case, lumpy is a lot less likely to succeed unless the machine is very quiet. It's just not going to find the contiguous page cache it needs to discard and anonymous pages get in the way. > but unfortunately it have lots corner case. > > Viewpoint 1. Unnecessary IO > > isolate_pages() for lumpy reclaim frequently grab very young page. it is often > still dirty. then, pageout() is called much. > > Unfortunately, page size grained io is _very_ inefficient. it can makes lots disk > seek and kill disk io bandwidth. > Page-based IO like this has also been reported as being a problem for some filesystems. When this happens, lumpy reclaim potentially stalls for a long time waiting for the dirty data to be flushed by a flusher thread. Compaction does not suffer from the same problem. > Viewpoint 2. Unevictable pages > > isolate_pages() for lumpy reclaim can pick up unevictable page. it is obviously > undroppable. so if the zone have plenty mlocked pages (it is not rare case on > server use case), lumpy reclaim can become very useless. > Also true. Potentially, compaction can deal with unevictable pages but it's not done in this series as it's significant enough as it is and useful in its current form. > Viewpoint 3. GFP_ATOMIC allocation failure > > Obviously lumpy reclaim can't help GFP_ATOMIC issue. > Also true although right now, it's not possible to compact for GFP_ATOMIC either. I think it could be done on some cases but I didn't try for it. High-order GFP_ATOMIC allocations are still something we simply try and avoid rather than deal with within the page allocator. > Viewpoint 4. reclaim latency > > reclaim latency directly affect page allocation latency. so if lumpy reclaim with > much pageout io is slow (often it is), it affect page allocation latency and can > reduce end user experience. > Also true. When allocation huge pages on a normal desktop for example, it scan stall the machine for a number of seconds while reclaim kicks in. With direct compaction, this does not happen to anywhere near the same degree. There are still some stalls because as huge pages get allocated, free memory drops until pages have to be reclaimed anyway. The effects are a lot less prononced and the operation finishes a lot faster. > I really hope that auto page migration help to solve above issue. but sadly this > patch seems doesn't. > How do you figure? I think it goes a long way to mitigating the worst of the problems you laid out above. > Honestly, I think this patch was very impressive and useful at 2-3 years ago. > because 1) we didn't have lumpy reclaim 2) we didn't have sane reclaim bail out. > then, old vmscan is very heavyweight and inefficient operation for high order reclaim. > therefore the downside of adding this page migration is hidden relatively. but... > > We have to make an effort to reduce reclaim latency, not adding new latency source. I recognise that reclaim latency has been reduced but there is a wall. The cost of reading the data back in will always be there and on swapless systems, it might simply be impossible for lumpy reclaim to do what it needs. > Instead, I would recommend tightly integrate page-compaction and lumpy reclaim. > I mean 1) reusing lumpy reclaim's neighbor pfn page pickking up logic There are a number of difficulties with this. I'm not saying it's impossible, but the win is not very clear-cut and there are some disadvantages. One, there would have to be exceptions for kswapd in the path because it really should continue reclaiming. The reclaim path is already very dense and this would add significant compliexity to that path. The second difficulty is that the migration and free block selection algorithm becomes a lot harder, more expensive and identifying the exit conditions presents a significant difficultly. Right now, the selection is based on linear scans with straight-forward selection and the exit condition is simply when the scanners meet. With the migration scanner based on LRU, significant care would have to be taken to ensure that appropriate free blocks were chosen to migrate to so that we didn't "migrate from" a block in one pass and "migrate to" in another (the reason why I went with linear scans in the first place). Identifying when the zone has been compacted and should just stop is no longer as straight-forward either. You'd have to track what blocks had been operated on in the past which is potentially a lot of state. To maintain this state, an unknown number structures would have to be allocated which may re-enter the allocator presenting its own class of problems. Third, right now it's very easy to identify when compaction is not going to work in advance - simply check the watermarks and make a calculation based on fragmentation. With a combined reclaim/compaction step, these type of checks would need to be made continually - potentially increasing the latency of reclaim albeit very slightly. Lastly, with this series, there is very little difference between direct compaction and proc-triggered compaction. They share the same code paths and all that differs is the exit conditions. If it was integrated into reclaim, it becomes a lot less straight-forward to share the code. > 2) do page > migration instead pageout when the page is some condition (example active or dirty > or referenced or swapbacked). > Right now, it is identifed when pageout should happen instead of page migration. It's known before compaction starts if it's likely to be successful or not. > This patch seems shoot me! /me die. R.I.P. ;-) > That seems a bit dramatic. Your alternative proposal has some significant difficulties and is likely to be very complicated. Also, there is nothing to say that this mechanism could not be integrated with lumpy reclaim over time once it was shown that useless migration was going on or latencies were increased for some workload. This patch seems like a far more rational starting point to me than adding more complexity to reclaim at the outset. > btw please don't use 'hugeadm --set-recommended-min_free_kbytes' at testing. It's somewhat important for the type of stress tests I do for huge page allocation. Without it, fragmentation avoidance has trouble and the results become a lot less repeatable. > To evaluate a case of free memory starvation is very important for this patch > series, I think. I slightly doubt this patch might invoke useless compaction > in such case. > I can drop the min_free_kbytes change but the likely result will be that allocation success rates will simply be lower. The calculations on whether compaction should be used or not are based on watermarks which adjust to the value of min_free_kbytes. > At bottom line, the explict compaction via /proc can be merged soon, I think. > but this auto compaction logic seems need more discussion. > My concern would be that the compaction paths would then be used very rarely in practice and we'd get no data on how direct compaction should be done. -- Mel Gorman Part-time Phd Student Linux Technology Center University of Limerick IBM Dublin Software Lab From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail143.messagelabs.com (mail143.messagelabs.com [216.82.254.35]) by kanga.kvack.org (Postfix) with ESMTP id 60D996B00C4 for ; Fri, 19 Mar 2010 06:09:39 -0400 (EDT) Date: Fri, 19 Mar 2010 10:09:18 +0000 From: Mel Gorman Subject: Re: [PATCH 10/11] Direct compact when a high-order allocation fails Message-ID: <20100319100917.GR12388@csn.ul.ie> References: <1268412087-13536-1-git-send-email-mel@csn.ul.ie> <1268412087-13536-11-git-send-email-mel@csn.ul.ie> <20100319152105.8772.A69D9226@jp.fujitsu.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <20100319152105.8772.A69D9226@jp.fujitsu.com> Sender: owner-linux-mm@kvack.org To: KOSAKI Motohiro Cc: Andrew Morton , Andrea Arcangeli , Christoph Lameter , Adam Litke , Avi Kivity , David Rientjes , Rik van Riel , linux-kernel@vger.kernel.org, linux-mm@kvack.org List-ID: On Fri, Mar 19, 2010 at 03:21:31PM +0900, KOSAKI Motohiro wrote: > > @@ -1765,6 +1766,31 @@ __alloc_pages_direct_reclaim(gfp_t gfp_mask, unsigned int order, > > > > cond_resched(); > > > > + /* Try memory compaction for high-order allocations before reclaim */ > > + if (order) { > > + *did_some_progress = try_to_compact_pages(zonelist, > > + order, gfp_mask, nodemask); > > + if (*did_some_progress != COMPACT_INCOMPLETE) { > > + page = get_page_from_freelist(gfp_mask, nodemask, > > + order, zonelist, high_zoneidx, > > + alloc_flags, preferred_zone, > > + migratetype); > > + if (page) { > > + __count_vm_event(COMPACTSUCCESS); > > + return page; > > + } > > + > > + /* > > + * It's bad if compaction run occurs and fails. > > + * The most likely reason is that pages exist, > > + * but not enough to satisfy watermarks. > > + */ > > + count_vm_event(COMPACTFAIL); > > + > > + cond_resched(); > > + } > > + } > > + > > Hmm..Hmmm........... > > Today, I've reviewed this patch and [11/11] carefully twice. but It is harder to ack. > > This patch seems to assume page compaction is faster than direct > reclaim. but it often doesn't, because dropping useless page cache is very > lightweight operation, Two points with that; 1. It's very hard to know in advance how often direct reclaim of clean page cache would be enough to satisfy the allocation. 2. Even if it was faster to discard page cache, it's not necessarily faster when the cost of reading that page cache back-in is taken into account Lumpy reclaim tries to avoid dumping useful page cache but it is perfectly possible for hot data to be discarded because it happened to be located near cold data. It's impossible to know in general how much unnecessary IO takes place as a result of lumpy reclaim because it depends heavily on the system-state when lumpy reclaim starts. > but page compaction makes a lot of memcpy (i.e. cpu cache > pollution). IOW this patch is focusing to hugepage allocation very aggressively, but > it seems not enough care to reduce typical workload damage. > What typical workload is making aggressive use of high order allocations? Typically when such a user is found, effort is spent on finding alternatives to high-orders as opposed to worrying about the cost of allocating them. There was a focus on huge page allocation because it was the most useful test case that was likely to be encountered in practice. I can adjust the allocation levels to some other value but it's not typical for a system to make very aggressive use of other orders. I could have it use random orders but also is not very typical. > At first, I would like to clarify current reclaim corner case and how > vmscan should do at this mail. > > Now we have Lumpy reclaim. It is very excellent solution for externa > fragmentation. In some situations, it can grind a system to trash for a time. What is far more likely is to be dealing with a machine with no swap - something that is common in clusters. In this case, lumpy is a lot less likely to succeed unless the machine is very quiet. It's just not going to find the contiguous page cache it needs to discard and anonymous pages get in the way. > but unfortunately it have lots corner case. > > Viewpoint 1. Unnecessary IO > > isolate_pages() for lumpy reclaim frequently grab very young page. it is often > still dirty. then, pageout() is called much. > > Unfortunately, page size grained io is _very_ inefficient. it can makes lots disk > seek and kill disk io bandwidth. > Page-based IO like this has also been reported as being a problem for some filesystems. When this happens, lumpy reclaim potentially stalls for a long time waiting for the dirty data to be flushed by a flusher thread. Compaction does not suffer from the same problem. > Viewpoint 2. Unevictable pages > > isolate_pages() for lumpy reclaim can pick up unevictable page. it is obviously > undroppable. so if the zone have plenty mlocked pages (it is not rare case on > server use case), lumpy reclaim can become very useless. > Also true. Potentially, compaction can deal with unevictable pages but it's not done in this series as it's significant enough as it is and useful in its current form. > Viewpoint 3. GFP_ATOMIC allocation failure > > Obviously lumpy reclaim can't help GFP_ATOMIC issue. > Also true although right now, it's not possible to compact for GFP_ATOMIC either. I think it could be done on some cases but I didn't try for it. High-order GFP_ATOMIC allocations are still something we simply try and avoid rather than deal with within the page allocator. > Viewpoint 4. reclaim latency > > reclaim latency directly affect page allocation latency. so if lumpy reclaim with > much pageout io is slow (often it is), it affect page allocation latency and can > reduce end user experience. > Also true. When allocation huge pages on a normal desktop for example, it scan stall the machine for a number of seconds while reclaim kicks in. With direct compaction, this does not happen to anywhere near the same degree. There are still some stalls because as huge pages get allocated, free memory drops until pages have to be reclaimed anyway. The effects are a lot less prononced and the operation finishes a lot faster. > I really hope that auto page migration help to solve above issue. but sadly this > patch seems doesn't. > How do you figure? I think it goes a long way to mitigating the worst of the problems you laid out above. > Honestly, I think this patch was very impressive and useful at 2-3 years ago. > because 1) we didn't have lumpy reclaim 2) we didn't have sane reclaim bail out. > then, old vmscan is very heavyweight and inefficient operation for high order reclaim. > therefore the downside of adding this page migration is hidden relatively. but... > > We have to make an effort to reduce reclaim latency, not adding new latency source. I recognise that reclaim latency has been reduced but there is a wall. The cost of reading the data back in will always be there and on swapless systems, it might simply be impossible for lumpy reclaim to do what it needs. > Instead, I would recommend tightly integrate page-compaction and lumpy reclaim. > I mean 1) reusing lumpy reclaim's neighbor pfn page pickking up logic There are a number of difficulties with this. I'm not saying it's impossible, but the win is not very clear-cut and there are some disadvantages. One, there would have to be exceptions for kswapd in the path because it really should continue reclaiming. The reclaim path is already very dense and this would add significant compliexity to that path. The second difficulty is that the migration and free block selection algorithm becomes a lot harder, more expensive and identifying the exit conditions presents a significant difficultly. Right now, the selection is based on linear scans with straight-forward selection and the exit condition is simply when the scanners meet. With the migration scanner based on LRU, significant care would have to be taken to ensure that appropriate free blocks were chosen to migrate to so that we didn't "migrate from" a block in one pass and "migrate to" in another (the reason why I went with linear scans in the first place). Identifying when the zone has been compacted and should just stop is no longer as straight-forward either. You'd have to track what blocks had been operated on in the past which is potentially a lot of state. To maintain this state, an unknown number structures would have to be allocated which may re-enter the allocator presenting its own class of problems. Third, right now it's very easy to identify when compaction is not going to work in advance - simply check the watermarks and make a calculation based on fragmentation. With a combined reclaim/compaction step, these type of checks would need to be made continually - potentially increasing the latency of reclaim albeit very slightly. Lastly, with this series, there is very little difference between direct compaction and proc-triggered compaction. They share the same code paths and all that differs is the exit conditions. If it was integrated into reclaim, it becomes a lot less straight-forward to share the code. > 2) do page > migration instead pageout when the page is some condition (example active or dirty > or referenced or swapbacked). > Right now, it is identifed when pageout should happen instead of page migration. It's known before compaction starts if it's likely to be successful or not. > This patch seems shoot me! /me die. R.I.P. ;-) > That seems a bit dramatic. Your alternative proposal has some significant difficulties and is likely to be very complicated. Also, there is nothing to say that this mechanism could not be integrated with lumpy reclaim over time once it was shown that useless migration was going on or latencies were increased for some workload. This patch seems like a far more rational starting point to me than adding more complexity to reclaim at the outset. > btw please don't use 'hugeadm --set-recommended-min_free_kbytes' at testing. It's somewhat important for the type of stress tests I do for huge page allocation. Without it, fragmentation avoidance has trouble and the results become a lot less repeatable. > To evaluate a case of free memory starvation is very important for this patch > series, I think. I slightly doubt this patch might invoke useless compaction > in such case. > I can drop the min_free_kbytes change but the likely result will be that allocation success rates will simply be lower. The calculations on whether compaction should be used or not are based on watermarks which adjust to the value of min_free_kbytes. > At bottom line, the explict compaction via /proc can be merged soon, I think. > but this auto compaction logic seems need more discussion. > My concern would be that the compaction paths would then be used very rarely in practice and we'd get no data on how direct compaction should be done. -- Mel Gorman Part-time Phd Student Linux Technology Center University of Limerick IBM Dublin Software Lab -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org