- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: ctrl+t meaning of items?
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
08-03-2009 12:50 AM
08-03-2009 12:50 AM
The topic might not be perfect, but couldn't figure out a better way of naming it.
I have rather large copy going out to a tape drive and I kind of forgot to add a /log to the command.
So my question is, the IO=NUMBER is probably IO operations to the drive, is there anyway to calculate how many blocks has been written to the drive using IO number?
NODE2::MYUSER - 750D 10:46:00 COPY CPU=00:01:02.46 PF=728 IO=820914 MEM=152
Best regards
Fredrik Eriksson
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2009 01:09 AM
08-03-2009 01:09 AM
SolutionSo if the copy operation just started after login, then IO is the number for both input and output of the copy operation. And since it is, depending on the devices, probably buffered IO, it is not precisely the number of blocks.
So only COPY/LOG will give You the number of blocks, but not during copy, only after each file copied.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2009 02:34 AM
08-03-2009 02:34 AM
Re: ctrl+t meaning of items?
I believe that you will find that the values displayed by CNTRL-T are the same values that you will get from SHOW SYSTEM. The IO Count is the sum of Buffered and Direct IO Counts.
The components of the IO count can be displayed using SHOW PROCESS/ACCOUNTING. To look at tape drive activity, SHOW DEVICE/FULL will show the cumulative number of operations on the device.
- Bob Gezelter, http://www.rlgsc.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2009 02:51 AM
08-03-2009 02:51 AM
Re: ctrl+t meaning of items?
I figured as much that it was counting BIO and DIO, and afaik there is not way of figuring out how many blocks were written during 1 IO count.
Best regards
Fredrik Eriksson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2009 02:59 AM
08-03-2009 02:59 AM
Re: ctrl+t meaning of items?
BACKUP is my preference here.
The block size with COPY is determined by the MOUNT and the INITIALIZE.
If you need a notification here, then add a simply command (blind) into the type-ahead buffer. \mail nla0: myuser\ is a reasonable choice, as it's easy to type blind. If I'm the only one logged in on the box, then \reply/all/bell done\ or some such also works nicely.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2009 04:19 AM
08-03-2009 04:19 AM
Re: ctrl+t meaning of items?
How about naming it after the true objective of the topic? "What it the IO size used by COPY"
You might want to clarify that by adding "To tape".
You can then start the topic with "I was hoping to use CONTROL-T on an OpenVMS x.x system to obtain this, but no joy".
On OpenVMS 8.3 a real control-t to copy will report, in addition to the IO counts report something like:
Copying:
( a 'fake' out-of-process control-T, using dcl$ctrlt_pid only report the classic cpu/io line. )
>>> afaik there is not way of figuring out how many blocks were written during 1 IO count.
On OpenVMS 8.3 COPY /BLOCK will allows you to just TELL copy what to uses, beside informing you of the default (124 blocks).
On older OpenVMS version, I typically used ANAL/SYSTEM ... SET PROC test ... SHOW PROC /CHAN .... SHOW PROC/RMS=(FAB,RAB).
The USZ/RSZ fields (in the extended rab for 8.3) will re-confirms the size used.
The RFA will give in indicator where in the file(s) copy is working.
PROCIO is also 'nice' for this purpose.
Another, crude but effective way?
1) Just before, or early on during copy:
$ SET CACHE/RESET ! resets top level counts, not block data
2) Just after, or towards the end of your patience:
$ SHOW MEM/CACHE/FULL
3) Check the histogram for popular IO sizes.
hth,
Hein.