<?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 performance in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/performance/m-p/2981608#M922409</link>
    <description>I run process from one file system and the logs are written in separate file system &lt;BR /&gt;could be that the performance are lower then situation that the process will write the logs in the same file system ?&lt;BR /&gt;Does it care ?</description>
    <pubDate>Mon, 26 May 2003 06:46:14 GMT</pubDate>
    <dc:creator>Yair Goldel</dc:creator>
    <dc:date>2003-05-26T06:46:14Z</dc:date>
    <item>
      <title>performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/performance/m-p/2981608#M922409</link>
      <description>I run process from one file system and the logs are written in separate file system &lt;BR /&gt;could be that the performance are lower then situation that the process will write the logs in the same file system ?&lt;BR /&gt;Does it care ?</description>
      <pubDate>Mon, 26 May 2003 06:46:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/performance/m-p/2981608#M922409</guid>
      <dc:creator>Yair Goldel</dc:creator>
      <dc:date>2003-05-26T06:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/performance/m-p/2981609#M922410</link>
      <description>&lt;BR /&gt;It will depend entirely upon whether both of the filesystems are on the same disk, how big the writes to disk are, what type of disks you have .... generally speaking if they are on a separate physical disk, the performance should be better. You can check easily enough using:&lt;BR /&gt;e.g.&lt;BR /&gt;# lvdisplay -v /dev/myvg/mylvol (for each one, this will display the same or different disks.&lt;BR /&gt;More information would be needed to assist more, type of process, database etc.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Michael&lt;BR /&gt;"When I have trouble spelling, it's called fat finger syndrome" &lt;BR /&gt;</description>
      <pubDate>Mon, 26 May 2003 06:52:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/performance/m-p/2981609#M922410</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2003-05-26T06:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/performance/m-p/2981610#M922411</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Do your filesystems reside on the same disk ?&lt;BR /&gt;&lt;BR /&gt;Check with&lt;BR /&gt;&lt;BR /&gt;lvdisplay -v /dev/vg#/lvol# | more&lt;BR /&gt;&lt;BR /&gt;Have a look at the I/O on the disks with &lt;BR /&gt;&lt;BR /&gt;sar -d 2 10&lt;BR /&gt;&lt;BR /&gt;This will give you &lt;BR /&gt;&lt;BR /&gt;08:59:05   device   %busy   avque   r+w/s  blks/s  avwait  avserv&lt;BR /&gt;08:59:07   c1t2d0   13.86    0.50      18     170    5.13   11.23&lt;BR /&gt;&lt;BR /&gt;Have a look at the man pages for sar for a further description&lt;BR /&gt;&lt;BR /&gt;Also have a think abouth wether your disks are internal or external to the server. Are any of them fibre connected. Are your filesystems striped across disks. There are numerous things to think about&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Mon, 26 May 2003 07:01:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/performance/m-p/2981610#M922411</guid>
      <dc:creator>steven Burgess_2</dc:creator>
      <dc:date>2003-05-26T07:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/performance/m-p/2981611#M922412</link>
      <description>Infact it's depends on how your application dealing with logs but in most of the cases it increase performence by keeping executable and log destinataion in different disk&lt;BR /&gt;Sunil</description>
      <pubDate>Mon, 26 May 2003 07:43:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/performance/m-p/2981611#M922412</guid>
      <dc:creator>Sunil Sharma_1</dc:creator>
      <dc:date>2003-05-26T07:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/performance/m-p/2981612#M922413</link>
      <description>It depends on the type of application.&lt;BR /&gt;&lt;BR /&gt;But to categorize the reasons why the logs are written to seperate file system&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;1.Normally in unix /var takes care of all the auditing and accounting.&lt;BR /&gt;All the logs are kept here so that the administration becomes easier so that they are not distributed on all file systems.&lt;BR /&gt;&lt;BR /&gt;2.It could also be due to performance like take an example of Oracle database.&lt;BR /&gt;&lt;BR /&gt;You have the redo log files which can cause more I/O and performance bottleneck.&lt;BR /&gt;Thus by distributing files across different file systems the I/O is reduced and thus improvement in performance.&lt;BR /&gt;&lt;BR /&gt;Revert</description>
      <pubDate>Mon, 26 May 2003 07:50:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/performance/m-p/2981612#M922413</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2003-05-26T07:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/performance/m-p/2981613#M922414</link>
      <description>Hi,&lt;BR /&gt;It should not decrase performance, if it increases performance depends on how I/O intensive the application is but an general rule with I/O intensive applications is (if possible) to distribute the I/O across several disks.</description>
      <pubDate>Mon, 26 May 2003 07:52:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/performance/m-p/2981613#M922414</guid>
      <dc:creator>Leif Halvarsson_2</dc:creator>
      <dc:date>2003-05-26T07:52:26Z</dc:date>
    </item>
  </channel>
</rss>

