- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- ecp and tdc
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
05-10-2005 05:56 AM
05-10-2005 05:56 AM
ecp and tdc
also I'm questioning the need to install the collector since I installed TDC...
thanks
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2005 05:40 PM
05-10-2005 05:40 PM
Re: ecp and tdc
The new ECP (V5.5A) can read TDC-collector files (on V8.2 there is no ECP collector anymore).
regards Kalle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2005 05:58 PM
05-10-2005 05:58 PM
Re: ecp and tdc
according to the ECP WEB page, on V7.3-2 you can collect data with either TDC (V2.1 or higher) or ECP Data Collector. Note: the current version of ECP is V5.5A (MAR-2005).
A reboot should only be required, if you would be running a previous version of the ECP data collector (drivers can't be reloaded on OpenVMS Alpha).
I've used ECP V5.5 and TDC_RT V2.1-69 on V8.2 and found one disadvantage: you can't analyze data from the currently running collection.
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2005 11:18 PM
11-22-2005 11:18 PM
Re: ecp and tdc
Backup/ign=int allows one to create a copy, which can then be used by TDC EXTRACT (could it be used by ECP?), but that's not exactly an idea solution ...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2005 11:35 PM
11-22-2005 11:35 PM
Re: ecp and tdc
Before starting the collection:
$ define decc$file_sharing enable
This can be added to:
SYS$COMMON:[TDC]TDC$DETACHED_PROLOG.COM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 01:25 AM
11-23-2005 01:25 AM
Re: ecp and tdc
in my name,
give Sebastian _FULL_ points!
I never before heard of that setting (my own oversigh maybe), but this simple setting will mo doubt have MUCH wider applicability, and just offhand I can recall half a dozen cases where I would have been SO happy with it!
Proost.
Have one on me.
jpe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 03:27 AM
11-23-2005 03:27 AM
Re: ecp and tdc
I came across the description of DECC$FILE_SHARE originally in some Java documentation, but it (and a load more) are described in
HP C
Run-Time Library Reference Manual for OpenVMS Systems
See
1.6 Enabling Compaq C RTL Features Using Feature Logical Names
[this may have moved]
Unfortunately the URL I have no longer works...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 08:33 AM
11-23-2005 08:33 AM
Re: ecp and tdc
>I can recall half a dozen cases where
>I would have been SO happy with it!
Be very careful with this, and all other "feature logical names". They tend to be double edged swords, usually with the "bad" edge much bigger and more dangerous that the "good" edge!
As should be obvious, enabling file sharing underneath an application that is assuming exclusive access is not necessarily a good idea. In this case the file in question is probably just a stream of data points, so chances are it's OK. But in the general case, you can't be so sure.
On the other hand, the data collector may be somewhat performance sensitive. Will the cost of file sharing push it outside it's performance envelope?
Think about it. If this were a universal magic wand that made any C program cooperatively share its data files, with no downside, it would be the default, and we wouldn't even bother having a switch for it, yes?
In general, you should not have programs whos correctness depends on specific (non-default) settings of feature logical names. They're timebombs waiting to fail.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 08:40 AM
11-23-2005 08:40 AM
Re: ecp and tdc
>With DECC$FILE_SHARING enabled, all files
>are opened with full sharing enabled
>(FAB$M_DEL | FAB$M_GET | FAB$M_PUT | FAB$M_UPD).
>This is set as a logical OR with any
>sharing mode specified by the caller.
Just thought of a good illustration of why this might be a very BAD idea for some applications. Suppose I'm using a file as an interprocess lock. Maybe not the best application design, BUT it's prefectly valid, and should be reliable. If some "hand of God" stomps on my fopen flags, enabling things I thought were disabled, my application is toast!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2005 09:53 PM
11-23-2005 09:53 PM
Re: ecp and tdc
We have used the file_share logical, but so far only to give read access in Perl programs. This is a lot simpler than using vmsopen(shr='put', etc).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2005 04:12 AM
12-08-2005 04:12 AM
Re: ecp and tdc
The response says that the file has some headers and internal links that are updated at every snapshot. So the file share trick may not always work, and coordination would be tricky.
==
There is an example client in the OpenVMS technical journal at:
http://h71000.www7.hp.com/openvms/journal/v5/intro-to-performance-data-collector.pdf
that can be used to create hourly files.
For concurrent access, one could write a consumer to write the data in a "sharable" manner. Normal data collection could be disabled if not required.