<?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: help improving performance on a non-root process in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/help-improving-performance-on-a-non-root-process/m-p/4605795#M620133</link>
    <description>Do you have MCOE or DCOE on your system. &lt;BR /&gt;&lt;BR /&gt;IF you do then you have PRM.  WIth PRM you can cause proceses in a certain group defined by userid and process name to have more resources.&lt;BR /&gt;&lt;BR /&gt;The PRM configuration would need to be created by root but once the configuration is created by virtue of the processes existing running with a certain userid  or name it can be given higher resource priority.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 25 Mar 2010 04:16:31 GMT</pubDate>
    <dc:creator>Emil Velez</dc:creator>
    <dc:date>2010-03-25T04:16:31Z</dc:date>
    <item>
      <title>help improving performance on a non-root process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-improving-performance-on-a-non-root-process/m-p/4605790#M620128</link>
      <description>hello all&lt;BR /&gt;&lt;BR /&gt;i have a java app server running under a non-root user, but i want to do some tweaks not related with java, but with the process itself. &lt;BR /&gt;&lt;BR /&gt;see, this process uses great amounts of memory and open several files in the disk so it becomes quite slow. i also have a smaller app server (also java) and that one opens much less files and is much faster.&lt;BR /&gt;&lt;BR /&gt;so, in order to enhance the process performance i've made a "renice -n -20 &lt;PID&gt;" as root and it makes a big difference.&lt;BR /&gt;&lt;BR /&gt;now i would like to know how to allow my user running the server get allowed to open more files.&lt;BR /&gt;&lt;BR /&gt;i've heard that there are some limits, bu i have no idea how to modify that.&lt;BR /&gt;&lt;BR /&gt;thanks a lot in advance.&lt;/PID&gt;</description>
      <pubDate>Tue, 23 Mar 2010 15:55:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-improving-performance-on-a-non-root-process/m-p/4605790#M620128</guid>
      <dc:creator>sombriks</dc:creator>
      <dc:date>2010-03-23T15:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: help improving performance on a non-root process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-improving-performance-on-a-non-root-process/m-p/4605791#M620129</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Note: Java itself can be a memory hog. Patching the system and going to later versions of JVM or JRE or JDK can have substantial performance boosts.&lt;BR /&gt;&lt;BR /&gt;For your question, check the ulimit setting for this user.&lt;BR /&gt;&lt;BR /&gt;You also might need to modify kernel parameters maxuprc to deal with limits on the number of processes a single user can have. The default of 75 can be a problem.&lt;BR /&gt;&lt;BR /&gt;As far as renice goes, pushing much farther than you have gone with a lower renice figure might do more harm than good.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 23 Mar 2010 16:01:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-improving-performance-on-a-non-root-process/m-p/4605791#M620129</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2010-03-23T16:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: help improving performance on a non-root process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-improving-performance-on-a-non-root-process/m-p/4605792#M620130</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Just a word of warning before I start researching your question;  Renice / nice.&lt;BR /&gt;&lt;BR /&gt;Nicing is an obsolete procedure by maybe two decades because it applies to a cpu bottleneck only, and cpu's no longer have the limitations that they once had.&lt;BR /&gt;&lt;BR /&gt;And although still around nicing is determined by the O/S by default, where every process gets a defaulted job priority scheduled.&lt;BR /&gt;&lt;BR /&gt;Worse case, your suped up nice processes take over the box preventing other processes from getting enough resources.  In short, creating a dedicated box, or, a hung box that can't spawn a login shell because the login process doesn't have a high enough nice / priority.</description>
      <pubDate>Tue, 23 Mar 2010 17:36:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-improving-performance-on-a-non-root-process/m-p/4605792#M620130</guid>
      <dc:creator>Michael Steele_2</dc:creator>
      <dc:date>2010-03-23T17:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: help improving performance on a non-root process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-improving-performance-on-a-non-root-process/m-p/4605793#M620131</link>
      <description>hey, thanks a lot for the answers!&lt;BR /&gt;&lt;BR /&gt;i'll take care with nice (though the app server with -20 is at speedlight) and will check ulimit tonight. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 23 Mar 2010 19:37:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-improving-performance-on-a-non-root-process/m-p/4605793#M620131</guid>
      <dc:creator>sombriks</dc:creator>
      <dc:date>2010-03-23T19:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: help improving performance on a non-root process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-improving-performance-on-a-non-root-process/m-p/4605794#M620132</link>
      <description>you may also like to check kernel parameter&lt;BR /&gt;nfile,maxuprc and maxfiles.&lt;BR /&gt;&lt;BR /&gt;BR,&lt;BR /&gt;Kapil+</description>
      <pubDate>Wed, 24 Mar 2010 04:06:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-improving-performance-on-a-non-root-process/m-p/4605794#M620132</guid>
      <dc:creator>Kapil Jha</dc:creator>
      <dc:date>2010-03-24T04:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: help improving performance on a non-root process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/help-improving-performance-on-a-non-root-process/m-p/4605795#M620133</link>
      <description>Do you have MCOE or DCOE on your system. &lt;BR /&gt;&lt;BR /&gt;IF you do then you have PRM.  WIth PRM you can cause proceses in a certain group defined by userid and process name to have more resources.&lt;BR /&gt;&lt;BR /&gt;The PRM configuration would need to be created by root but once the configuration is created by virtue of the processes existing running with a certain userid  or name it can be given higher resource priority.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 25 Mar 2010 04:16:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/help-improving-performance-on-a-non-root-process/m-p/4605795#M620133</guid>
      <dc:creator>Emil Velez</dc:creator>
      <dc:date>2010-03-25T04:16:31Z</dc:date>
    </item>
  </channel>
</rss>

