<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Reason for page outs in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/reason-for-page-outs/m-p/2738329#M67052</link>
    <description>I opened two Glance sessions, one with the memory report and one with the syscalls report.  Whenever there was mmap activity, there was corresponding pageout activity.  Otherwise, both were zero.  (I never saw the msync call.)  Thanks.</description>
    <pubDate>Wed, 05 Jun 2002 14:38:56 GMT</pubDate>
    <dc:creator>Ed Hon</dc:creator>
    <dc:date>2002-06-05T14:38:56Z</dc:date>
    <item>
      <title>Reason for page outs</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/reason-for-page-outs/m-p/2738323#M67046</link>
      <description>Glance shows I'm using 90% of available memory.  Yet, when I view the memory report, it shows I'm still doing occasional pageouts.  Why is that?</description>
      <pubDate>Wed, 05 Jun 2002 13:33:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/reason-for-page-outs/m-p/2738323#M67046</guid>
      <dc:creator>Ed Hon</dc:creator>
      <dc:date>2002-06-05T13:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: Reason for page outs</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/reason-for-page-outs/m-p/2738324#M67047</link>
      <description>1) You may actually be paging out during peak times.&lt;BR /&gt;2) Memory-mapped files. You will always see a bit of this even with little memory pressure.&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Jun 2002 13:38:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/reason-for-page-outs/m-p/2738324#M67047</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2002-06-05T13:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: Reason for page outs</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/reason-for-page-outs/m-p/2738325#M67048</link>
      <description>Ed,&lt;BR /&gt;&lt;BR /&gt;There's no point in closing the stable door after the horse has bolted! If HPUX waited until memory utilisation reached 100% before starting to page out then the whole system would grind to a halt very quickly! HPUX has a threshold which once reached starts to activate paging... looks like at 90% you've reached that threshold.&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;Duncan</description>
      <pubDate>Wed, 05 Jun 2002 13:41:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/reason-for-page-outs/m-p/2738325#M67048</guid>
      <dc:creator>Duncan Edmonstone</dc:creator>
      <dc:date>2002-06-05T13:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: Reason for page outs</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/reason-for-page-outs/m-p/2738326#M67049</link>
      <description>I call this the "hidden" pageout which we don't know about. Yes it makes sense for pageouts to happen if you're low on memory but you wonder since you got 10% left why pageout still happened. The other reason for the occasional pageout (the "hidden" reason) is that your application may be doing memory mapping file and calls to those functions can be the reason why you're getting the occasional pageouts. In glance take a look at funtions like mmap and msync (in the SYSCALLS screen) ..&lt;BR /&gt;# glance -Y&lt;BR /&gt;If they exist .. this then is the reason why you still get pageouts.</description>
      <pubDate>Wed, 05 Jun 2002 13:45:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/reason-for-page-outs/m-p/2738326#M67049</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-06-05T13:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: Reason for page outs</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/reason-for-page-outs/m-p/2738327#M67050</link>
      <description>I have faced a similiar problem where I was seeing paging activity eventhough I had 15 % physical RAM left. In my case it was related to some processes which ran in the night that were utilizing more memory causing the system to reach 100% of mem and hence the system started to page out.</description>
      <pubDate>Wed, 05 Jun 2002 14:21:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/reason-for-page-outs/m-p/2738327#M67050</guid>
      <dc:creator>ashish nanjiani</dc:creator>
      <dc:date>2002-06-05T14:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: Reason for page outs</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/reason-for-page-outs/m-p/2738328#M67051</link>
      <description>Ed, there's an excellent document on memory management installed on every HPUX system, take a look at the file /usr/share/doc/mem_mgt.txt - particularly the section on paginh thresholds and the kernel parameters minfree, desfree, lotsfree and gpgslim. You can see what these values are set to on your system using these command:&lt;BR /&gt;&lt;BR /&gt;echo "minfree/D" | adb /stand/vmunix /dev/mem&lt;BR /&gt;echo "desfree/D" | adb /stand/vmunix /dev/mem&lt;BR /&gt;echo "lotsfree/D" | adb /stand/vmunix /dev/mem&lt;BR /&gt;echo "gpgslim/D" | adb /stand/vmunix /dev/mem&lt;BR /&gt;&lt;BR /&gt;This shows the values in pages (4K blocks).&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;Duncan</description>
      <pubDate>Wed, 05 Jun 2002 14:36:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/reason-for-page-outs/m-p/2738328#M67051</guid>
      <dc:creator>Duncan Edmonstone</dc:creator>
      <dc:date>2002-06-05T14:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: Reason for page outs</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/reason-for-page-outs/m-p/2738329#M67052</link>
      <description>I opened two Glance sessions, one with the memory report and one with the syscalls report.  Whenever there was mmap activity, there was corresponding pageout activity.  Otherwise, both were zero.  (I never saw the msync call.)  Thanks.</description>
      <pubDate>Wed, 05 Jun 2002 14:38:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/reason-for-page-outs/m-p/2738329#M67052</guid>
      <dc:creator>Ed Hon</dc:creator>
      <dc:date>2002-06-05T14:38:56Z</dc:date>
    </item>
  </channel>
</rss>

