Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!columbia!rutgers!mit-eddie!genrad!decvax!ucbvax!LBL.ARPA!nagy%43198.hepnet From: nagy%43198.hepnet@LBL.ARPA Newsgroups: comp.os.vms Subject: RE: Volume Sets Message-ID: <8704141637.AA08692@ucbvax.Berkeley.EDU> Date: Tue, 14-Apr-87 07:52:18 EST Article-I.D.: ucbvax.8704141637.AA08692 Posted: Tue Apr 14 07:52:18 1987 Date-Received: Sun, 19-Apr-87 00:14:44 EST Sender: daemon@ucbvax.BERKELEY.EDU Distribution: world Organization: The ARPA Internet Lines: 36 Some points for/against volume sets: 1. Too many volumes in a volume set is probably hazardous to a system manager's health. Especially in a software developement or normal timesharing environment where there are lots of little files on the disks... 2. Free space on members of a volume set are used in parallel by writing a new file on the member with the greatest amount of free space instead of completely filling member #1 then filling member #2, etc. This has promotes point #3: 3. Volume sets to improve performance by bring more seek arms to play on the file system. 4. In my past life as a system manager, I'd only played with dual-disk volume sets: 2 pairs of RA81s and a pair of RM80s as 3 separate volume sets. No problems beyond the usual. Online backups proceeded as before and did NOT affect the users any more adversely than online backups did before I installed the volume sets. The "great" argument for volume sets and for making ALL your file system one giant volume set is make it easy for users to locate the files of other users since they don't have to remember which disk user X is on. This argument is actually rather specious under VMS V4.x: the solution to the "problem" is to define a logical name which is a search list of all the mounted disk volumes in the public file structures: $ define usr$disks usr$disk1:,usr$disk2:,usr$disk3:,usr$disk4: Thus anyone can locate anyone elses file by using the usr$disks logical name as the "device" specification. This assumes that a person only has a single top-level directory on the set of disks listed in usr$disks; this does not seem to be much of a restriction.