- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- How to speed up a shadow copy on an idle system?
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
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
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
тАО02-11-2009 01:50 PM
тАО02-11-2009 01:50 PM
How to speed up a shadow copy on an idle system?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-11-2009 03:46 PM
тАО02-11-2009 03:46 PM
Re: How to speed up a shadow copy on an idle system?
SHAD$COPY_BUFFER_SIZE
controls the amount of data that can be written in a single IO by the server during a copy operation. I once read that 112 was the optimal value for EVAs though I have not done any testing with this. Values from 31 to 127 are valid. My understanding is that the default is 127 when the logical is not defined.
$ DEFINE/SYSTEM SHAD$COPY_BUFFER_SIZE 112
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-11-2009 07:01 PM
тАО02-11-2009 07:01 PM
Re: How to speed up a shadow copy on an idle system?
Dont have experience with EVAs but wouldnt they have some mirroring capability between them then using OpenVMS to shadow copy the array.
Wouldnt a snapshot and a copy be faster in a quiet period or do you have to ensure updates are passed on? We sometimes killed shadow merges as they were woeful compared with shadow copies - but this was on HSJ based equip - many years ago.
Basically shadowing is a background task - unlike Smart Arrays and likely EVAs which one can set rebuild priorities to high. I dont believe there is any priority stuff with Host Based Shadowing - certainly not in sysgen anyway.
Check out http://www2.openvms.org/kparris/s2003_volshad_perf.ppt#950,18,Speeding Shadow Copies it indicates a backup/physical and shadow is faster than shadow copy.
Robert.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-12-2009 12:05 AM
тАО02-12-2009 12:05 AM
Re: How to speed up a shadow copy on an idle system?
if you look at page 17 of the Keith Parris presentation (see link above), you'll find that a full shadow-copy with different data on the 2 disks needs to do lots of IOs - muc more than a BACKUP/PHYSICAL.
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-12-2009 02:18 AM
тАО02-12-2009 02:18 AM
Re: How to speed up a shadow copy on an idle system?
We have used these logicals in the past to control exactly this:
SHAD$MERGE_DELAY_FACTOR ! Specifies the relative delay in shadow merges from 100 (slow merge) - 1000 (fast merge) (200 default)
SHAD$MERGE_DELAY_FACTOR_DSA* ! Sets SHAD$MERGE_DELAY_FACTOR for a specific disk
Full disclosure: I've not used this in some years so canot guarantee they work now as in VMS 7.x.
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-12-2009 02:22 AM
тАО02-12-2009 02:22 AM
Re: How to speed up a shadow copy on an idle system?
as the logical name says, this logical only affects MERGEs, not COPIEs.
The SHADOW_COPY operation is believed to have a higher priority than merges, so these logicals were invented to somehow limit the performance impact of merges.
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-12-2009 02:26 AM
тАО02-12-2009 02:26 AM
Re: How to speed up a shadow copy on an idle system?
I wasn't aware of that ...
Thanks - I am now a bit better educated!
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-12-2009 09:28 AM
тАО02-12-2009 09:28 AM
Re: How to speed up a shadow copy on an idle system?
As Volker points out, you can also use $BACKUP/PHYSICAL to cut down the first shadow copy time. Be sure to mount the target disk /over=shadow after the backup to avoid problems.
Andy Bustamante