- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: %RMS-F-DME, dynamic memory exhausted
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
01-01-2007 09:10 AM
01-01-2007 09:10 AM
%RMS-F-DME, dynamic memory exhausted
%RMS-F-DME, dynamic memory exhausted
I get this when FOCUS process records. I guess FOCUS works above RMS. I don’t know how much it helps but if I do under my ID (which is different than the job user ID)
$SHOW RMS
I get this (I put in peices):
MULTI- |
BLOCK |
COUNT |
Process 0 |
System 16 |
MULTIBUFFER COUNTS
Indexed Relative
16 0
0 0
MULTIBUFFER COUNTS
Sequential |
Disk Magtape Unit Record |
16 16 16 |
0 0 0 |
| NETWORK
| BLOCK
| COUNT
| 0
| 8
Prolog Extend Quantity
0 0
0 0
What can be the reason and how it can be fixed?
Thanks for the answers.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2007 12:53 PM
01-01-2007 12:53 PM
Re: %RMS-F-DME, dynamic memory exhausted
Tried google? : +rms +dme +site:itrc.hp.com
It points to a topic which appear very relevant:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1079608
Tried VMS HELP? $HELP/MESS DME
About your RMS settings...
Is that output from an interactive session or a batch job submitted under the same username as the used for the focus job?
The multi blcok count is low @16.
The default these days is 32 and may well offer better performance.
The multi buffer count for sequential files setting o6 16 is non-standard, unlikely to help, and may cause the problem.
More than 1 buffers helps, but I've seen rapidly diminishing return for more than 4 buffers.
I suggest you try lowering those to 2 or 4.
Also, they are set at the process level in a (sy)login.com. Be sure to check that logic.
hth,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2007 01:28 AM
01-04-2007 01:28 AM
Re: %RMS-F-DME, dynamic memory exhausted
$ sh proc/memory
in various places in your code and post the values ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2007 01:37 AM
01-04-2007 01:37 AM
Re: %RMS-F-DME, dynamic memory exhausted
I believe it could be related to pio_pages.
It has to do with RMS global buffering.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2007 03:28 AM
01-04-2007 03:28 AM
Re: %RMS-F-DME, dynamic memory exhausted
Global buffers always are mapped in P0/P2 region (never in PIOPAGES in P1 region).
Files opened by DCL commands have their RMS structures allocated in PIOPAGES in P1 space. This space is fixed sized by SYSGEN parameter PIOPAGES.
With DME error the process either has too many files opened by DCL. Or, too many files opened by the program. Or, files opened and closed not in a FIFO order thus expanding P0 region over-and-over again.
/Guenther
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2007 09:14 AM
01-05-2007 09:14 AM
Re: %RMS-F-DME, dynamic memory exhausted
http://vmsone.com/~decuslib/vmssig/vmslt00a/net/rms-tuning-and-piopages.txt
as but one example that supports contention. Also a recent similar problem
Just Google
%RMS-F-DME piopages
and you'll get a lot of hits.
Have fun...