- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- copying informix rawdevs using dd with bs greater ...
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
тАО05-05-2001 09:04 PM
тАО05-05-2001 09:04 PM
i am trying to copy 1TB informix db under hpux-11.00 from one emc-box to another using the command
dd if=rawdev1 of=rawdev2 bs=2k
if i do it this way i need appr. 40 hours to complete the copy of the 360 rawdevs and can not complete my action during the weekend.
is it possible to increase the bs-parameter for dd without danger of informix-datacorruption?
regards:
martin
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2001 11:23 AM
тАО05-06-2001 11:23 AM
Solution(you done good on one thing) don't specify an ibs and an obs - that will cause double buffering - just use bs.
Regards, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2001 11:08 PM
тАО05-06-2001 11:08 PM
Re: copying informix rawdevs using dd with bs greater 2k
thanks for your answer!
At Sunday I've used my downtime and copied the 1TB using 4 parallel dd with bs=1MB over 4 FC and emc-powerpath-software(load balancing and failover).
The last copy finished after 4 hours.
Will an increase of the dd bs to 2MB, 4MB or higher lead to a decrease of the copy-runtime?
Next weekend is the next copytime.
Regards:
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-07-2001 05:29 AM
тАО05-07-2001 05:29 AM
Re: copying informix rawdevs using dd with bs greater 2k
a higher blocksize reduces the overhead for the copyaction. So you will see a decreas in the time needed for this copy. At least as long as you don't hit another performancebarrier e.g. network speed, IO speed of the discs and so on.
Hope this helps. Stefan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-07-2001 06:05 AM
тАО05-07-2001 06:05 AM
Re: copying informix rawdevs using dd with bs greater 2k
I don't think you will see any significant increases if your buffer size is bigger. You might see a small improvement if you make you
bs a multiple of 64k. If you are a c programmer you might consider either a multi-threaded application or cooperating processes so that process A is reading to a shared memory buffer while process B is writing from
another portion of the same shared memory segement. You would have a moving window so that when the data is written out to disk it is available again for a new segment to be read in. If you look at one of the HP-UX Porting Centers you will find a program called 'buffer' which does just what I describe. You could pipe dd to and from it and try it.
I don't know if what you are really doing but I assume you are aware that EMC makes software to keep two arrays in sync.
Hope some of this helps, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-10-2001 04:30 AM
тАО05-10-2001 04:30 AM
Re: copying informix rawdevs using dd with bs greater 2k
I am going to migrate my database from 4GB splits (residing on emcbox1) to 32GB metavolumes (residing on emcbox2).
I am not trying to write better srdf or timefinder script ;-))
Regards:
Martin