- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: Fragmentation of disk drive
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2006 09:00 PM
11-19-2006 09:00 PM
Fragmentation of disk drive
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2006 09:12 PM
11-19-2006 09:12 PM
Re: Fragmentation of disk drive
Executive software also do a free fragmentation reporting utility - see
http://www.executive.com/freeware/freeware.asp
You can see if file fragmentation is having an affect by looking at window turns and split I/O rate in the MONITOR utility.
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2006 09:15 PM
11-19-2006 09:15 PM
Re: Fragmentation of disk drive
It also allows for the defragmentation of individual files (more like COPY/CONTIG does).
To defragment complete disks under load you may use the HP product 'Disk File Optimizer',but that costs money.
regards Kalle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2006 10:25 PM
11-19-2006 10:25 PM
Re: Fragmentation of disk drive
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2006 05:37 AM
11-20-2006 05:37 AM
Re: Fragmentation of disk drive
This includes DFO.
Not all fragmentation is bad, since it uses the last freed block to use a block. Thus, some mixture of free space, contrary to popular wisdom, will improve performance.
Larger cluster sizes and RMS extent sizes will help prevent fragmentation and improve performance at the cost of some disk space.
Disk space is cheap. Cheaper than user time.
As mentioned, large log files are real killers. Especially if they do not pre-allocate space and are being written to a bit at a time. Closing the utilities associated with Accountng.dat, errlog.sys and operator.log can creating new versions of these file, with a larger extent can really help over time.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2006 05:39 AM
11-20-2006 05:39 AM
Re: Fragmentation of disk drive
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2006 06:18 AM
11-20-2006 06:18 AM
Re: Fragmentation of disk drive
>>>
This might be a little off topic, but in the days before defrag utils, I'd perform a restore from an image backup. Doesn't this still apply?
<<<
Yeah, it still applies... _IF_ you can afford the off-line time (of for system disk, Down time).
Many, many of the sites using VMS nowadays, are doing that BECAUSE of the 24*7, or 24*365 capabilities, and _THEN_ that option is a little bit out of the question.
Just my EUR 0,02
(notice, even the decimal COMMA is un-english!)
Proost.
Have one on me.
jpe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2006 06:29 AM
11-20-2006 06:29 AM
Re: Fragmentation of disk drive
$ monitor fcp
$ monitor io
A disk can be severely fragmented and not create a performance issue if it doesn't create significant i/o. Purging log files is usually enough to defrag a system disk.
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2006 08:31 PM
11-20-2006 08:31 PM
Re: Fragmentation of disk drive
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2006 12:26 PM
11-22-2006 12:26 PM
Re: Fragmentation of disk drive
$ PIPE DUMP/HEADER
and look for the list of retrieval pointers looking like this:
Map area
Retrieval pointers
Count: 36 LBN: 1280646
Each "Count ... LBN..." line is one fragment. Multiple "Count:..."lines mean fragmented file. I have seen files with hundreds and hundreds of pointers to fragments...
Ziggy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2006 02:01 PM
11-22-2006 02:01 PM
Re: Fragmentation of disk drive
$define dfu$nosmg yes
$dfu sea/frag=min=100 sys$disk:
>> I have seen files with hundreds and hundreds of pointers to fragments...
I'll see your hundreds of pointers and raise you hundred fifty headers.
:-)
>> $ PIPE DUMP/HEADER
Too much work! Try this:
$ perl -e "foreach (`dump/head/bloc=cou=0 $ARGV[0]`) { $h++ if /^Check/; $m++ if /Count:/} print qq($h headers, $m pointers.\n)"
More :-)
Hein.