<?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: Set volume/limit - real world experience in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551818#M68644</link>
    <description>John Gillings wrote:&lt;BR /&gt;&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;Of course, this issue will fade into oblivion over time because anyone INITIALIZEing a disk on V7.3-2 today is adding /LIMIT from the very beginning, right?... &lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;Yes, of course, but...&lt;BR /&gt;even nowadays questions from people who combined some disks into RAIDsets over 1 T, and so 'hitting' the wall", are seen regularly.&lt;BR /&gt;&lt;BR /&gt;And disk technology is still on fast-forward...&lt;BR /&gt;&lt;BR /&gt;It is not too speculative to assume that in the foreseeable future single disks of &amp;gt; 1 T will be coming, and then this whole /LIMIT scheme will look rather silly.&lt;BR /&gt;&lt;BR /&gt;VMS is clearly not (yet?) prepared for &amp;gt; 1 T disks.&lt;BR /&gt;&lt;BR /&gt;Any chance that VMS will be there before the disk manufacturers are?&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe</description>
    <pubDate>Thu, 26 May 2005 07:12:15 GMT</pubDate>
    <dc:creator>Jan van den Ende</dc:creator>
    <dc:date>2005-05-26T07:12:15Z</dc:date>
    <item>
      <title>Set volume/limit - real world experience</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551812#M68638</link>
      <description>&lt;BR /&gt;John Gillings in another thread writes:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Note that there are circumstances where the&lt;BR /&gt;&amp;gt; command will legitimately fail with&lt;BR /&gt;&amp;gt;DEVICEFULL - that means there is insufficient&lt;BR /&gt;&amp;gt;contiguous space for the new BITMAP.SYS file.&lt;BR /&gt;&amp;gt;I imagine this would be rare in the real&lt;BR /&gt;&amp;gt;world. &lt;BR /&gt;&lt;BR /&gt;Rare is relative.  In a cluster with 190&lt;BR /&gt;mounted shadowsets, we were seeing it.  Hence,&lt;BR /&gt;I created a procedure (see snippets in other&lt;BR /&gt;thread) that took into account via DFU the&lt;BR /&gt;largest free chunk and did the right thing.&lt;BR /&gt;&lt;BR /&gt;Here is a peak at some disks that couldn't handle an outright set volume/limit:&lt;BR /&gt;&lt;BR /&gt;$        set volume/limit=696320000 $1$DGA594:&lt;BR /&gt;$        set volume/limit=706560000 $1$DGA600:&lt;BR /&gt;$        set volume/limit=1239040000 $1$DGA552:&lt;BR /&gt;$        set volume/limit=1085440000 $1$DGA588:&lt;BR /&gt;$        set volume/limit=1239040000 $1$DGA474:&lt;BR /&gt;$        set volume/limit=1423360000 $1$DGA510:&lt;BR /&gt;$        set volume/limit=1239040000 $1$DGA522:&lt;BR /&gt;$        set volume/limit=527155200 $1$DGA61:&lt;BR /&gt;$        set volume/limit=394444800 $1$DGA72:&lt;BR /&gt;&lt;BR /&gt;etc.&lt;BR /&gt;&lt;BR /&gt;The problem of course in a limited downtime&lt;BR /&gt;window, we can't afford to "fool around" &lt;BR /&gt;figuring out what a good fit is (converting&lt;BR /&gt;pre-7.3-2 disks).  So an automated method&lt;BR /&gt;had to be created.  The procedure&lt;BR /&gt;I created caught a volume that was so severely&lt;BR /&gt;fragmented (largest extent 1000 blocks), &lt;BR /&gt;we thought it best to copy over by hand,&lt;BR /&gt;set volume/limit on new volume  :-) ...&lt;BR /&gt;&lt;BR /&gt;Rob&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 25 May 2005 13:33:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551812#M68638</guid>
      <dc:creator>Rob Young_4</dc:creator>
      <dc:date>2005-05-25T13:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: Set volume/limit - real world experience</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551813#M68639</link>
      <description>Rob,&lt;BR /&gt;&lt;BR /&gt;  The maximum possible size of BITMAP.SYS is 65535 blocks. That's for a cluster size of 8. So if you have at least one extent larger than 65535 you can SET VOLUME/LIMIT to the maximum size. As your cluster size goes up, the required size of the BITMAP.SYS goes down. A close enough calculation is:&lt;BR /&gt;&lt;BR /&gt;   65535*8/cluster-size &lt;BR /&gt;&lt;BR /&gt;DFU or DEFRAG SHOW can tell you the size of the largest extent (the DEFRAG SHOW command does not require a license PAK).&lt;BR /&gt;&lt;BR /&gt;  These days, I'd say that if you don't have a contiguous extent larger than 65535 on a disk, then the failure of SET VOLUME/LIMIT is not your highest priority! &lt;BR /&gt;&lt;BR /&gt;Keep this in perspective. That's only 32MB - a tiny fragment on a modern disk. If you have to spend time worrying over a few cents worth of disk space there's something very wrong!&lt;BR /&gt;&lt;BR /&gt;&amp;gt;(largest extent 1000 blocks), &lt;BR /&gt;&amp;gt;we thought it best to copy over by hand,&lt;BR /&gt;&amp;gt;set volume/limit on new volume :-) &lt;BR /&gt;&lt;BR /&gt;  I'd recommend working out the required extent size, then searching the disk for a file containing at least one extent that large. COPY the file somewhere else and DELETE the original. Now you can SET VOL/LIMIT, after which you may be able to copy the file back (but expect it to be more fragmented).&lt;BR /&gt;&lt;BR /&gt;  Of course, this issue will fade into oblivion over time because anyone INITIALIZEing a disk on V7.3-2 today is adding /LIMIT from the very beginning, right?...&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 25 May 2005 17:25:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551813#M68639</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2005-05-25T17:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: Set volume/limit - real world experience</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551814#M68640</link>
      <description>It would be nice if /LIMIT=maxvalue were the default with INITIALIZE.</description>
      <pubDate>Wed, 25 May 2005 19:25:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551814#M68640</guid>
      <dc:creator>Garry Fruth</dc:creator>
      <dc:date>2005-05-25T19:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: Set volume/limit - real world experience</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551815#M68641</link>
      <description>re Garry,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;It would be nice if /LIMIT=maxvalue were the default with INITIALIZE. &lt;BR /&gt;&lt;BR /&gt;  The maximum possible value IS the default for both the INITIALIZE/LIMIT and SET VOLUME/LIMIT comands. HP recommends that you use the default.&lt;BR /&gt;&lt;BR /&gt; Under "normal" conditions, I can't imagine a good reason to choose a lower limit. Worst case is to use a few MB of extra disk space. The potential benefits hugely outweigh the cost. &lt;BR /&gt;&lt;BR /&gt;  Rob apparently has some very badly fragmented disks, so he's chosen to set the volumes to lower limits.&lt;BR /&gt;&lt;BR /&gt;  Personally, I'd be fixing the underlying issue, but this is OpenVMS, so you have the freedom to choose what you think is best for your circumstances.</description>
      <pubDate>Wed, 25 May 2005 22:17:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551815#M68641</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2005-05-25T22:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: Set volume/limit - real world experience</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551816#M68642</link>
      <description>&amp;gt; DFU or DEFRAG SHOW can tell you the size of the largest extent &lt;BR /&gt;&amp;gt; (the DEFRAG SHOW command does not require a license PAK).&lt;BR /&gt;&lt;BR /&gt;Right.  And from Malcolm's thread, I dropped this DCL&lt;BR /&gt;snippet out to show how to go about getting that on the&lt;BR /&gt;fly:&lt;BR /&gt;&lt;BR /&gt;$ get_largest_free_extent:&lt;BR /&gt;$ subroutine&lt;BR /&gt;$ dfu report 'p1' /output=dfu.tmp  ! p1 = disk&lt;BR /&gt;$ pipe type/nopage dfu.tmp | search sys$pipe "largest free extent" | -&lt;BR /&gt;  ( read sys$input a ; define/job/nolog tlog &amp;amp;a)&lt;BR /&gt;$ large_fe_line = f$trnlnm("tlog")&lt;BR /&gt;$ large_fe_line = f$edit(large_fe_line,"TRIM,COMPRESS")&lt;BR /&gt;$ largest_free_extent == -&lt;BR /&gt;f$element(0,"",f$edit(f$element(1,":",large_fe_line),"TRIM"))&lt;BR /&gt;$ delete/nolog dfu.tmp;&lt;BR /&gt;$!&lt;BR /&gt;$ endsubroutine&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; These days, I'd say that if you don't have a contiguous extent larger than &lt;BR /&gt;&amp;gt; 65535 on a disk, then the failure of SET VOLUME/LIMIT is not your highest priority!&lt;BR /&gt;&lt;BR /&gt;Fragmentation in some of our environments is a fact of life, and in most&lt;BR /&gt;cases inconsequential.  And no we don't run defraggers.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Keep this in perspective. That's only 32MB - a tiny fragment on a modern disk. &lt;BR /&gt;&amp;gt; If you have to spend time worrying over a few cents worth of disk space there's &lt;BR /&gt;&amp;gt; something very wrong!&lt;BR /&gt;&lt;BR /&gt;It isn't a worry about a few cents of disk space it is a fact that many of these disks&lt;BR /&gt;are pretty fragmented.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;(largest extent 1000 blocks),&lt;BR /&gt;&amp;gt;&amp;gt;we thought it best to copy over by hand,&lt;BR /&gt;&amp;gt;&amp;gt;set volume/limit on new volume :-)&lt;BR /&gt;&lt;BR /&gt;&amp;gt; I'd recommend working out the required extent size, &lt;BR /&gt;&amp;gt; then searching the disk for a file containing at least one &lt;BR /&gt;&amp;gt; extent that large. COPY the file somewhere else and DELETE the original. &lt;BR /&gt;&amp;gt; Now you can SET VOL/LIMIT, after which you may be able to copy the &lt;BR /&gt;&amp;gt; file back (but expect it to be more fragmented).&lt;BR /&gt;&lt;BR /&gt;Impractical.  We have a short downtime window and need to accomplish as&lt;BR /&gt;much as possible.  We don't have time to "fool around" moving files around&lt;BR /&gt;to fix a problem.  The fix was/is to create a procedure that would determine&lt;BR /&gt;the limit of /limit (ha).  It took less than 5 minutes to SET VOLUME/LIMIT on&lt;BR /&gt;a large number of shadowsets running this procedure.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Of course, this issue will fade into oblivion over time because anyone &lt;BR /&gt;&amp;gt; INITIALIZEing a disk on V7.3-2 today is adding /LIMIT from the very beginning, &lt;BR /&gt;&amp;gt; right?...&lt;BR /&gt;&lt;BR /&gt;Of course.  But doesn't help someone with many hundreds of disks created pre-7.3-2&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 25 May 2005 22:58:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551816#M68642</guid>
      <dc:creator>Rob Young_4</dc:creator>
      <dc:date>2005-05-25T22:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: Set volume/limit - real world experience</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551817#M68643</link>
      <description>&lt;BR /&gt;&amp;gt; Rob apparently has some very badly&lt;BR /&gt;&amp;gt; fragmented disks, so he's chosen to set&lt;BR /&gt;&amp;gt; the volumes to lower limits.&lt;BR /&gt;&lt;BR /&gt;Didn't have much of a choice.  On a severely&lt;BR /&gt;fragmented disk, we know the problem.&lt;BR /&gt;Work arounds are wall clock time.  Perhaps if&lt;BR /&gt;one has to work their way through a few dozen&lt;BR /&gt;disks - have at it!  I agree.  Find a file with&lt;BR /&gt;a large extent,  move it , set volume/limit , move it back.&lt;BR /&gt;&lt;BR /&gt;The idea of a max_value isn't a bad one...&lt;BR /&gt;&lt;BR /&gt;A numeric would do what a numeric should:&lt;BR /&gt;&lt;BR /&gt;/LIMIT=numeric_goes_here&lt;BR /&gt;&lt;BR /&gt;else&lt;BR /&gt;&lt;BR /&gt;/LIMIT=MAXIMUM_OBTAINABLE&lt;BR /&gt;&lt;BR /&gt;Would trigger an algorithm that would find&lt;BR /&gt;the largest extent, do the right thing&lt;BR /&gt;and then spit out an informational something&lt;BR /&gt;along the lines of:&lt;BR /&gt;&lt;BR /&gt;SET-I-LIMIT "Limit set to 348435000"&lt;BR /&gt;&lt;BR /&gt;or whatever.  Wouldn't have to write a &lt;BR /&gt;script to handle set volume/limit on&lt;BR /&gt;badly fragmented disks.&lt;BR /&gt;&lt;BR /&gt;Rob</description>
      <pubDate>Wed, 25 May 2005 23:10:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551817#M68643</guid>
      <dc:creator>Rob Young_4</dc:creator>
      <dc:date>2005-05-25T23:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: Set volume/limit - real world experience</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551818#M68644</link>
      <description>John Gillings wrote:&lt;BR /&gt;&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;Of course, this issue will fade into oblivion over time because anyone INITIALIZEing a disk on V7.3-2 today is adding /LIMIT from the very beginning, right?... &lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;Yes, of course, but...&lt;BR /&gt;even nowadays questions from people who combined some disks into RAIDsets over 1 T, and so 'hitting' the wall", are seen regularly.&lt;BR /&gt;&lt;BR /&gt;And disk technology is still on fast-forward...&lt;BR /&gt;&lt;BR /&gt;It is not too speculative to assume that in the foreseeable future single disks of &amp;gt; 1 T will be coming, and then this whole /LIMIT scheme will look rather silly.&lt;BR /&gt;&lt;BR /&gt;VMS is clearly not (yet?) prepared for &amp;gt; 1 T disks.&lt;BR /&gt;&lt;BR /&gt;Any chance that VMS will be there before the disk manufacturers are?&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe</description>
      <pubDate>Thu, 26 May 2005 07:12:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551818#M68644</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2005-05-26T07:12:15Z</dc:date>
    </item>
    <item>
      <title>Re: Set volume/limit - real world experience</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551819#M68645</link>
      <description>Rob,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;We have a short downtime window and need to accomplish as much as possible. &lt;BR /&gt;&lt;BR /&gt;  Maybe I'm missing something here. Non-destructive analysis of the disk doesn't need to be done during down time. It should be possible to work out what needs to be done on the live system, and even script it so that you can keep your downtime windows very short. Are you really THAT close to the limits of storage and processing power that you can't find 100K contiguous blocks?&lt;BR /&gt;&lt;BR /&gt;re: Jan&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Any chance that VMS will be there before the disk manufacturers are?&lt;BR /&gt;&lt;BR /&gt;  Too late for that! &amp;gt;1TB disks are here now. It will be a while before OpenVMS catches up. &lt;BR /&gt;&lt;BR /&gt;  However, note that the 1TB limit is per volume. It is already possible to have bound volume sets with total sizes over 1TB, so in theory you could have a &amp;gt;1TB disk in a storage subsystem, partition it into &amp;lt;1TB chunks then glue them back with bound volume sets (YUK! Two of my LEAST favorite storage concepts together - partitions and bound volumes).&lt;BR /&gt;&lt;BR /&gt;  Work is well underway on an OpenVMS file system that will support much larger storage volumes.</description>
      <pubDate>Thu, 26 May 2005 14:17:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551819#M68645</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2005-05-26T14:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: Set volume/limit - real world experience</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551820#M68646</link>
      <description>With respect to disk sizes in excess of 1 TB...&lt;BR /&gt;&lt;BR /&gt;If you feel that it's important for VMS to support disk volumes larger than 1TB, please make your feelings known to VMS management.&lt;BR /&gt;Customer statements count much more than suggestions from VMS Engineering in this regard.&lt;BR /&gt;&lt;BR /&gt;I can say with a high degree of certainty that unless a strong case is made, VMS will *not* support disks larger than 1TB.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;             -- Rob</description>
      <pubDate>Thu, 26 May 2005 14:19:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551820#M68646</guid>
      <dc:creator>Robert Brooks_1</dc:creator>
      <dc:date>2005-05-26T14:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: Set volume/limit - real world experience</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551821#M68647</link>
      <description>&lt;BR /&gt;&amp;gt; Are you really THAT close to the limits of &lt;BR /&gt;&amp;gt; storage and processing power that you can't&lt;BR /&gt;&amp;gt; find 100K contiguous blocks?&lt;BR /&gt;&lt;BR /&gt;Yes.  And in some cases never will.  I have&lt;BR /&gt;a number of archive disks that have DBs that&lt;BR /&gt;have used all of the disk but 15000-17000&lt;BR /&gt;blocks.  So there is another reason for a tool&lt;BR /&gt;or method (/limit=maximum_obtainable) that&lt;BR /&gt;is or would be handy.&lt;BR /&gt;&lt;BR /&gt;It really is a matter of inconvience.  To&lt;BR /&gt;get around that inconvenience because I don't&lt;BR /&gt;have time to "fool around", a homegrown tool&lt;BR /&gt;exists to get around size or fragment&lt;BR /&gt;issues with BITMAP.SYS.  This tool (as&lt;BR /&gt;described elsewhere) works and takes a few&lt;BR /&gt;minutes to run.&lt;BR /&gt;</description>
      <pubDate>Sun, 29 May 2005 20:51:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551821#M68647</guid>
      <dc:creator>Rob Young_4</dc:creator>
      <dc:date>2005-05-29T20:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: Set volume/limit - real world experience</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551822#M68648</link>
      <description>&lt;BR /&gt;Rob wrote:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; I can say with a high degree oI can say with a &lt;BR /&gt;&amp;gt; degree of certainty that unless a strong case is made,  &lt;BR /&gt;&amp;gt; VMS will *not* support disks larger than 1TB.&lt;BR /&gt;&lt;BR /&gt;This is probably not a bad thing at all as VMS is an &lt;BR /&gt;Enterprise OS. Say you had a RAID5 made up of 1 TByte disks, &lt;BR /&gt;maybe useful for archive but for production a very bad thing &lt;BR /&gt;as wall clock time on a hardware failure would be quite painful&lt;BR /&gt;to deal with to rebuild a very large RAID5.&lt;BR /&gt;Likewise, imagine if that 1 TByte disk&lt;BR /&gt;has a number of LUNs carved out of it.&lt;BR /&gt;  But am I against volumes &amp;gt; 1 TByte?  No. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;John wrote:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; However, note that the 1TB limit is per volume. &lt;BR /&gt;&amp;gt; It is already possible to have bound volume sets with total &lt;BR /&gt;&amp;gt; sizes over 1TB, so in theory you could have a &amp;gt;1TB disk in &lt;BR /&gt;&amp;gt; a storage subsystem, partition it into &amp;lt;1TB chunks then glue &lt;BR /&gt;&amp;gt; them back with bound volume sets (YUK! Two of my LEAST &lt;BR /&gt;&amp;gt; favorite storage concepts together - partitions and bound volumes).&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Work is well underway on an OpenVMS file system that will &lt;BR /&gt;&amp;gt; support much larger storage volumes.&lt;BR /&gt;&lt;BR /&gt;This would be a good thing.  My hope is it is something that can be &lt;BR /&gt;front-ended with a very nice GUI (it is 2005).  My other hope is it &lt;BR /&gt;includes RAID Software for OpenVMS - the new generation .. such that:&lt;BR /&gt;&lt;BR /&gt; - It is bundled (wouldn't be surprised if it needs a shadowing &lt;BR /&gt;  license to turn on.  Paying back an investment).&lt;BR /&gt;&lt;BR /&gt; - DPAs become much easier to set up (GUI helps alot here) and &lt;BR /&gt;   with RAID 0+1 at the host and RAID at the storage level , we &lt;BR /&gt;   would be very confident to run with 1, 2 , 5 TByte volumes in&lt;BR /&gt;   production (looking to the future of course).&lt;BR /&gt;&lt;BR /&gt; - An RMS database for mount/dismount activity that can be manipulated &lt;BR /&gt;   at a command line and/or the GUI.   (really tired of all the &lt;BR /&gt;   homegrown mount and dismount procedures I've come across.  Some so &lt;BR /&gt;   painfully obsfucated it takes a good deal of time to study and understand &lt;BR /&gt;   them.  All in the hopes that you do the right thing when building &lt;BR /&gt;   shadowsets or mounting disks on reboot.  Sprinkled with f$getdvi , &lt;BR /&gt;   "exists", "avail", "mount", etc.)  Yes,&lt;BR /&gt;   I'm aware of the OpenVMS management tool.&lt;BR /&gt;   I'm thinking about an improvement on that&lt;BR /&gt;   with DCL infrastructure and multiple&lt;BR /&gt;   commands to manipulate the mount database.</description>
      <pubDate>Sun, 29 May 2005 21:26:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551822#M68648</guid>
      <dc:creator>Rob Young_4</dc:creator>
      <dc:date>2005-05-29T21:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: Set volume/limit - real world experience</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551823#M68649</link>
      <description>Rob,&lt;BR /&gt;&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;This would be a good thing. My hope is it is something that can be &lt;BR /&gt;front-ended with a very nice GUI (it is 2005). &lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;... as long as this does _NOT_ imply the use of M$ or *IX frontends to manipulate the disks!!&lt;BR /&gt;&lt;BR /&gt;And on complex scripts for MOUNT funtionality vs a GUI for it:&lt;BR /&gt;&lt;BR /&gt;In my experience GUIs do fine for straightforward functionalities (including a sequence of tests and just few different procedure roads), but as soon as serious complexity comes in (and take that to include _ANYTHING_ the GUI-builders did not build into the GUI!), then you are back to scripting, and _THEN_ that tends to be just more cumbersome than just plain scripting.&lt;BR /&gt;&lt;BR /&gt;-- might well be attributable to my tndency to avoid GUIing, but it is what I also see with collegues in the much more GUI oriented Unix, and even in the highly GUI-based Mickey world.&lt;BR /&gt;&lt;BR /&gt;fwiw,&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe&lt;BR /&gt;</description>
      <pubDate>Mon, 30 May 2005 03:02:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551823#M68649</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2005-05-30T03:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: Set volume/limit - real world experience</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551824#M68650</link>
      <description>I agree with you about GUIs. They tend to encourage people who don't know what they are doing to do things they should not.&lt;BR /&gt;&lt;BR /&gt;I've not seen a good case for a single volume &amp;gt;1Tb. There is normally a way to split up the data across volumes. Putting it all on a single volume is a way of avoiding the thought and planning involved in using multiple volumes.</description>
      <pubDate>Tue, 31 May 2005 06:34:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551824#M68650</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2005-05-31T06:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Set volume/limit - real world experience</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551825#M68651</link>
      <description>&lt;BR /&gt;&amp;gt; ... as long as this does _NOT_ imply the &lt;BR /&gt;&amp;gt;use of M$ or *IX frontends to manipulate the &amp;gt;disks!!&lt;BR /&gt;&lt;BR /&gt;Both of course.  But a GUI for a number&lt;BR /&gt;of reasons:&lt;BR /&gt;&lt;BR /&gt;1)  Quick one-offs that don't require&lt;BR /&gt;    recall of commands from a command line.&lt;BR /&gt;&lt;BR /&gt;As an aside to to support the above... anyone&lt;BR /&gt;that has worked with SMIT (AIX's management&lt;BR /&gt;interface) and looked at the log files from&lt;BR /&gt;that actual command that ran - it is a&lt;BR /&gt;scary thing.  A whole mish-mash of dash ,&lt;BR /&gt;upper and lower case characters, etc.&lt;BR /&gt;&lt;BR /&gt;2)  A visual - show me things and use color&lt;BR /&gt;so my eyeballs can pick out the obvious.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;And on complex scripts for MOUNT &lt;BR /&gt;&amp;gt;funtionality vs a GUI for it:&lt;BR /&gt;&lt;BR /&gt;&amp;gt;In my experience GUIs do fine for &lt;BR /&gt;&amp;gt;straightforward functionalities (including a&lt;BR /&gt;&amp;gt;sequence of tests and just few different&lt;BR /&gt;&amp;gt;procedure roads), but as soon as serious &lt;BR /&gt;&amp;gt;complexity comes in (and take that to &lt;BR /&gt;&amp;gt;include _ANYTHING_ the GUI-builders did not&lt;BR /&gt;&amp;gt;build into the GUI!), then you are back to &lt;BR /&gt;&amp;gt;scripting, and _THEN_ that tends to be just&lt;BR /&gt;&amp;gt;more cumbersome than just plain scripting.&lt;BR /&gt;&lt;BR /&gt;I'm sure there are many counter-examples to&lt;BR /&gt;the above - but the first that comes to&lt;BR /&gt;mind is storage software.  You can do a lot&lt;BR /&gt;with command scripting from the host &lt;BR /&gt;side, but on the storage frame itself&lt;BR /&gt;(thinking of a particular vendor) your&lt;BR /&gt;interaction is via a GUI.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;-- might well be attributable to my tndency &lt;BR /&gt;&amp;gt;to avoid GUIing, but it is what I also see&lt;BR /&gt;&amp;gt;with collegues in the much more GUI oriented&lt;BR /&gt;&amp;gt;Unix, and even in the highly GUI-based &lt;BR /&gt;&amp;gt;Mickey world.&lt;BR /&gt;&lt;BR /&gt;Databases are front-ended&lt;BR /&gt;by GUIs.  Applications for the most part&lt;BR /&gt;are GUI front-ends (except for "legacy"&lt;BR /&gt;character cell apps).  An OS needs a&lt;BR /&gt;scripting language as Microsoft found out.&lt;BR /&gt;&lt;BR /&gt;Yes, you need command line and scripting&lt;BR /&gt;to do things that are seriously outside the&lt;BR /&gt;scope of a GUI for a lot of&lt;BR /&gt;things.  The GUI would give you &lt;BR /&gt;something highly supportable (assuming your&lt;BR /&gt;day-to-day doesn't drift outside it).</description>
      <pubDate>Wed, 01 Jun 2005 00:38:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551825#M68651</guid>
      <dc:creator>Rob Young_4</dc:creator>
      <dc:date>2005-06-01T00:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Set volume/limit - real world experience</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551826#M68652</link>
      <description>&amp;gt; I agree with you about GUIs. They tend to encourage people &lt;BR /&gt;&amp;gt; who don't know what they are doing to do things they should not.&lt;BR /&gt;&lt;BR /&gt;Bah.  Thinking of storage software again - there are read-only &lt;BR /&gt;users.  Badness isn't a GUI problem.  Inept users can screw&lt;BR /&gt;things up regardless of interface (if given the capability,&lt;BR /&gt;you can't screw things up if your access is read-only).&lt;BR /&gt;&lt;BR /&gt;&amp;gt; I've not seen a good case for a single volume &amp;gt;1Tb. There is normally &lt;BR /&gt;&amp;gt; a way to split up the data across volumes. Putting it all on a single volume &lt;BR /&gt;&amp;gt; is a way of avoiding the thought and planning involved in using multiple volumes.&lt;BR /&gt;&lt;BR /&gt;At the rate data is growing for most of us, it becomes a management&lt;BR /&gt;headache.  Some really old disks I have seen in the 2 GByte range are finally&lt;BR /&gt;going away.  You can't hardly get 36 GByte drives with the storage I'm&lt;BR /&gt;thinking of... all this to say what was common 10 years ago is laughable today.&lt;BR /&gt;Will TeraByte volumes be common 10 years from now?  Maybe not, but I wouldn't be a bit &lt;BR /&gt;surprised if they were.</description>
      <pubDate>Wed, 01 Jun 2005 00:53:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/set-volume-limit-real-world-experience/m-p/3551826#M68652</guid>
      <dc:creator>Rob Young_4</dc:creator>
      <dc:date>2005-06-01T00:53:58Z</dc:date>
    </item>
  </channel>
</rss>

