- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- on increasing data segment size
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
07-15-2002 03:27 AM
07-15-2002 03:27 AM
What is the effect of increasing the data segment size on performance of a heavy loaded server ? What is the optimum value suggested ? Is it advicable to use EXEC_MAGIC and SHMEM_MAGIC ?
Thanks and Regards
Vishal
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2002 03:45 AM
07-15-2002 03:45 AM
Re: on increasing data segment size
The parameter only limits the mount of "data" each process can allocate so my guess is it won't help.
Regards,
Trond
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2002 09:47 PM
07-15-2002 09:47 PM
Re: on increasing data segment size
malloc is failing at times. This means the server is heavily loaded. The ulimit of data segment is 65536 KB. I believe increasing the data segment size should solve the problem. Using EXEC_MAGIC flag while linking will also solve the issue. Am I right ? What I don't know is its impact on the performance of the server (both on the machine and individual server-processes)
Thanks and Regards
Vishal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2002 04:11 AM
07-16-2002 04:11 AM
SolutionStart with maxdsiz. The default is 67 megs which is tpyically way too restrictive. Change this fence value to 940 megs for standard programs, or bump it up to 1750 megs if you plan on creating MAGIC executables.
Then run swapinfo -tam when malloc fails to see if most of the swap space is used (not just reserved). If all is well, then use chatr to change you executable(s) to map quadrants 1 and 2 together, thus allowing up to apx 1750 megs in the data area.
The details are in: /usr/share/doc in the two whitepapers: mem_mgt and proc_mgt.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2002 10:42 PM
07-16-2002 10:42 PM
Re: on increasing data segment size
Regards,
Trond