Tagged Questions
1
vote
1answer
88 views
How to analyze a memory leak in Java 1.3
I have a WebLogic 7 server, running under j2sdk1_3 on a Solaris platform.
Since Java5, I know the jmap command is very usefull for analyzing and troubleshooting a memory leak.
Is there a similar tool ...
0
votes
2answers
109 views
How to fix SIGBUS on Solaris
I am using atomic_inc_64_nv on 64bit Solaris, returned value is casted to unsigned long.
But when I run my app, it crashed and core is claming that the cause of the crash is SIGBUS. I Suspect there ...
2
votes
2answers
227 views
Use all system memory in Solaris
I am doing server testing and intentionally trying to crash a Solaris server by using all memory. Server has a ulimit of 15 GB (several hundred GB of total system/swap memory). Is there a straight ...
0
votes
1answer
198 views
Solaris : TOP command, RES mem not coing down ( java program )
I am running load through my java program and analyzing memory consumption through jconsole and top command.
"uname -a" machine on which i am working is :
SunOS 5.10 Generic_142909-17 sun4v sparc ...
0
votes
2answers
202 views
How to use watchmalloc for backround proceses
I am using Solaris x86 box. My application crashes with following stack trace.
fed155f9 realfree (816d878) + 97 fed151be _malloc_unlocked (7e0, 8047eac, 8047e3c, feffb7d8, 8047bac, 809dd6a) + 18c ...
1
vote
3answers
175 views
is there a substitute malloc and free library on solaris?
I am trying to find memory leaks in a very complicated legacy system that is written in C++/C on the Solaris operating system. the idea is to log every malloc and free and then postproccess the log.
...
0
votes
1answer
1k views
solaris 10 (sparc64) ramdisk (like shmfs or tmpfs)
There is an ramdisk capability in Linux, which is achieved with mounting shmfs of tmpfs, like:
# mount -t shm shmfs -o size=20g /dev/shm
or
# mount –t tmpfs tmpfs /dev/shm
Also, some linuxes ...
1
vote
2answers
306 views
>4GB of memory for 32 bit application running on 64-bit Solaris (Very Large Memory)
Both MS Windows and Oracle Linux allows 32bit applications to use >4GB of Memory. Windows method is AWE: Address Windowing Extensions and Linux's method is Very Large Memory.
How it works: 32-bit ...
3
votes
3answers
1k views
java : How to use heap beyond 4 GB memory in 32 bit JVM
We have a product that runs currently on a 32 bit 1.6 JRE. We're using Berkeley DB which consumes about 2.5 GB RAM of the 4 GB address space. That leaves us about 750 MB of memory for the JVM address ...
2
votes
1answer
116 views
How to lock memory from unprivileged user?
I need to lock pages of my program in memory.
Program run under Solaris 10 OS from unprivileged user.
I've tried to use: mlock(), mlockall() and plock(), but always get the same result:
...
0
votes
1answer
245 views
Why an application would create 31 “GC task thread” in one Solaris box while only 2 in another box
I saw in one application (java) which has irregular memory usage in a Solaris box. When I took a thread dump, I saw there were 31 "GC task thread"...
This is very strange as in other Solaris box, ...
0
votes
2answers
6k views
comand to find physical memory details of a process in Solaris
How to find total physical memory and available physical memory of a process(for e.g. sched process) in Solaris. Is there any command available. Please provide with an example.
Thanks in advance.
1
vote
1answer
662 views
How to use libumem to find heap corruption, without relying on a 'core' file?
I want to know how to use libumem on solaris. If I follow http://www.unix.com/man-page/OpenSolaris/3malloc/umem_debug/ and start the process with all the options, how will I get the output?
Can I get ...
0
votes
1answer
638 views
Solaris 10 i386 vmstat giving more free than swap
How come when running vmstat on Solaris 10 i386 I got more free space than swap space? Isn't free a proportion of swap which is available?
$ vmstat
kthr memory page disk ...
0
votes
2answers
2k views
Oracle DB on solaris utilizing swap memory when free RAM available
We have a weird instance where we noticed our oracle database server swap utilization was 100% and surprised to see that the system had free memory available during that period. To my knowledge, swap ...
1
vote
1answer
164 views
Is libumem is available only in Solaris OS or in other OS too?
Is libumem is available only in Solaris OS or in other OS too
0
votes
2answers
803 views
Does prstat SIZE value in Solaris increase indicate memory leak?
In my program, I create 100 threads, then wait for all of them to join and then repeat this operation again.
In each of the threads, I create some memory and free it. I am fairly sure, all the memory ...
0
votes
1answer
903 views
Why Sun Java on Solaris take more than twice RSS memory?
I've got a problem on my Solaris servers. When I launch a Sun Java process with restricted memory it takes more than twice the ressources.
For example, I have 64 Go of memory on my servers. 1 is on ...
0
votes
4answers
1k views
Java memory allocation performance (SunOS vs Windows)
I have a very simple unit test that just allocates a lot of Strings:
public class AllocationSpeedTest extends TestCase {
public void testAllocation() throws Exception {
for (int i = 0; i ...
0
votes
1answer
363 views
How can I determine a process' unshared memory size on SunOS?
Is there a way to determine the unshared memory size of a process on SunOS? Specifically the size of a child httpd process running under mod_perl if that helps.
0
votes
4answers
610 views
How to fix memory access error
I am working on a migration project, here we are migrating large set of C++ libraries from Mainframe to Solaris. We have complted migration sucessfully, but while running the application, some places ...
1
vote
10answers
3k views
How do you pre allocate memory to a process in solaris?
My problem is:
I have a perl script which uses lot of memory (expected behaviour because of caching). But, I noticed that the more I do caching, slower it gets and the process spends most of the time ...