<?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: Maximum multiprocessing. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/maximum-multiprocessing/m-p/3643996#M810221</link>
    <description>Then you need a meachnism to decide if load is high or not. (and by the way just load on the system is not correct way determining how system is performing. The priority queue is very important.)&lt;BR /&gt;&lt;BR /&gt;Before you develop a mechanism/procedure to decide how system is doing, how are your jobs?? Like build process more cpu bount and backup disk bound. So is it going to be overall system performance or just cpu load/disk load??&lt;BR /&gt;&lt;BR /&gt;Glance can give you global priority run queue.</description>
    <pubDate>Fri, 07 Oct 2005 02:22:09 GMT</pubDate>
    <dc:creator>RAC_1</dc:creator>
    <dc:date>2005-10-07T02:22:09Z</dc:date>
    <item>
      <title>Maximum multiprocessing.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/maximum-multiprocessing/m-p/3643991#M810216</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have a long script which does many jobs.&lt;BR /&gt;Some of them are very long like build, backup, etc.&lt;BR /&gt;&lt;BR /&gt;None of them are interdependent.&lt;BR /&gt;&lt;BR /&gt;How can i customise my script that max things run in parallel.</description>
      <pubDate>Fri, 07 Oct 2005 02:05:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/maximum-multiprocessing/m-p/3643991#M810216</guid>
      <dc:creator>Vibhor Kumar Agarwal</dc:creator>
      <dc:date>2005-10-07T02:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum multiprocessing.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/maximum-multiprocessing/m-p/3643992#M810217</link>
      <description>nohup max job1 &amp;amp;&lt;BR /&gt;nohup max job2 &amp;amp;&lt;BR /&gt;&lt;BR /&gt;Should be ok with you.</description>
      <pubDate>Fri, 07 Oct 2005 02:08:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/maximum-multiprocessing/m-p/3643992#M810217</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-10-07T02:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum multiprocessing.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/maximum-multiprocessing/m-p/3643993#M810218</link>
      <description>Modularize and put it in background with "&amp;amp;".Using "wait" may not useful.&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Fri, 07 Oct 2005 02:11:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/maximum-multiprocessing/m-p/3643993#M810218</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2005-10-07T02:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum multiprocessing.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/maximum-multiprocessing/m-p/3643994#M810219</link>
      <description>You have to run jobs in parrallel mode with &amp;amp; like,&lt;BR /&gt;&lt;BR /&gt;build()&lt;BR /&gt;{&lt;BR /&gt;&lt;BR /&gt;..&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;backup()&lt;BR /&gt;{&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;build &amp;amp;&lt;BR /&gt;backup &amp;amp;&lt;BR /&gt;&lt;BR /&gt;You can manage those process ID with $! for build &amp;amp; sub process and backup &amp;amp; sub process.&lt;BR /&gt;&lt;BR /&gt;hth.</description>
      <pubDate>Fri, 07 Oct 2005 02:12:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/maximum-multiprocessing/m-p/3643994#M810219</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-10-07T02:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum multiprocessing.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/maximum-multiprocessing/m-p/3643995#M810220</link>
      <description>These things will make it hard coded.&lt;BR /&gt;&lt;BR /&gt;I was looking for something flexible which will vary with time.&lt;BR /&gt;&lt;BR /&gt;If load is less, do more jobs, if more carry on serially.</description>
      <pubDate>Fri, 07 Oct 2005 02:15:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/maximum-multiprocessing/m-p/3643995#M810220</guid>
      <dc:creator>Vibhor Kumar Agarwal</dc:creator>
      <dc:date>2005-10-07T02:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum multiprocessing.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/maximum-multiprocessing/m-p/3643996#M810221</link>
      <description>Then you need a meachnism to decide if load is high or not. (and by the way just load on the system is not correct way determining how system is performing. The priority queue is very important.)&lt;BR /&gt;&lt;BR /&gt;Before you develop a mechanism/procedure to decide how system is doing, how are your jobs?? Like build process more cpu bount and backup disk bound. So is it going to be overall system performance or just cpu load/disk load??&lt;BR /&gt;&lt;BR /&gt;Glance can give you global priority run queue.</description>
      <pubDate>Fri, 07 Oct 2005 02:22:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/maximum-multiprocessing/m-p/3643996#M810221</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-10-07T02:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum multiprocessing.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/maximum-multiprocessing/m-p/3643997#M810222</link>
      <description>Its a mixture of all.</description>
      <pubDate>Fri, 07 Oct 2005 03:41:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/maximum-multiprocessing/m-p/3643997#M810222</guid>
      <dc:creator>Vibhor Kumar Agarwal</dc:creator>
      <dc:date>2005-10-07T03:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum multiprocessing.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/maximum-multiprocessing/m-p/3643998#M810223</link>
      <description>Use what has already been mention and use nice to lower the priority of the jobs that are less important to you.  The only limitation would be extra page out/in if you don't have enough RAM to keep all the parallel jobs in memory.  Process Resource Manager and Workload Manager from HP are even better tools but they cost extra dollars, unless you have Enterprise OE or Mission Critical OE respectively.</description>
      <pubDate>Sun, 09 Oct 2005 14:09:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/maximum-multiprocessing/m-p/3643998#M810223</guid>
      <dc:creator>Ted Buis</dc:creator>
      <dc:date>2005-10-09T14:09:16Z</dc:date>
    </item>
  </channel>
</rss>

