- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Maximum address space question
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
03-13-2003 06:51 AM
03-13-2003 06:51 AM
Maximum address space question
DB2 is able to use extended storage segments in memory but it is only able to do this if the environment has more memory than the maximum address space.
How do I determine the "Maximum Address Space" for our system.
We currently have 6 Gig of memory.
Thanks,
Craig
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2003 07:02 AM
03-13-2003 07:02 AM
Re: Maximum address space question
How much shared memory is your DB2 database currently using? A 32-bit application will be able to address a maximum of 1.75 Gb of shared memory.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2003 07:03 AM
03-13-2003 07:03 AM
Re: Maximum address space question
This does not mean that you get this much, normally the max you can actually get is around 1.5G as you have to share with others.
You can only get the full 1.75G if you are the only user on the machine.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2003 07:05 AM
03-13-2003 07:05 AM
Re: Maximum address space question
Not really sure about what the extended storage segments feature is but...
32 bit processes have a 4GB address space broken into 4 equally sized 1GB quadrants, normally as follows:
Q1 : Text
Q2 : Data, Stack, Private regions
Q3 : Shared Memory, shlibs, mmaps
Q4 : Same as Q3 but last 0.25 GB used for IO.
Quadrants 1 and 2 are private to the process. Quadrants 3 and 4 are shared between ALL 32bit user processes.
There are two techniques currently emloyed to increase the shared memory space available to a process:
shmem_magic - use Q2 as an extra shared memory quadrant, moving the data area to share with text in quadrant 1.
memory windows - here the database has to be broken down into <= 1GB chunks, but you can start many of these overcoming the overall limit of 1.75GB shared memory.
Is this what you were asking?
Regards,
James.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2003 07:07 AM
03-13-2003 07:07 AM
Re: Maximum address space question
Unless you use "Memory Windows" (see below), a 32-bit kernel severely restricts the amount of memory a program can address or use. See this white paper for more information:
http://docs.hp.com/hpux/onlinedocs/os/memwn1_4.pdf
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2003 07:07 AM
03-13-2003 07:07 AM
Re: Maximum address space question
/usr/share/doc/mem_mgt.txt
/usr/share/doc/mem_wndws.txt
Also there are many pertinent threads already in the forums, try the search facility.
Regards,
John